Package version:

Interface SecretProperties

Properties of the secret

interface SecretProperties {
    attributes?: SecretAttributes;
    contentType?: string;
    secretUri?: string;
    secretUriWithVersion?: string;
    value?: string;
}

Properties

attributes?: SecretAttributes

The attributes of the secret.

contentType?: string

The content type of the secret.

secretUri?: string

The URI to retrieve the current version of the secret. NOTE: This property will not be serialized. It can only be populated by the server.

secretUriWithVersion?: string

The URI to retrieve the specific version of the secret. NOTE: This property will not be serialized. It can only be populated by the server.

value?: string

The value of the secret. NOTE: 'value' will never be returned from the service, as APIs using this model are is intended for internal use in ARM deployments. Users should use the data-plane REST service for interaction with vault secrets.