Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for apiGroup (0.24 sec)

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

    // 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"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiGroups": {
                "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.  \"*\" means all.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    func (e *Store) qualifiedResourceFromContext(ctx context.Context) schema.GroupResource {
    	if info, ok := genericapirequest.RequestInfoFrom(ctx); ok {
    		return schema.GroupResource{Group: info.APIGroup, Resource: info.Resource}
    	}
    	// some implementations access storage directly and thus the context has no RequestInfo
    	return e.DefaultQualifiedResource
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/validation/validation_test.go

    				Kind:  flowcontrol.SubjectKindGroup,
    				Group: &flowcontrol.GroupSubject{Name: "system:masters"},
    			}},
    			ResourceRules: []flowcontrol.ResourcePolicyRule{{
    				Verbs:        []string{flowcontrol.VerbAll},
    				APIGroups:    []string{flowcontrol.APIGroupAll},
    				Resources:    []string{flowcontrol.ResourceAll},
    				ClusterScope: true,
    				Namespaces:   []string{flowcontrol.NamespaceEvery},
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    type Rule struct {
    	// APIGroups is the API groups the resources belong to. '*' is all groups.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	APIGroups []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    message Rule {
      // APIGroups is the API groups the resources belong to. '*' is all groups.
      // If '*' is present, the length of the slice must be one.
      // Required.
      // +listType=atomic
      repeated string apiGroups = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    )
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    type Rule struct {
    	// APIGroups is the API groups the resources belong to. '*' is all groups.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	// +listType=atomic
    	APIGroups []string `json:"apiGroups,omitempty" protobuf:"bytes,1,rep,name=apiGroups"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	if len(rule.APIGroups) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("apiGroups"), ""))
    	}
    	if len(rule.APIGroups) > 1 && hasWildcard(rule.APIGroups) {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("apiGroups"), rule.APIGroups, "if '*' is present, must not specify other API groups"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top