@azure/arm-keyvault 3.2.0-alpha.20250611.1 → 3.2.0-alpha.20250616.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": "3.2.0-alpha.
|
|
6
|
+
"version": "3.2.0-alpha.20250616.1",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/abort-controller": "^2.1.2",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
35
35
|
"@azure/identity": "^4.8.0",
|
|
36
36
|
"@azure/logger": "^1.1.4",
|
|
37
|
-
"@types/node": "^
|
|
37
|
+
"@types/node": "^20.0.0",
|
|
38
38
|
"@vitest/browser": "^3.0.9",
|
|
39
39
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
40
40
|
"dotenv": "^16.0.0",
|
|
@@ -14,7 +14,7 @@ import { SimplePollerLike } 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
|
|
|
@@ -1174,13 +1174,12 @@ export interface OperationsListOptionalParams extends coreClient.OperationOption
|
|
|
1174
1174
|
export type OperationsListResponse = OperationListResult;
|
|
1175
1175
|
|
|
1176
1176
|
// @public
|
|
1177
|
-
interface
|
|
1177
|
+
export interface Permissions {
|
|
1178
1178
|
certificates?: CertificatePermissions[];
|
|
1179
1179
|
keys?: KeyPermissions[];
|
|
1180
1180
|
secrets?: SecretPermissions[];
|
|
1181
1181
|
storage?: StoragePermissions[];
|
|
1182
1182
|
}
|
|
1183
|
-
export { Permissions_2 as Permissions }
|
|
1184
1183
|
|
|
1185
1184
|
// @public
|
|
1186
1185
|
export interface PrivateEndpoint {
|