Class V1beta1ResourcePolicyRule

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

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2022-12-05T08:14:34.919Z[Etc/UTC]") public class V1beta1ResourcePolicyRule 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.
  • Field Details

  • Constructor Details

    • V1beta1ResourcePolicyRule

      public V1beta1ResourcePolicyRule()
  • Method Details

    • apiGroups

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

      public V1beta1ResourcePolicyRule addApiGroupsItem(String apiGroupsItem)
    • 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.
      Returns:
      apiGroups
    • setApiGroups

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

      public V1beta1ResourcePolicyRule clusterScope(Boolean clusterScope)
    • getClusterScope

      @Nullable 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.
      Returns:
      clusterScope
    • setClusterScope

      public void setClusterScope(Boolean clusterScope)
    • namespaces

      public V1beta1ResourcePolicyRule namespaces(List<String> namespaces)
    • addNamespacesItem

      public V1beta1ResourcePolicyRule addNamespacesItem(String namespacesItem)
    • getNamespaces

      @Nullable 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.
      Returns:
      namespaces
    • setNamespaces

      public void setNamespaces(List<String> namespaces)
    • resources

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

      public V1beta1ResourcePolicyRule addResourcesItem(String resourcesItem)
    • 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.
      Returns:
      resources
    • setResources

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

      public V1beta1ResourcePolicyRule verbs(List<String> verbs)
    • addVerbsItem

      public V1beta1ResourcePolicyRule addVerbsItem(String verbsItem)
    • 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.
      Returns:
      verbs
    • setVerbs

      public void setVerbs(List<String> verbs)
    • 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