Commit iniziale
This commit is contained in:
42
node_modules/@azure/keyvault-keys/dist/browser/identifier.d.ts
generated
vendored
Normal file
42
node_modules/@azure/keyvault-keys/dist/browser/identifier.d.ts
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
/**
|
||||
* Represents the segments that compose a Key Vault Key Id.
|
||||
*/
|
||||
export interface KeyVaultKeyIdentifier {
|
||||
/**
|
||||
* The complete representation of the Key Vault Key Id. For example:
|
||||
*
|
||||
* https://<keyvault-name>.vault.azure.net/keys/<key-name>/<unique-version-id>
|
||||
*
|
||||
*/
|
||||
sourceId: string;
|
||||
/**
|
||||
* The URL of the Azure Key Vault instance to which the Key belongs.
|
||||
*/
|
||||
vaultUrl: string;
|
||||
/**
|
||||
* The version of Key Vault Key. Might be undefined.
|
||||
*/
|
||||
version?: string;
|
||||
/**
|
||||
* The name of the Key Vault Key.
|
||||
*/
|
||||
name: string;
|
||||
}
|
||||
/**
|
||||
* Parses the given Key Vault Key Id. An example is:
|
||||
*
|
||||
* https://<keyvault-name>.vault.azure.net/keys/<key-name>/<unique-version-id>
|
||||
*
|
||||
* On parsing the above Id, this function returns:
|
||||
*```ts
|
||||
* {
|
||||
* sourceId: "https://<keyvault-name>.vault.azure.net/keys/<key-name>/<unique-version-id>",
|
||||
* vaultUrl: "https://<keyvault-name>.vault.azure.net",
|
||||
* version: "<unique-version-id>",
|
||||
* name: "<key-name>"
|
||||
* }
|
||||
*```
|
||||
* @param id - The Id of the Key Vault Key.
|
||||
*/
|
||||
export declare function parseKeyVaultKeyIdentifier(id: string): KeyVaultKeyIdentifier;
|
||||
//# sourceMappingURL=identifier.d.ts.map
|
||||
Reference in New Issue
Block a user