Class SecretObject
- java.lang.Object
-
- com.azure.resourcemanager.containerregistry.models.SecretObject
-
public final class SecretObject extends Object
Describes the properties of a secret object value.
-
-
Constructor Summary
Constructors Constructor Description SecretObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecretObjectTypetype()Get the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.voidvalidate()Validates the instance.Stringvalue()Get the value property: The value of the secret.SecretObjectwithType(SecretObjectType type)Set the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.SecretObjectwithValue(String value)Set the value property: The value of the secret.
-
-
-
Method Detail
-
value
public String value()
Get the value property: The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.- Returns:
- the value value.
-
withValue
public SecretObject withValue(String value)
Set the value property: The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.- Parameters:
value- the value value to set.- Returns:
- the SecretObject object itself.
-
type
public SecretObjectType type()
Get the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.- Returns:
- the type value.
-
withType
public SecretObject withType(SecretObjectType type)
Set the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.- Parameters:
type- the type value to set.- Returns:
- the SecretObject object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-