Class ParamRef
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.admissionregistration.v1alpha1.ParamRef
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ParamRefBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ParamRef extends Object implements io.fabric8.kubernetes.api.builder.Editable<ParamRefBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParamRefBuilderedit()Map<String,Object>getAdditionalProperties()StringgetName()`name` is the name of the resource being referenced.StringgetNamespace()namespace is the namespace of the referenced resource.StringgetParameterNotFoundAction()`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.io.fabric8.kubernetes.api.model.LabelSelectorgetSelector()ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetName(String name)`name` is the name of the resource being referenced.voidsetNamespace(String namespace)namespace is the namespace of the referenced resource.voidsetParameterNotFoundAction(String parameterNotFoundAction)`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.voidsetSelector(io.fabric8.kubernetes.api.model.LabelSelector selector)ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.ParamRefBuildertoBuilder()
-
-
-
Method Detail
-
getName
public String getName()
`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.
-
setName
public void setName(String name)
`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.
-
getNamespace
public String getNamespace()
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.
-
setNamespace
public void setNamespace(String namespace)
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.
-
getParameterNotFoundAction
public String getParameterNotFoundAction()
`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`
-
setParameterNotFoundAction
public void setParameterNotFoundAction(String parameterNotFoundAction)
`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`
-
getSelector
public io.fabric8.kubernetes.api.model.LabelSelector getSelector()
ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.
-
setSelector
public void setSelector(io.fabric8.kubernetes.api.model.LabelSelector selector)
ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.
-
edit
public ParamRefBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ParamRefBuilder>
-
toBuilder
public ParamRefBuilder toBuilder()
-
-