Class V1RuleWithOperations
java.lang.Object
io.kubernetes.client.openapi.models.V1RuleWithOperations
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2024-02-02T17:56:12.287571Z[Etc/UTC]")
public class V1RuleWithOperations
extends Object
RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddApiGroupsItem
(String apiGroupsItem) addApiVersionsItem
(String apiVersionsItem) addOperationsItem
(String operationsItem) addResourcesItem
(String resourcesItem) apiVersions
(List<String> apiVersions) boolean
static V1RuleWithOperations
Create an instance of V1RuleWithOperations given an JSON stringAPIGroups is the API groups the resources belong to.APIVersions is the API versions the resources belong to.Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added.Resources is a list of resources this rule applies to.getScope()
scope specifies the scope of this rule.int
hashCode()
operations
(List<String> operations) void
setApiGroups
(List<String> apiGroups) void
setApiVersions
(List<String> apiVersions) void
setOperations
(List<String> operations) void
setResources
(List<String> resources) void
toJson()
Convert an instance of V1RuleWithOperations 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_API_VERSIONS
- See Also:
-
SERIALIZED_NAME_OPERATIONS
- See Also:
-
SERIALIZED_NAME_RESOURCES
- See Also:
-
SERIALIZED_NAME_SCOPE
- See Also:
-
openapiFields
-
openapiRequiredFields
-
-
Constructor Details
-
V1RuleWithOperations
public V1RuleWithOperations()
-
-
Method Details
-
apiGroups
-
addApiGroupsItem
-
getApiGroups
APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.- Returns:
- apiGroups
-
setApiGroups
-
apiVersions
-
addApiVersionsItem
-
getApiVersions
APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.- Returns:
- apiVersions
-
setApiVersions
-
operations
-
addOperationsItem
-
getOperations
Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.- Returns:
- operations
-
setOperations
-
resources
-
addResourcesItem
-
getResources
Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/_*' means all subresources of pods. '*_/scale' means all scale subresources. '*_/_*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required.- Returns:
- resources
-
setResources
-
scope
-
getScope
scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".- Returns:
- scope
-
setScope
-
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 V1RuleWithOperations
-
fromJson
Create an instance of V1RuleWithOperations given an JSON string- Parameters:
jsonString
- JSON string- Returns:
- An instance of V1RuleWithOperations
- Throws:
IOException
- if the JSON string is invalid with respect to V1RuleWithOperations
-
toJson
Convert an instance of V1RuleWithOperations to an JSON string- Returns:
- JSON string
-