Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for BoundObjectReference (0.23 sec)

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

    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1.BoundObjectReference)(nil), (*authentication.BoundObjectReference)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_BoundObjectReference_To_authentication_BoundObjectReference(a.(*v1.BoundObjectReference), b.(*authentication.BoundObjectReference), 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/apis/authentication/zz_generated.deepcopy.go

    func (in *BoundObjectReference) DeepCopyInto(out *BoundObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BoundObjectReference.
    func (in *BoundObjectReference) DeepCopy() *BoundObjectReference {
    	if in == nil {
    		return nil
    	}
    	out := new(BoundObjectReference)
    	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)
  3. pkg/kubelet/token/token_manager_test.go

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

    func (in *BoundObjectReference) DeepCopyInto(out *BoundObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BoundObjectReference.
    func (in *BoundObjectReference) DeepCopy() *BoundObjectReference {
    	if in == nil {
    		return nil
    	}
    	out := new(BoundObjectReference)
    	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. staging/src/k8s.io/api/authentication/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1";
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    message BoundObjectReference {
      // Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
      // +optional
      optional string kind = 1;
    
      // API version of the referent.
      // +optional
    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 *BoundObjectReference) Reset()      { *m = BoundObjectReference{} }
    func (*BoundObjectReference) ProtoMessage() {}
    func (*BoundObjectReference) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{0}
    }
    func (m *BoundObjectReference) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *BoundObjectReference) 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

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1";
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    message BoundObjectReference {
      // Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
      // +optional
      optional string kind = 1;
    
      // API version of the referent.
      // +optional
    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

    	// small if you want prompt revocation.
    	BoundObjectRef *BoundObjectReference
    }
    
    // TokenRequestStatus is the result of a token request.
    type TokenRequestStatus struct {
    	// Token is the opaque bearer token.
    	Token string `datapolicy:"token"`
    	// ExpirationTimestamp is the time of expiration of the returned token.
    	ExpirationTimestamp metav1.Time
    }
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    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

    	ExpirationTimestamp metav1.Time `json:"expirationTimestamp" protobuf:"bytes,2,opt,name=expirationTimestamp"`
    }
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    type BoundObjectReference struct {
    	// Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
    	// +optional
    	Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"`
    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/api/authentication/v1/types_swagger_doc_generated.go

    var map_BoundObjectReference = map[string]string{
    	"":           "BoundObjectReference is a reference to an object that a token is bound to.",
    	"kind":       "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
    	"apiVersion": "API version of the referent.",
    	"name":       "Name of the referent.",
    	"uid":        "UID of the referent.",
    }
    
    func (BoundObjectReference) SwaggerDoc() map[string]string {
    	return map_BoundObjectReference
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top