Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for APIGroupDiscoveryList (0.51 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2beta1/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&APIGroupDiscoveryList{},
    		&APIGroupDiscovery{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    func (m *APIGroupDiscoveryList) Reset()      { *m = APIGroupDiscoveryList{} }
    func (*APIGroupDiscoveryList) ProtoMessage() {}
    func (*APIGroupDiscoveryList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_48661e6ba3d554f3, []int{1}
    }
    func (m *APIGroupDiscoveryList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper_test.go

    const jsonAccept = "application/json"
    const protobufAccept = "application/vnd.kubernetes.protobuf"
    const aggregatedV2Beta1AcceptSuffix = ";g=apidiscovery.k8s.io;v=v2beta1;as=APIGroupDiscoveryList"
    const aggregatedAcceptSuffix = ";g=apidiscovery.k8s.io;v=v2;as=APIGroupDiscoveryList"
    
    const aggregatedV2Beta1JSONAccept = jsonAccept + aggregatedV2Beta1AcceptSuffix
    const aggregatedV2Beta1ProtoAccept = protobufAccept + aggregatedV2Beta1AcceptSuffix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/negotiation.go

    func IsAggregatedDiscoveryGVK(gvk *schema.GroupVersionKind) bool {
    	if gvk != nil {
    		return gvk.Group == "apidiscovery.k8s.io" && (gvk.Version == "v2beta1" || gvk.Version == "v2") && gvk.Kind == "APIGroupDiscoveryList"
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *APIGroupDiscoveryList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&APIGroupDiscoveryList{},
    		&APIGroupDiscovery{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 16:40:14 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. hack/update-openapi-spec.sh

    # Deprecated, remove before v1.33
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/apis/apidiscovery/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&APIGroupDiscoveryList{},
    		&APIGroupDiscovery{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    // emit the aggregated discovery by passing in the aggregated
    // discovery type in content negotiation headers: eg: (Accept:
    // application/json;v=v2;g=apidiscovery.k8s.io;as=APIGroupDiscoveryList)
    func WrapAggregatedDiscoveryToHandler(handler http.Handler, aggHandler http.Handler) *WrappedHandler {
    	scheme := runtime.NewScheme()
    	utilruntime.Must(apidiscoveryv2.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      repeated APIVersionDiscovery versions = 2;
    }
    
    // APIGroupDiscoveryList is a resource containing a list of APIGroupDiscovery.
    // This is one of the types able to be returned from the /api and /apis endpoint and contains an aggregated
    // list of API resources (built-ins, Custom Resource Definitions, resources from aggregated servers)
    // that a cluster supports.
    message APIGroupDiscoveryList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top