Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for BoundObjectReference (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/token/token_manager.go

    func keyFunc(name, namespace string, tr *authenticationv1.TokenRequest) string {
    	var exp int64
    	if tr.Spec.ExpirationSeconds != nil {
    		exp = *tr.Spec.ExpirationSeconds
    	}
    
    	var ref authenticationv1.BoundObjectReference
    	if tr.Spec.BoundObjectRef != nil {
    		ref = *tr.Spec.BoundObjectRef
    	}
    
    	return fmt.Sprintf("%q/%q/%#v/%#v/%#v", name, namespace, tr.Spec.Audiences, exp, ref)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 6.1K bytes
    - Viewed (0)
Back to top