共用方式為


SecretIdentifier Class

  • java.lang.Object

public class SecretIdentifier extends ObjectIdentifier

Key Vault secret identifier.

Constructor Summary

Constructor Description
SecretIdentifier(String identifier)

Constructor.

SecretIdentifier(String vault, String name)

Constructor.

SecretIdentifier(String vault, String name, String version)

Constructor.

Method Summary

Modifier and Type Method and Description
boolean isSecretIdentifier(String identifier)

Verifies whether the identifier belongs to a key vault secret.

Inherited Members

Constructor Details

SecretIdentifier

public SecretIdentifier(String identifier)

Constructor.

Parameters:

identifier - the object identifier.

SecretIdentifier

public SecretIdentifier(String vault, String name)

Constructor.

Parameters:

vault - the vault url.
name - the name of secret.

SecretIdentifier

public SecretIdentifier(String vault, String name, String version)

Constructor.

Parameters:

vault - the vault url.
name - the name of secret.
version - the secret version.

Method Details

isSecretIdentifier

public static boolean isSecretIdentifier(String identifier)

Verifies whether the identifier belongs to a key vault secret.

Parameters:

identifier - the key vault secret identifier.

Returns:

true if the identifier belongs to a key vault secret. False otherwise.

Applies to