Files
c/kubernetes/docs/v1beta3_resource_policy_rule.md
Kubernetes Prow Robot 060e5f800a Automated openapi generation from release-1.26
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2023-02-23 01:48:36 +00:00

1.9 KiB

v1beta3_resource_policy_rule_t

Properties

Name Type Description Notes
api_groups list_t * `apiGroups` is a list of matching API groups and may not be empty. &quot;*&quot; matches all API groups and, if present, must be the only entry. Required.
cluster_scope int `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. [optional]
namespaces list_t * `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 &quot;&quot;. Note that &quot;&quot; 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. [optional]
resources list_t * `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ &quot;services&quot;, &quot;nodes/status&quot; ]. This list may not be empty. &quot;*&quot; matches all resources and, if present, must be the only entry. Required.
verbs list_t * `verbs` is a list of matching verbs and may not be empty. &quot;*&quot; matches all verbs and, if present, must be the only entry. Required.

[Back to Model list] [Back to API list] [Back to README]