Class V1beta1NamedRuleWithOperations

java.lang.Object
io.kubernetes.client.openapi.models.V1beta1NamedRuleWithOperations

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-02-02T21:37:40.170033Z[Etc/UTC]") public class V1beta1NamedRuleWithOperations extends Object
NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
  • Field Details

  • Constructor Details

    • V1beta1NamedRuleWithOperations

      public V1beta1NamedRuleWithOperations()
  • Method Details

    • apiGroups

      public V1beta1NamedRuleWithOperations apiGroups(List<String> apiGroups)
    • addApiGroupsItem

      public V1beta1NamedRuleWithOperations addApiGroupsItem(String apiGroupsItem)
    • getApiGroups

      @Nullable public List<String> 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

      public void setApiGroups(List<String> apiGroups)
    • apiVersions

      public V1beta1NamedRuleWithOperations apiVersions(List<String> apiVersions)
    • addApiVersionsItem

      public V1beta1NamedRuleWithOperations addApiVersionsItem(String apiVersionsItem)
    • getApiVersions

      @Nullable public List<String> 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

      public void setApiVersions(List<String> apiVersions)
    • operations

      public V1beta1NamedRuleWithOperations operations(List<String> operations)
    • addOperationsItem

      public V1beta1NamedRuleWithOperations addOperationsItem(String operationsItem)
    • getOperations

      @Nullable public List<String> 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

      public void setOperations(List<String> operations)
    • resourceNames

      public V1beta1NamedRuleWithOperations resourceNames(List<String> resourceNames)
    • addResourceNamesItem

      public V1beta1NamedRuleWithOperations addResourceNamesItem(String resourceNamesItem)
    • getResourceNames

      @Nullable 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.
      Returns:
      resourceNames
    • setResourceNames

      public void setResourceNames(List<String> resourceNames)
    • resources

      public V1beta1NamedRuleWithOperations resources(List<String> resources)
    • addResourcesItem

      public V1beta1NamedRuleWithOperations addResourcesItem(String resourcesItem)
    • getResources

      @Nullable public List<String> 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

      public void setResources(List<String> resources)
    • scope

      public V1beta1NamedRuleWithOperations scope(String scope)
    • getScope

      @Nullable public String 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

      public void setScope(String scope)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object