Secrets Interface

Implements

public interface Secrets
extends SupportsCreating<Blank>, SupportsDeletingById, SupportsGettingById<Secret>, SupportsGettingByNameAsync<Secret>, SupportsListing<Secret>

Entry point for Key Vault secrets API.

Method Summary

Modifier and Type Method and Description
abstract Secret getByNameAndVersion(String name, String version)

Gets a Key Vault secret.

abstract rx.Observable<Secret> getByNameAndVersionAsync(String name, String version)

Gets a Key Vault secret.

Method Details

getByNameAndVersion

public abstract Secret getByNameAndVersion(String name, String version)

Gets a Key Vault secret.

Parameters:

name - the name of the secret
version - the version of the secret

Returns:

the secret

getByNameAndVersionAsync

public abstract Observable getByNameAndVersionAsync(String name, String version)

Gets a Key Vault secret.

Parameters:

name - the name of the secret
version - the version of the secret

Returns:

the secret

Applies to