Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for acceptedTypes (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    				Version: "v1",
    				Kind:    "CoolFoo",
    			},
    			Subresources: []apidiscoveryv2.APISubresourceDiscovery{
    				{
    					Subresource:   "status",
    					Verbs:         []string{"get", "patch", "update"},
    					AcceptedTypes: nil, // is this correct?
    					ResponseKind: &metav1.GroupVersionKind{
    						Group:   "stable.example.com",
    						Version: "v1",
    						Kind:    "CoolFoo",
    					},
    				},
    			},
    		},
    	},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // Some subresources do not return normal resources, these will have null or empty return types.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
      // Subresources may accept the standard content types or define
      // custom negotiation schemes. The list may not be exhaustive for
      // all operations.
      // +listType=map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // Some subresources do not return normal resources, these will have null return types.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
      // Subresources may accept the standard content types or define
      // custom negotiation schemes. The list may not be exhaustive for
      // all operations.
      // +listType=map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/apis/apidiscovery/types.go

    	ResponseKind *v1.GroupVersionKind
    	// acceptedTypes describes the kinds that this endpoint accepts.
    	// Subresources may accept the standard content types or define
    	// custom negotiation schemes. The list may not be exhaustive for
    	// all operations.
    	// +listType=map
    	// +listMapKey=group
    	// +listMapKey=version
    	// +listMapKey=kind
    	AcceptedTypes []v1.GroupVersionKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // Some subresources do not return normal resources, these will have null or empty return types.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
      // Subresources may accept the standard content types or define
      // custom negotiation schemes. The list may not be exhaustive for
      // all operations.
      // +listType=map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind"),
    						},
    					},
    					"acceptedTypes": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-map-keys": []interface{}{
    									"group",
    									"version",
    									"kind",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top