Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for TokenReviewStatus (0.3 sec)

  1. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    func (in *TokenReviewStatus) DeepCopyInto(out *TokenReviewStatus) {
    	*out = *in
    	in.User.DeepCopyInto(&out.User)
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenReviewStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

      // audience of the Kubernetes apiserver.
      // +optional
      // +listType=atomic
      repeated string audiences = 2;
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    message TokenReviewStatus {
      // Authenticated indicates that the token was associated with a known user.
      // +optional
      optional bool authenticated = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    }
    
    func (TokenReviewSpec) SwaggerDoc() map[string]string {
    	return map_TokenReviewSpec
    }
    
    var map_TokenReviewStatus = map[string]string{
    	"":              "TokenReviewStatus is the result of the token authentication request.",
    	"authenticated": "Authenticated indicates that the token was associated with a known user.",
    	"user":          "User is the UserInfo associated with the provided token.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      // this list. If no audiences are provided, the audience will default to the
      // audience of the Kubernetes apiserver.
      // +optional
      repeated string audiences = 2;
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    message TokenReviewStatus {
      // Authenticated indicates that the token was associated with a known user.
      // +optional
      optional bool authenticated = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1/generated.proto

      // audience of the Kubernetes apiserver.
      // +optional
      // +listType=atomic
      repeated string audiences = 2;
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    message TokenReviewStatus {
      // Authenticated indicates that the token was associated with a known user.
      // +optional
      optional bool authenticated = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    func (m *TokenReviewStatus) Reset()      { *m = TokenReviewStatus{} }
    func (*TokenReviewStatus) ProtoMessage() {}
    func (*TokenReviewStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{9}
    }
    func (m *TokenReviewStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *TokenReviewStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authentication/v1/generated.proto

      // audience of the Kubernetes apiserver.
      // +optional
      repeated string audiences = 2;
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    message TokenReviewStatus {
      // Authenticated indicates that the token was associated with a known user.
      // +optional
      optional bool authenticated = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pkg/apis/authentication/types.go

    	// this list. If no audiences are provided, the audience will default to the
    	// audience of the Kubernetes apiserver.
    	Audiences []string
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    // This type mirrors the authentication.Token interface
    type TokenReviewStatus struct {
    	// Authenticated indicates that the token was associated with a known user.
    	Authenticated bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1/types.go

    	// audience of the Kubernetes apiserver.
    	// +optional
    	// +listType=atomic
    	Audiences []string `json:"audiences,omitempty" protobuf:"bytes,2,rep,name=audiences"`
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    type TokenReviewStatus struct {
    	// Authenticated indicates that the token was associated with a known user.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    	return authenticationv1beta1.TokenReviewSpec{
    		Token:     in.Token,
    		Audiences: in.Audiences,
    	}
    }
    
    func v1beta1StatusToV1Status(in *authenticationv1beta1.TokenReviewStatus) authenticationv1.TokenReviewStatus {
    	return authenticationv1.TokenReviewStatus{
    		Authenticated: in.Authenticated,
    		User:          v1beta1UserToV1User(in.User),
    		Audiences:     in.Audiences,
    		Error:         in.Error,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top