ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | name is the name of the resource being referenced. `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset. | [optional] |
| namespace | str | namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields. A per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty. - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error. - If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error. | [optional] |
| parameter_not_found_action | str | parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy. Allowed values are `Allow` or `Deny` Default to `Deny` | [optional] |
| selector | V1LabelSelector | [optional] |
from kubernetes.client.models.v1alpha1_param_ref import V1alpha1ParamRef
# TODO update the JSON string below
json = "{}"
# create an instance of V1alpha1ParamRef from a JSON string
v1alpha1_param_ref_instance = V1alpha1ParamRef.from_json(json)
# print the JSON string representation of the object
print(V1alpha1ParamRef.to_json())
# convert the object into a dict
v1alpha1_param_ref_dict = v1alpha1_param_ref_instance.to_dict()
# create an instance of V1alpha1ParamRef from a dict
v1alpha1_param_ref_from_dict = V1alpha1ParamRef.from_dict(v1alpha1_param_ref_dict)