ResourcePolicyRule class
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.
Constructors
-
ResourcePolicyRule({required List<
String> apiGroups, bool? clusterScope, List<String> ? namespaces, required List<String> resources, required List<String> verbs}) -
Default constructor.
const
-
ResourcePolicyRule.fromJson(Map<
String, dynamic> json) -
Creates a ResourcePolicyRule from JSON data.
factory
Properties
-
apiGroups
→ List<
String> -
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.final - clusterScope → bool?
-
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 thenamespaces
field must contain a non-empty list.final - hashCode → int
-
The hash code for this object.
no setterinherited
-
namespaces
→ List<
String> ? -
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 theclusterScope
field for that). This list may be empty, but only ifclusterScope
is true.final -
resources
→ List<
String> -
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.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
verbs
→ List<
String> -
verbs
is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Converts a ResourcePolicyRule instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited