Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for expirationSeconds (0.28 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/certificates.k8s.io.v1.CertificateSigningRequest.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "request": "AQ==",
        "signerName": "signerNameValue",
        "expirationSeconds": 8,
        "usages": [
          "usagesValue"
        ],
        "username": "usernameValue",
        "uid": "uidValue",
        "groups": [
          "groupsValue"
        ],
        "extra": {
          "extraKey": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      expirationSeconds: 8
      extra:
        extraKey:
        - extraValue
      groups:
      - groupsValue
      request: AQ==
      signerName: signerNameValue
      uid: uidValue
      usages:
      - usagesValue
      username: usernameValue
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1.CertificateSigningRequest.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "request": "AQ==",
        "signerName": "signerNameValue",
        "expirationSeconds": 8,
        "usages": [
          "usagesValue"
        ],
        "username": "usernameValue",
        "uid": "uidValue",
        "groups": [
          "groupsValue"
        ],
        "extra": {
          "extraKey": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "request": "AQ==",
        "signerName": "signerNameValue",
        "expirationSeconds": 8,
        "usages": [
          "usagesValue"
        ],
        "username": "usernameValue",
        "uid": "uidValue",
        "groups": [
          "groupsValue"
        ],
        "extra": {
          "extraKey": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pkg/apis/authentication/types.go

    	// trust between the target audiences.
    	Audiences []string
    
    	// ExpirationSeconds is the requested duration of validity of the request. The
    	// token issuer may return a token with a different validity duration so a
    	// client needs to check the 'expiration' field in a response.
    	ExpirationSeconds int64
    
    	// BoundObjectRef is a reference to an object that the token will be 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. pkg/registry/certificates/certificates/storage/metrics.go

    			if !ok {
    				return
    			}
    
    			// if the old CSR already has a certificate, do not double count it
    			if len(oldCSR.Status.Certificate) > 0 {
    				return
    			}
    
    			if oldCSR.Spec.ExpirationSeconds == nil {
    				return // ignore CSRs that are not using the CSR duration feature
    			}
    
    			newCSR, ok := obj.(*certificates.CertificateSigningRequest)
    			if !ok {
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"expirationSeconds": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExpirationSeconds != nil {
    		in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.BoundObjectRef != nil {
    		in, out := &in.BoundObjectRef, &out.BoundObjectRef
    		*out = new(BoundObjectReference)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pkg/apis/certificates/zz_generated.deepcopy.go

    	*out = *in
    	if in.Request != nil {
    		in, out := &in.Request, &out.Request
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExpirationSeconds != nil {
    		in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	if in.Usages != nil {
    		in, out := &in.Usages, &out.Usages
    		*out = make([]KeyUsage, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1/generated.proto

      // +listType=atomic
      repeated string audiences = 1;
    
      // ExpirationSeconds is the requested duration of validity of the request. The
      // token issuer may return a token with a different validity duration so a
      // client needs to check the 'expiration' field in a response.
      // +optional
      optional int64 expirationSeconds = 4;
    
      // BoundObjectRef is a reference to an object that the token will be bound to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top