Interface ResourcePolicyRuleV1Beta2
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ResourcePolicyRuleV1Beta2.Jsii$Proxy
@Generated(value="jsii-pacmak/1.85.0 (build 08ee592)", date="2023-07-25T00:18:39.493Z") @Stability(Stable) public interface ResourcePolicyRuleV1Beta2 extends software.amazon.jsii.JsiiSerializable
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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ResourcePolicyRuleV1Beta2.Builder
A builder forResourcePolicyRuleV1Beta2
static class
ResourcePolicyRuleV1Beta2.Jsii$Proxy
An implementation forResourcePolicyRuleV1Beta2
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ResourcePolicyRuleV1Beta2.Builder
builder()
List<String>
getApiGroups()
apiGroups
is a list of matching API groups and may not be empty.default 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).default List<String>
getNamespaces()
namespaces
is a list of target namespaces that restricts matches.List<String>
getResources()
resources
is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.List<String>
getVerbs()
verbs
is a list of matching verbs and may not be empty.
-
-
-
Method Detail
-
getApiGroups
@Stability(Stable) @NotNull 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.
-
getResources
@Stability(Stable) @NotNull 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.
-
getVerbs
@Stability(Stable) @NotNull 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.
-
getClusterScope
@Stability(Stable) @Nullable default 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.
-
getNamespaces
@Stability(Stable) @Nullable default 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 ifclusterScope
is true.
-
builder
@Stability(Stable) static ResourcePolicyRuleV1Beta2.Builder builder()
- Returns:
- a
ResourcePolicyRuleV1Beta2.Builder
ofResourcePolicyRuleV1Beta2
-
-