Class V1beta3ResourcePolicyRule

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

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-04-23T13:45:09.091597Z[Etc/UTC]") public class V1beta3ResourcePolicyRule 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

    • V1beta3ResourcePolicyRule

      public V1beta3ResourcePolicyRule()
  • Method Details

    • apiGroups

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

      public V1beta3ResourcePolicyRule addApiGroupsItem(String apiGroupsItem)
    • getApiGroups

      @Nonnull 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 V1beta3ResourcePolicyRule 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 V1beta3ResourcePolicyRule namespaces(List<String> namespaces)
    • addNamespacesItem

      public V1beta3ResourcePolicyRule 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 V1beta3ResourcePolicyRule resources(List<String> resources)
    • addResourcesItem

      public V1beta3ResourcePolicyRule addResourcesItem(String resourcesItem)
    • getResources

      @Nonnull 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 V1beta3ResourcePolicyRule verbs(List<String> verbs)
    • addVerbsItem

      public V1beta3ResourcePolicyRule addVerbsItem(String verbsItem)
    • getVerbs

      @Nonnull 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
    • validateJsonObject

      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOException
      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 V1beta3ResourcePolicyRule
    • fromJson

      public static V1beta3ResourcePolicyRule fromJson(String jsonString) throws IOException
      Create an instance of V1beta3ResourcePolicyRule given an JSON string
      Parameters:
      jsonString - JSON string
      Returns:
      An instance of V1beta3ResourcePolicyRule
      Throws:
      IOException - if the JSON string is invalid with respect to V1beta3ResourcePolicyRule
    • toJson

      public String toJson()
      Convert an instance of V1beta3ResourcePolicyRule to an JSON string
      Returns:
      JSON string