@azure/arm-storage 18.5.0-alpha.20250611.1 → 18.5.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 StorageManagementClient.",
|
|
6
|
-
"version": "18.5.0-alpha.
|
|
6
|
+
"version": "18.5.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.9.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",
|
|
@@ -42,7 +42,7 @@ export interface AccountLimits {
|
|
|
42
42
|
export interface AccountSasParameters {
|
|
43
43
|
iPAddressOrRange?: string;
|
|
44
44
|
keyToSign?: string;
|
|
45
|
-
permissions:
|
|
45
|
+
permissions: Permissions;
|
|
46
46
|
protocols?: HttpProtocol;
|
|
47
47
|
resourceTypes: SignedResourceTypes;
|
|
48
48
|
services: Services;
|
|
@@ -674,7 +674,7 @@ export type EncryptionScopeState = string;
|
|
|
674
674
|
// @public
|
|
675
675
|
export interface EncryptionService {
|
|
676
676
|
enabled?: boolean;
|
|
677
|
-
keyType?:
|
|
677
|
+
keyType?: KeyType;
|
|
678
678
|
readonly lastEnabledTime?: Date;
|
|
679
679
|
}
|
|
680
680
|
|
|
@@ -1119,8 +1119,7 @@ export interface KeyPolicy {
|
|
|
1119
1119
|
export type KeySource = string;
|
|
1120
1120
|
|
|
1121
1121
|
// @public
|
|
1122
|
-
type
|
|
1123
|
-
export { KeyType_2 as KeyType }
|
|
1122
|
+
export type KeyType = string;
|
|
1124
1123
|
|
|
1125
1124
|
// @public
|
|
1126
1125
|
export interface KeyVaultProperties {
|
|
@@ -2202,8 +2201,7 @@ export interface OperationsListOptionalParams extends coreClient.OperationOption
|
|
|
2202
2201
|
export type OperationsListResponse = OperationListResult;
|
|
2203
2202
|
|
|
2204
2203
|
// @public
|
|
2205
|
-
type
|
|
2206
|
-
export { Permissions_2 as Permissions }
|
|
2204
|
+
export type Permissions = string;
|
|
2207
2205
|
|
|
2208
2206
|
// @public (undocumented)
|
|
2209
2207
|
export interface PermissionScope {
|
|
@@ -2521,7 +2519,7 @@ export interface ServiceSasParameters {
|
|
|
2521
2519
|
keyToSign?: string;
|
|
2522
2520
|
partitionKeyEnd?: string;
|
|
2523
2521
|
partitionKeyStart?: string;
|
|
2524
|
-
permissions?:
|
|
2522
|
+
permissions?: Permissions;
|
|
2525
2523
|
protocols?: HttpProtocol;
|
|
2526
2524
|
resource?: SignedResource;
|
|
2527
2525
|
rowKeyEnd?: string;
|