/** * 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://.vault.azure.net/keys// * */ 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://.vault.azure.net/keys// * * On parsing the above Id, this function returns: *```ts * { * sourceId: "https://.vault.azure.net/keys//", * vaultUrl: "https://.vault.azure.net", * version: "", * name: "" * } *``` * @param id - The Id of the Key Vault Key. */ export declare function parseKeyVaultKeyIdentifier(id: string): KeyVaultKeyIdentifier; //# sourceMappingURL=identifier.d.ts.map