@azure/arm-keyvault-profile-2020-09-01-hybrid 2.1.1-alpha.20250612.1 → 2.1.1-alpha.20250617.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for KeyVaultManagementClient.",
|
|
6
|
-
"version": "2.1.1-alpha.
|
|
6
|
+
"version": "2.1.1-alpha.20250617.1",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/abort-controller": "^2.1.2",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
36
36
|
"@azure/identity": "^4.6.0",
|
|
37
37
|
"@azure/logger": "^1.1.4",
|
|
38
|
-
"@types/node": "^
|
|
38
|
+
"@types/node": "^20.0.0",
|
|
39
39
|
"@vitest/browser": "^3.0.9",
|
|
40
40
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
41
41
|
"dotenv": "^16.0.0",
|
|
@@ -14,7 +14,7 @@ import { PollOperationState } from '@azure/core-lro';
|
|
|
14
14
|
export interface AccessPolicyEntry {
|
|
15
15
|
applicationId?: string;
|
|
16
16
|
objectId: string;
|
|
17
|
-
permissions:
|
|
17
|
+
permissions: Permissions;
|
|
18
18
|
tenantId: string;
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -321,13 +321,12 @@ export interface OperationsListOptionalParams extends coreClient.OperationOption
|
|
|
321
321
|
export type OperationsListResponse = OperationListResult;
|
|
322
322
|
|
|
323
323
|
// @public
|
|
324
|
-
interface
|
|
324
|
+
export interface Permissions {
|
|
325
325
|
certificates?: CertificatePermissions[];
|
|
326
326
|
keys?: KeyPermissions[];
|
|
327
327
|
secrets?: SecretPermissions[];
|
|
328
328
|
storage?: StoragePermissions[];
|
|
329
329
|
}
|
|
330
|
-
export { Permissions_2 as Permissions }
|
|
331
330
|
|
|
332
331
|
// @public
|
|
333
332
|
export interface PrivateEndpoint {
|