struct
Kubernetes::ResourcePolicyRule
- Kubernetes::ResourcePolicyRule
- Struct
- Value
- Object
Overview
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.
Included Modules
- JSON::Serializable
- Kubernetes::Serializable
- YAML::Serializable
Defined in:
generated/models/io_k8s_api_flowcontrol_v1.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : ::JSON::PullParser)
- .new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
- .new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)
Macro Summary
-
field(name, type = nil, **options, &block)
Helper macro for defining fields with automatic camelCase conversion
Instance Method Summary
-
#api_groups : Array(String) | Nil
apiGroupsis a list of matching API groups and may not be empty. -
#api_groups=(api_groups : Array(String) | Nil)
apiGroupsis a list of matching API groups and may not be empty. -
#cluster_scope : Bool | Nil
clusterScopeindicates 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). -
#cluster_scope=(cluster_scope : Bool | Nil)
clusterScopeindicates 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 : Array(String) | Nil
#namespacesis a list of target namespaces that restricts matches. -
#namespaces=(namespaces : Array(String) | Nil)
#namespacesis a list of target namespaces that restricts matches. -
#resources : Array(String) | Nil
#resourcesis a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. -
#resources=(resources : Array(String) | Nil)
#resourcesis a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. -
#verbs : Array(String) | Nil
#verbsis a list of matching verbs and may not be empty. -
#verbs=(verbs : Array(String) | Nil)
#verbsis a list of matching verbs and may not be empty.
Constructor Detail
Macro Detail
Helper macro for defining fields with automatic camelCase conversion
Instance Method Detail
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.
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.
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.
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.
#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.
#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.
#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.
#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.