Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SecurityScheme (0.25 sec)

  1. fastapi/openapi/models.py

    
    class OpenIdConnect(SecurityBase):
        type_: SecuritySchemeType = Field(
            default=SecuritySchemeType.openIdConnect, alias="type"
        )
        openIdConnectUrl: str
    
    
    SecurityScheme = Union[APIKey, HTTPBase, OAuth2, OpenIdConnect, HTTPBearer]
    
    
    class Components(BaseModelWithConfig):
        schemas: Optional[Dict[str, Union[Schema, Reference]]] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/authenticator/config.go

    		securityDefinitionsV2["BearerToken"] = &spec.SecurityScheme{
    			SecuritySchemeProps: spec.SecuritySchemeProps{
    				Type:        "apiKey",
    				Name:        "authorization",
    				In:          "header",
    				Description: "Bearer Token authentication",
    			},
    		}
    		securitySchemesV3["BearerToken"] = &spec3.SecurityScheme{
    			SecuritySchemeProps: spec3.SecuritySchemeProps{
    				Type:        "apiKey",
    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. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    		authenticators = append(authenticators, bearertoken.New(cachingTokenAuth), websocket.NewProtocolAuthenticator(cachingTokenAuth))
    
    		securityDefinitions["BearerToken"] = &spec.SecurityScheme{
    			SecuritySchemeProps: spec.SecuritySchemeProps{
    				Type:        "apiKey",
    				Name:        "authorization",
    				In:          "header",
    				Description: "Bearer Token authentication",
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    	AddressFamily     int32
    	MaxSockAddr       int32
    	MinSockAddr       int32
    	SocketType        int32
    	Protocol          int32
    	ProtocolMaxOffset int32
    	NetworkByteOrder  int32
    	SecurityScheme    int32
    	MessageSize       uint32
    	ProviderReserved  uint32
    	ProtocolName      [WSAPROTOCOL_LEN + 1]uint16
    }
    
    type WSAProtocolChain struct {
    	ChainLen     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	AddressFamily     int32
    	MaxSockAddr       int32
    	MinSockAddr       int32
    	SocketType        int32
    	Protocol          int32
    	ProtocolMaxOffset int32
    	NetworkByteOrder  int32
    	SecurityScheme    int32
    	MessageSize       uint32
    	ProviderReserved  uint32
    	ProtocolName      [WSAPROTOCOL_LEN + 1]uint16
    }
    
    type WSAProtocolChain struct {
    	ChainLen     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"WSAProtocolInfo.ProtocolName", Field, 2},
    		{"WSAProtocolInfo.ProviderFlags", Field, 2},
    		{"WSAProtocolInfo.ProviderId", Field, 2},
    		{"WSAProtocolInfo.ProviderReserved", Field, 2},
    		{"WSAProtocolInfo.SecurityScheme", Field, 2},
    		{"WSAProtocolInfo.ServiceFlags1", Field, 2},
    		{"WSAProtocolInfo.ServiceFlags2", Field, 2},
    		{"WSAProtocolInfo.ServiceFlags3", Field, 2},
    		{"WSAProtocolInfo.ServiceFlags4", Field, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderId GUID
    pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderReserved uint32
    pkg syscall (windows-386), type WSAProtocolInfo struct, SecurityScheme int32
    pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags1 uint32
    pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags2 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top