Class ResourcePolicyRule
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.ResourcePolicyRule
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ResourcePolicyRuleBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ResourcePolicyRule extends Object implements io.fabric8.kubernetes.api.builder.Editable<ResourcePolicyRuleBuilder>, io.fabric8.kubernetes.api.model.KubernetesResourceResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourcePolicyRuleBuilderedit()Map<String,Object>getAdditionalProperties()List<String>getApiGroups()`apiGroups` is a list of matching API groups and may not be emptyBooleangetClusterScope()`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces).List<String>getNamespaces()`namespaces` is a list of target namespaces that restricts matches.List<String>getResources()`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.List<String>getVerbs()`verbs` is a list of matching verbs and may not be emptyvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetApiGroups(List<String> apiGroups)`apiGroups` is a list of matching API groups and may not be emptyvoidsetClusterScope(Boolean clusterScope)`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces).voidsetNamespaces(List<String> namespaces)`namespaces` is a list of target namespaces that restricts matches.voidsetResources(List<String> resources)`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.voidsetVerbs(List<String> verbs)`verbs` is a list of matching verbs and may not be emptyResourcePolicyRuleBuildertoBuilder()
-
-
-
Method Detail
-
getApiGroups
public List<String> getApiGroups()
`apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
-
setApiGroups
public void setApiGroups(List<String> apiGroups)
`apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
-
getClusterScope
public Boolean getClusterScope()
`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.
-
setClusterScope
public void setClusterScope(Boolean clusterScope)
`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.
-
getNamespaces
public List<String> getNamespaces()
`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.
-
setNamespaces
public void setNamespaces(List<String> namespaces)
`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.
-
getResources
public List<String> getResources()
`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required.
-
setResources
public void setResources(List<String> resources)
`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required.
-
getVerbs
public List<String> getVerbs()
`verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.
-
setVerbs
public void setVerbs(List<String> verbs)
`verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.
-
edit
public ResourcePolicyRuleBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ResourcePolicyRuleBuilder>
-
toBuilder
public ResourcePolicyRuleBuilder toBuilder()
-
-