SecretObject Class

  • java.lang.Object
    • com.azure.resourcemanager.containerregistry.models.SecretObject

public final class SecretObject

Describes the properties of a secret object value.

Constructor Summary

Constructor Description
SecretObject()

Creates an instance of SecretObject class.

Method Summary

Modifier and Type Method and Description
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.

void validate()

Validates the instance.

String value()

Get the value property: The value of the secret.

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.

SecretObject withValue(String value)

Set the value property: The value of the secret.

Methods inherited from java.lang.Object

Constructor Details

SecretObject

public SecretObject()

Creates an instance of SecretObject class.

Method Details

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.

validate

public void validate()

Validates the instance.

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.

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.

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.

Applies to