Class 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 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.
      • getAdditionalProperties

        public Map<String,​Object> getAdditionalProperties()
      • setAdditionalProperty

        public void setAdditionalProperty​(String name,
                                          Object value)
      • setAdditionalProperties

        public void setAdditionalProperties​(Map<String,​Object> additionalProperties)