Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for TokenRequestSpec (0.18 sec)

  1. pkg/apis/authentication/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.TokenRequestSpec)(nil), (*authentication.TokenRequestSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_TokenRequestSpec_To_authentication_TokenRequestSpec(a.(*v1.TokenRequestSpec), b.(*authentication.TokenRequestSpec), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. pkg/kubelet/token/token_manager_test.go

    						Spec: authenticationv1.TokenRequestSpec{
    							BoundObjectRef: &authenticationv1.BoundObjectReference{
    								UID:  "fake-uid-3",
    								Name: "fake-name-3",
    							},
    						},
    					},
    					shouldFail: false,
    				},
    				{
    					name:      "fake-name-4",
    					namespace: "fake-namespace-4",
    					tr: authenticationv1.TokenRequest{
    						Spec: authenticationv1.TokenRequestSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. pkg/apis/authentication/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenRequestSpec.
    func (in *TokenRequestSpec) DeepCopy() *TokenRequestSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(TokenRequestSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenRequestSpec.
    func (in *TokenRequestSpec) DeepCopy() *TokenRequestSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(TokenRequestSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/apis/authentication/v1/defaults.go

    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_TokenRequestSpec(obj *authenticationv1.TokenRequestSpec) {
    	if obj.ExpirationSeconds == nil {
    		hour := int64(60 * 60)
    		obj.ExpirationSeconds = &hour
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 18:54:11 UTC 2018
    - 944 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    func (m *TokenRequestSpec) Reset()      { *m = TokenRequestSpec{} }
    func (*TokenRequestSpec) ProtoMessage() {}
    func (*TokenRequestSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{5}
    }
    func (m *TokenRequestSpec) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *TokenRequestSpec) 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

      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
      optional TokenRequestStatus status = 3;
    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    message TokenRequestSpec {
      // Audiences are the intendend audiences of the token. A recipient of a
    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. staging/src/k8s.io/api/authentication/v1/generated.proto

      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
      optional TokenRequestStatus status = 3;
    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    message TokenRequestSpec {
      // Audiences are the intendend audiences of the token. A recipient of a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/apis/authentication/types.go

    	// ObjectMeta fulfills the metav1.ObjectMetaAccessor interface so that the stock
    	// REST handler paths work
    	metav1.ObjectMeta
    
    	Spec   TokenRequestSpec
    	Status TokenRequestStatus
    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    type TokenRequestSpec struct {
    	// Audiences are the intended audiences of the token. A recipient of a
    	// token must identify themself with an identifier in the list of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1/types.go

    	Spec TokenRequestSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the token can be authenticated.
    	// +optional
    	Status TokenRequestStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    type TokenRequestSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top