Package version:

Interface UpdateSecretPropertiesOptions

Options for updateSecretProperties.

interface UpdateSecretPropertiesOptions {
    contentType?: string;
    enabled?: boolean;
    expiresOn?: any;
    notBefore?: any;
    tags?: {
        [propertyName: string]: string;
    };
}

Hierarchy (view full)

Properties

contentType?: string

Type of the secret value such as a password.

enabled?: boolean

Determines whether the object is enabled.

expiresOn?: any

Expiry date in UTC.

notBefore?: any

Not before date in UTC.

tags?: {
    [propertyName: string]: string;
}

Application specific metadata in the form of key-value pairs.