Class V1ResourcePolicyRule
java.lang.Object
io.kubernetes.client.openapi.models.V1ResourcePolicyRule
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2024-04-23T13:45:09.091597Z[Etc/UTC]")
public class V1ResourcePolicyRule
extends Object
ResourcePolicyRule 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) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddApiGroupsItem
(String apiGroupsItem) addNamespacesItem
(String namespacesItem) addResourcesItem
(String resourcesItem) addVerbsItem
(String verbsItem) clusterScope
(Boolean clusterScope) boolean
static V1ResourcePolicyRule
Create an instance of V1ResourcePolicyRule given an JSON string`apiGroups` is a list of matching API groups and may not be empty.`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).`namespaces` is a list of target namespaces that restricts matches.`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.getVerbs()
`verbs` is a list of matching verbs and may not be empty.int
hashCode()
namespaces
(List<String> namespaces) void
setApiGroups
(List<String> apiGroups) void
setClusterScope
(Boolean clusterScope) void
setNamespaces
(List<String> namespaces) void
setResources
(List<String> resources) void
toJson()
Convert an instance of V1ResourcePolicyRule to an JSON stringtoString()
static void
validateJsonObject
(com.google.gson.JsonObject jsonObj) Validates the JSON Object and throws an exception if issues found
-
Field Details
-
SERIALIZED_NAME_API_GROUPS
- See Also:
-
SERIALIZED_NAME_CLUSTER_SCOPE
- See Also:
-
SERIALIZED_NAME_NAMESPACES
- See Also:
-
SERIALIZED_NAME_RESOURCES
- See Also:
-
SERIALIZED_NAME_VERBS
- See Also:
-
openapiFields
-
openapiRequiredFields
-
-
Constructor Details
-
V1ResourcePolicyRule
public V1ResourcePolicyRule()
-
-
Method Details
-
apiGroups
-
addApiGroupsItem
-
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.- Returns:
- apiGroups
-
setApiGroups
-
clusterScope
-
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.- Returns:
- clusterScope
-
setClusterScope
-
namespaces
-
addNamespacesItem
-
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.- Returns:
- namespaces
-
setNamespaces
-
resources
-
addResourcesItem
-
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.- Returns:
- resources
-
setResources
-
verbs
-
addVerbsItem
-
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.- Returns:
- verbs
-
setVerbs
-
equals
-
hashCode
public int hashCode() -
toString
-
validateJsonObject
Validates the JSON Object and throws an exception if issues found- Parameters:
jsonObj
- JSON Object- Throws:
IOException
- if the JSON Object is invalid with respect to V1ResourcePolicyRule
-
fromJson
Create an instance of V1ResourcePolicyRule given an JSON string- Parameters:
jsonString
- JSON string- Returns:
- An instance of V1ResourcePolicyRule
- Throws:
IOException
- if the JSON string is invalid with respect to V1ResourcePolicyRule
-
toJson
Convert an instance of V1ResourcePolicyRule to an JSON string- Returns:
- JSON string
-