Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for APIGroupList (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (APIGroup) SwaggerDoc() map[string]string {
    	return map_APIGroup
    }
    
    var map_APIGroupList = map[string]string{
    	"":       "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
    	"groups": "groups is a list of APIGroup.",
    }
    
    func (APIGroupList) SwaggerDoc() map[string]string {
    	return map_APIGroupList
    }
    
    var map_APIResource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    // APIGroupList is a list of APIGroup, to allow clients to discover the API at
    // /apis.
    message APIGroupList {
      // groups is a list of APIGroup.
      repeated APIGroup groups = 1;
    }
    
    // APIResource specifies the name of a resource and whether it is namespaced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    // APIGroupList is a list of APIGroup, to allow clients to discover the API at
    // /apis.
    message APIGroupList {
      // groups is a list of APIGroup.
      // +listType=atomic
      repeated APIGroup groups = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // APIGroupList is a list of APIGroup, to allow clients to discover the API at
    // /apis.
    type APIGroupList struct {
    	TypeMeta `json:",inline"`
    	// groups is a list of APIGroup.
    	// +listType=atomic
    	Groups []APIGroup `json:"groups" protobuf:"bytes,1,rep,name=groups"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top