Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 261 for map_key (0.23 sec)

  1. api/openapi-spec/v3/api_openapi.json

          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/api/": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/authenticator/config.go

    			SecuritySchemeProps: spec.SecuritySchemeProps{
    				Type:        "apiKey",
    				Name:        "authorization",
    				In:          "header",
    				Description: "Bearer Token authentication",
    			},
    		}
    		securitySchemesV3["BearerToken"] = &spec3.SecurityScheme{
    			SecuritySchemeProps: spec3.SecuritySchemeProps{
    				Type:        "apiKey",
    				Name:        "authorization",
    				In:          "header",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/security/index.md

    Таким образом, вы можете воспользоваться преимуществами Всех этих стандартных инструментов, включая интерактивные системы документирования.
    
    OpenAPI может использовать следующие схемы авторизации:
    
    * `apiKey`: уникальный идентификатор для приложения, который может быть получен из:
        * Параметров запроса.
        * Заголовка.
        * Cookies.
    * `http`: стандартные системы аутентификации по протоколу HTTP, включая:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 02 15:14:19 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    // checks the matched keys against the data, and adds unknown
    // field errors for any matched keys.
    // `mapValue` is the value of sv containing all of the keys that exist at this level
    // (ie. sv.MapKeys) in the source data.
    // `matchedKeys` are all the keys found for that level in the destination object.
    // This should only be called from `structFromUnstructured`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

            }
          },
          "oauth_client": [
            {
              "client_id": "foo.example.com",
              "client_type": 3
            }
          ],
          "api_key": [
            {
              "current_key": "012345678901234567890123456789012345678"
            }
          ],
          "services": {
            "analytics_service": {
              "status": 1
            },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps_openapi.json

          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/apps/": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io_openapi.json

          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/authorization.k8s.io/": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy_openapi.json

          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/policy/": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    			if v1.Len() == 0 || v2.Len() == 0 {
    				return true
    			}
    		}
    		if v1.Len() != v2.Len() {
    			return false
    		}
    		if v1.Pointer() == v2.Pointer() {
    			return true
    		}
    		for _, k := range v1.MapKeys() {
    			if !e.deepValueEqual(v1.MapIndex(k), v2.MapIndex(k), visited, equateNilAndEmpty, depth+1) {
    				return false
    			}
    		}
    		return true
    	case reflect.Func:
    		if v1.IsNil() && v2.IsNil() {
    			return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__scheduling.k8s.io_openapi.json

          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/scheduling.k8s.io/": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top