Class PolicyRule
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.rbac.PolicyRule
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<PolicyRuleBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class PolicyRule extends Object implements io.fabric8.kubernetes.api.builder.Editable<PolicyRuleBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PolicyRuleBuilderedit()Map<String,Object>getAdditionalProperties()List<String>getApiGroups()APIGroups is the name of the APIGroup that contains the resources.List<String>getNonResourceURLs()NonResourceURLs is a set of partial urls that a user should have access to.List<String>getResourceNames()ResourceNames is an optional white list of names that the rule applies to.List<String>getResources()Resources is a list of resources this rule applies toList<String>getVerbs()Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rulevoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetApiGroups(List<String> apiGroups)APIGroups is the name of the APIGroup that contains the resources.voidsetNonResourceURLs(List<String> nonResourceURLs)NonResourceURLs is a set of partial urls that a user should have access to.voidsetResourceNames(List<String> resourceNames)ResourceNames is an optional white list of names that the rule applies to.voidsetResources(List<String> resources)Resources is a list of resources this rule applies tovoidsetVerbs(List<String> verbs)Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rulePolicyRuleBuildertoBuilder()
-
-
-
Method Detail
-
getApiGroups
public List<String> getApiGroups()
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. "" represents the core API group and "*" represents all API groups.
-
setApiGroups
public void setApiGroups(List<String> apiGroups)
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. "" represents the core API group and "*" represents all API groups.
-
getNonResourceURLs
public List<String> getNonResourceURLs()
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both.
-
setNonResourceURLs
public void setNonResourceURLs(List<String> nonResourceURLs)
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both.
-
getResourceNames
public List<String> getResourceNames()
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
-
setResourceNames
public void setResourceNames(List<String> resourceNames)
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
-
getResources
public List<String> getResources()
Resources is a list of resources this rule applies to. '*' represents all resources.
-
setResources
public void setResources(List<String> resources)
Resources is a list of resources this rule applies to. '*' represents all resources.
-
getVerbs
public List<String> getVerbs()
Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
-
setVerbs
public void setVerbs(List<String> verbs)
Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
-
edit
public PolicyRuleBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<PolicyRuleBuilder>
-
toBuilder
public PolicyRuleBuilder toBuilder()
-
-