Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for ResourceNames (0.4 sec)

  1. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"resources":     "Resources is a list of resources this rule applies to.  \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.",
    	"resourceNames": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
    }
    
    func (ResourceRule) SwaggerDoc() map[string]string {
    	return map_ResourceRule
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // +structType=atomic
    type NamedRuleWithOperations struct {
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +listType=atomic
    	// +optional
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,1,rep,name=resourceNames"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 2;
    
      // ResourceNames is a list of resource instance names that the policy matches.
      // Using this field requires Resources to be specified.
      // An empty list implies that every instance of the resource is matched.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    	out.ResourceNames = *(*[]string)(unsafe.Pointer(&in.ResourceNames))
    	if err := admissionregistrationv1.Convert_v1_RuleWithOperations_To_admissionregistration_RuleWithOperations(&in.RuleWithOperations, &out.RuleWithOperations, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"resources":     "Resources is a list of resources this rule applies to.  \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.",
    	"resourceNames": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
    }
    
    func (ResourceRule) SwaggerDoc() map[string]string {
    	return map_ResourceRule
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.deepcopy.go

    func (in *NamedRuleWithOperations) DeepCopyInto(out *NamedRuleWithOperations) {
    	*out = *in
    	if in.ResourceNames != nil {
    		in, out := &in.ResourceNames, &out.ResourceNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	in.RuleWithOperations.DeepCopyInto(&out.RuleWithOperations)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top