@azure/arm-storage 17.0.1-alpha.20220105.6 → 17.0.1-alpha.20220128.2
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/dist/index.js +350 -232
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +3 -3
- package/types/tsdoc-metadata.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,6 +6,26 @@ var coreClient = require('@azure/core-client');
|
|
|
6
6
|
var tslib = require('tslib');
|
|
7
7
|
var coreLro = require('@azure/core-lro');
|
|
8
8
|
|
|
9
|
+
function _interopNamespace(e) {
|
|
10
|
+
if (e && e.__esModule) return e;
|
|
11
|
+
var n = Object.create(null);
|
|
12
|
+
if (e) {
|
|
13
|
+
Object.keys(e).forEach(function (k) {
|
|
14
|
+
if (k !== 'default') {
|
|
15
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
16
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () { return e[k]; }
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
n["default"] = e;
|
|
24
|
+
return Object.freeze(n);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
var coreClient__namespace = /*#__PURE__*/_interopNamespace(coreClient);
|
|
28
|
+
|
|
9
29
|
/*
|
|
10
30
|
* Copyright (c) Microsoft Corporation.
|
|
11
31
|
* Licensed under the MIT License.
|
|
@@ -13,6 +33,8 @@ var coreLro = require('@azure/core-lro');
|
|
|
13
33
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
14
34
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
15
35
|
*/
|
|
36
|
+
/** Known values of {@link SkuName} that the service accepts. */
|
|
37
|
+
exports.KnownSkuName = void 0;
|
|
16
38
|
(function (KnownSkuName) {
|
|
17
39
|
KnownSkuName["StandardLRS"] = "Standard_LRS";
|
|
18
40
|
KnownSkuName["StandardGRS"] = "Standard_GRS";
|
|
@@ -23,6 +45,8 @@ var coreLro = require('@azure/core-lro');
|
|
|
23
45
|
KnownSkuName["StandardGzrs"] = "Standard_GZRS";
|
|
24
46
|
KnownSkuName["StandardRagzrs"] = "Standard_RAGZRS";
|
|
25
47
|
})(exports.KnownSkuName || (exports.KnownSkuName = {}));
|
|
48
|
+
/** Known values of {@link Kind} that the service accepts. */
|
|
49
|
+
exports.KnownKind = void 0;
|
|
26
50
|
(function (KnownKind) {
|
|
27
51
|
KnownKind["Storage"] = "Storage";
|
|
28
52
|
KnownKind["StorageV2"] = "StorageV2";
|
|
@@ -30,40 +54,58 @@ var coreLro = require('@azure/core-lro');
|
|
|
30
54
|
KnownKind["FileStorage"] = "FileStorage";
|
|
31
55
|
KnownKind["BlockBlobStorage"] = "BlockBlobStorage";
|
|
32
56
|
})(exports.KnownKind || (exports.KnownKind = {}));
|
|
57
|
+
/** Known values of {@link ReasonCode} that the service accepts. */
|
|
58
|
+
exports.KnownReasonCode = void 0;
|
|
33
59
|
(function (KnownReasonCode) {
|
|
34
60
|
KnownReasonCode["QuotaId"] = "QuotaId";
|
|
35
61
|
KnownReasonCode["NotAvailableForSubscription"] = "NotAvailableForSubscription";
|
|
36
62
|
})(exports.KnownReasonCode || (exports.KnownReasonCode = {}));
|
|
63
|
+
/** Known values of {@link ExtendedLocationTypes} that the service accepts. */
|
|
64
|
+
exports.KnownExtendedLocationTypes = void 0;
|
|
37
65
|
(function (KnownExtendedLocationTypes) {
|
|
38
66
|
KnownExtendedLocationTypes["EdgeZone"] = "EdgeZone";
|
|
39
67
|
})(exports.KnownExtendedLocationTypes || (exports.KnownExtendedLocationTypes = {}));
|
|
68
|
+
/** Known values of {@link IdentityType} that the service accepts. */
|
|
69
|
+
exports.KnownIdentityType = void 0;
|
|
40
70
|
(function (KnownIdentityType) {
|
|
41
71
|
KnownIdentityType["None"] = "None";
|
|
42
72
|
KnownIdentityType["SystemAssigned"] = "SystemAssigned";
|
|
43
73
|
KnownIdentityType["UserAssigned"] = "UserAssigned";
|
|
44
74
|
KnownIdentityType["SystemAssignedUserAssigned"] = "SystemAssigned,UserAssigned";
|
|
45
75
|
})(exports.KnownIdentityType || (exports.KnownIdentityType = {}));
|
|
76
|
+
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
|
77
|
+
exports.KnownPublicNetworkAccess = void 0;
|
|
46
78
|
(function (KnownPublicNetworkAccess) {
|
|
47
79
|
KnownPublicNetworkAccess["Enabled"] = "Enabled";
|
|
48
80
|
KnownPublicNetworkAccess["Disabled"] = "Disabled";
|
|
49
81
|
})(exports.KnownPublicNetworkAccess || (exports.KnownPublicNetworkAccess = {}));
|
|
82
|
+
/** Known values of {@link ExpirationAction} that the service accepts. */
|
|
83
|
+
exports.KnownExpirationAction = void 0;
|
|
50
84
|
(function (KnownExpirationAction) {
|
|
51
85
|
KnownExpirationAction["Log"] = "Log";
|
|
52
86
|
})(exports.KnownExpirationAction || (exports.KnownExpirationAction = {}));
|
|
87
|
+
/** Known values of {@link KeyType} that the service accepts. */
|
|
88
|
+
exports.KnownKeyType = void 0;
|
|
53
89
|
(function (KnownKeyType) {
|
|
54
90
|
KnownKeyType["Service"] = "Service";
|
|
55
91
|
KnownKeyType["Account"] = "Account";
|
|
56
92
|
})(exports.KnownKeyType || (exports.KnownKeyType = {}));
|
|
93
|
+
/** Known values of {@link KeySource} that the service accepts. */
|
|
94
|
+
exports.KnownKeySource = void 0;
|
|
57
95
|
(function (KnownKeySource) {
|
|
58
96
|
KnownKeySource["MicrosoftStorage"] = "Microsoft.Storage";
|
|
59
97
|
KnownKeySource["MicrosoftKeyvault"] = "Microsoft.Keyvault";
|
|
60
98
|
})(exports.KnownKeySource || (exports.KnownKeySource = {}));
|
|
99
|
+
/** Known values of {@link Bypass} that the service accepts. */
|
|
100
|
+
exports.KnownBypass = void 0;
|
|
61
101
|
(function (KnownBypass) {
|
|
62
102
|
KnownBypass["None"] = "None";
|
|
63
103
|
KnownBypass["Logging"] = "Logging";
|
|
64
104
|
KnownBypass["Metrics"] = "Metrics";
|
|
65
105
|
KnownBypass["AzureServices"] = "AzureServices";
|
|
66
106
|
})(exports.KnownBypass || (exports.KnownBypass = {}));
|
|
107
|
+
/** Known values of {@link State} that the service accepts. */
|
|
108
|
+
exports.KnownState = void 0;
|
|
67
109
|
(function (KnownState) {
|
|
68
110
|
KnownState["Provisioning"] = "Provisioning";
|
|
69
111
|
KnownState["Deprovisioning"] = "Deprovisioning";
|
|
@@ -71,67 +113,93 @@ var coreLro = require('@azure/core-lro');
|
|
|
71
113
|
KnownState["Failed"] = "Failed";
|
|
72
114
|
KnownState["NetworkSourceDeleted"] = "NetworkSourceDeleted";
|
|
73
115
|
})(exports.KnownState || (exports.KnownState = {}));
|
|
116
|
+
/** Known values of {@link DirectoryServiceOptions} that the service accepts. */
|
|
117
|
+
exports.KnownDirectoryServiceOptions = void 0;
|
|
74
118
|
(function (KnownDirectoryServiceOptions) {
|
|
75
119
|
KnownDirectoryServiceOptions["None"] = "None";
|
|
76
120
|
KnownDirectoryServiceOptions["Aadds"] = "AADDS";
|
|
77
121
|
KnownDirectoryServiceOptions["AD"] = "AD";
|
|
78
122
|
})(exports.KnownDirectoryServiceOptions || (exports.KnownDirectoryServiceOptions = {}));
|
|
123
|
+
/** Known values of {@link DefaultSharePermission} that the service accepts. */
|
|
124
|
+
exports.KnownDefaultSharePermission = void 0;
|
|
79
125
|
(function (KnownDefaultSharePermission) {
|
|
80
126
|
KnownDefaultSharePermission["None"] = "None";
|
|
81
127
|
KnownDefaultSharePermission["StorageFileDataSmbShareReader"] = "StorageFileDataSmbShareReader";
|
|
82
128
|
KnownDefaultSharePermission["StorageFileDataSmbShareContributor"] = "StorageFileDataSmbShareContributor";
|
|
83
129
|
KnownDefaultSharePermission["StorageFileDataSmbShareElevatedContributor"] = "StorageFileDataSmbShareElevatedContributor";
|
|
84
130
|
})(exports.KnownDefaultSharePermission || (exports.KnownDefaultSharePermission = {}));
|
|
131
|
+
/** Known values of {@link LargeFileSharesState} that the service accepts. */
|
|
132
|
+
exports.KnownLargeFileSharesState = void 0;
|
|
85
133
|
(function (KnownLargeFileSharesState) {
|
|
86
134
|
KnownLargeFileSharesState["Disabled"] = "Disabled";
|
|
87
135
|
KnownLargeFileSharesState["Enabled"] = "Enabled";
|
|
88
136
|
})(exports.KnownLargeFileSharesState || (exports.KnownLargeFileSharesState = {}));
|
|
137
|
+
/** Known values of {@link RoutingChoice} that the service accepts. */
|
|
138
|
+
exports.KnownRoutingChoice = void 0;
|
|
89
139
|
(function (KnownRoutingChoice) {
|
|
90
140
|
KnownRoutingChoice["MicrosoftRouting"] = "MicrosoftRouting";
|
|
91
141
|
KnownRoutingChoice["InternetRouting"] = "InternetRouting";
|
|
92
142
|
})(exports.KnownRoutingChoice || (exports.KnownRoutingChoice = {}));
|
|
143
|
+
/** Known values of {@link MinimumTlsVersion} that the service accepts. */
|
|
144
|
+
exports.KnownMinimumTlsVersion = void 0;
|
|
93
145
|
(function (KnownMinimumTlsVersion) {
|
|
94
146
|
KnownMinimumTlsVersion["TLS10"] = "TLS1_0";
|
|
95
147
|
KnownMinimumTlsVersion["TLS11"] = "TLS1_1";
|
|
96
148
|
KnownMinimumTlsVersion["TLS12"] = "TLS1_2";
|
|
97
149
|
})(exports.KnownMinimumTlsVersion || (exports.KnownMinimumTlsVersion = {}));
|
|
150
|
+
/** Known values of {@link AccountImmutabilityPolicyState} that the service accepts. */
|
|
151
|
+
exports.KnownAccountImmutabilityPolicyState = void 0;
|
|
98
152
|
(function (KnownAccountImmutabilityPolicyState) {
|
|
99
153
|
KnownAccountImmutabilityPolicyState["Unlocked"] = "Unlocked";
|
|
100
154
|
KnownAccountImmutabilityPolicyState["Locked"] = "Locked";
|
|
101
155
|
KnownAccountImmutabilityPolicyState["Disabled"] = "Disabled";
|
|
102
156
|
})(exports.KnownAccountImmutabilityPolicyState || (exports.KnownAccountImmutabilityPolicyState = {}));
|
|
157
|
+
/** Known values of {@link GeoReplicationStatus} that the service accepts. */
|
|
158
|
+
exports.KnownGeoReplicationStatus = void 0;
|
|
103
159
|
(function (KnownGeoReplicationStatus) {
|
|
104
160
|
KnownGeoReplicationStatus["Live"] = "Live";
|
|
105
161
|
KnownGeoReplicationStatus["Bootstrap"] = "Bootstrap";
|
|
106
162
|
KnownGeoReplicationStatus["Unavailable"] = "Unavailable";
|
|
107
163
|
})(exports.KnownGeoReplicationStatus || (exports.KnownGeoReplicationStatus = {}));
|
|
164
|
+
/** Known values of {@link PrivateEndpointServiceConnectionStatus} that the service accepts. */
|
|
165
|
+
exports.KnownPrivateEndpointServiceConnectionStatus = void 0;
|
|
108
166
|
(function (KnownPrivateEndpointServiceConnectionStatus) {
|
|
109
167
|
KnownPrivateEndpointServiceConnectionStatus["Pending"] = "Pending";
|
|
110
168
|
KnownPrivateEndpointServiceConnectionStatus["Approved"] = "Approved";
|
|
111
169
|
KnownPrivateEndpointServiceConnectionStatus["Rejected"] = "Rejected";
|
|
112
170
|
})(exports.KnownPrivateEndpointServiceConnectionStatus || (exports.KnownPrivateEndpointServiceConnectionStatus = {}));
|
|
171
|
+
/** Known values of {@link PrivateEndpointConnectionProvisioningState} that the service accepts. */
|
|
172
|
+
exports.KnownPrivateEndpointConnectionProvisioningState = void 0;
|
|
113
173
|
(function (KnownPrivateEndpointConnectionProvisioningState) {
|
|
114
174
|
KnownPrivateEndpointConnectionProvisioningState["Succeeded"] = "Succeeded";
|
|
115
175
|
KnownPrivateEndpointConnectionProvisioningState["Creating"] = "Creating";
|
|
116
176
|
KnownPrivateEndpointConnectionProvisioningState["Deleting"] = "Deleting";
|
|
117
177
|
KnownPrivateEndpointConnectionProvisioningState["Failed"] = "Failed";
|
|
118
178
|
})(exports.KnownPrivateEndpointConnectionProvisioningState || (exports.KnownPrivateEndpointConnectionProvisioningState = {}));
|
|
179
|
+
/** Known values of {@link BlobRestoreProgressStatus} that the service accepts. */
|
|
180
|
+
exports.KnownBlobRestoreProgressStatus = void 0;
|
|
119
181
|
(function (KnownBlobRestoreProgressStatus) {
|
|
120
182
|
KnownBlobRestoreProgressStatus["InProgress"] = "InProgress";
|
|
121
183
|
KnownBlobRestoreProgressStatus["Complete"] = "Complete";
|
|
122
184
|
KnownBlobRestoreProgressStatus["Failed"] = "Failed";
|
|
123
185
|
})(exports.KnownBlobRestoreProgressStatus || (exports.KnownBlobRestoreProgressStatus = {}));
|
|
186
|
+
/** Known values of {@link Services} that the service accepts. */
|
|
187
|
+
exports.KnownServices = void 0;
|
|
124
188
|
(function (KnownServices) {
|
|
125
189
|
KnownServices["B"] = "b";
|
|
126
190
|
KnownServices["Q"] = "q";
|
|
127
191
|
KnownServices["T"] = "t";
|
|
128
192
|
KnownServices["F"] = "f";
|
|
129
193
|
})(exports.KnownServices || (exports.KnownServices = {}));
|
|
194
|
+
/** Known values of {@link SignedResourceTypes} that the service accepts. */
|
|
195
|
+
exports.KnownSignedResourceTypes = void 0;
|
|
130
196
|
(function (KnownSignedResourceTypes) {
|
|
131
197
|
KnownSignedResourceTypes["S"] = "s";
|
|
132
198
|
KnownSignedResourceTypes["C"] = "c";
|
|
133
199
|
KnownSignedResourceTypes["O"] = "o";
|
|
134
200
|
})(exports.KnownSignedResourceTypes || (exports.KnownSignedResourceTypes = {}));
|
|
201
|
+
/** Known values of {@link Permissions} that the service accepts. */
|
|
202
|
+
exports.KnownPermissions = void 0;
|
|
135
203
|
(function (KnownPermissions) {
|
|
136
204
|
KnownPermissions["R"] = "r";
|
|
137
205
|
KnownPermissions["D"] = "d";
|
|
@@ -142,50 +210,74 @@ var coreLro = require('@azure/core-lro');
|
|
|
142
210
|
KnownPermissions["U"] = "u";
|
|
143
211
|
KnownPermissions["P"] = "p";
|
|
144
212
|
})(exports.KnownPermissions || (exports.KnownPermissions = {}));
|
|
213
|
+
/** Known values of {@link SignedResource} that the service accepts. */
|
|
214
|
+
exports.KnownSignedResource = void 0;
|
|
145
215
|
(function (KnownSignedResource) {
|
|
146
216
|
KnownSignedResource["B"] = "b";
|
|
147
217
|
KnownSignedResource["C"] = "c";
|
|
148
218
|
KnownSignedResource["F"] = "f";
|
|
149
219
|
KnownSignedResource["S"] = "s";
|
|
150
220
|
})(exports.KnownSignedResource || (exports.KnownSignedResource = {}));
|
|
221
|
+
/** Known values of {@link ManagementPolicyName} that the service accepts. */
|
|
222
|
+
exports.KnownManagementPolicyName = void 0;
|
|
151
223
|
(function (KnownManagementPolicyName) {
|
|
152
224
|
KnownManagementPolicyName["Default"] = "default";
|
|
153
225
|
})(exports.KnownManagementPolicyName || (exports.KnownManagementPolicyName = {}));
|
|
226
|
+
/** Known values of {@link RuleType} that the service accepts. */
|
|
227
|
+
exports.KnownRuleType = void 0;
|
|
154
228
|
(function (KnownRuleType) {
|
|
155
229
|
KnownRuleType["Lifecycle"] = "Lifecycle";
|
|
156
230
|
})(exports.KnownRuleType || (exports.KnownRuleType = {}));
|
|
231
|
+
/** Known values of {@link BlobInventoryPolicyName} that the service accepts. */
|
|
232
|
+
exports.KnownBlobInventoryPolicyName = void 0;
|
|
157
233
|
(function (KnownBlobInventoryPolicyName) {
|
|
158
234
|
KnownBlobInventoryPolicyName["Default"] = "default";
|
|
159
235
|
})(exports.KnownBlobInventoryPolicyName || (exports.KnownBlobInventoryPolicyName = {}));
|
|
236
|
+
/** Known values of {@link InventoryRuleType} that the service accepts. */
|
|
237
|
+
exports.KnownInventoryRuleType = void 0;
|
|
160
238
|
(function (KnownInventoryRuleType) {
|
|
161
239
|
KnownInventoryRuleType["Inventory"] = "Inventory";
|
|
162
240
|
})(exports.KnownInventoryRuleType || (exports.KnownInventoryRuleType = {}));
|
|
241
|
+
/** Known values of {@link Format} that the service accepts. */
|
|
242
|
+
exports.KnownFormat = void 0;
|
|
163
243
|
(function (KnownFormat) {
|
|
164
244
|
KnownFormat["Csv"] = "Csv";
|
|
165
245
|
KnownFormat["Parquet"] = "Parquet";
|
|
166
246
|
})(exports.KnownFormat || (exports.KnownFormat = {}));
|
|
247
|
+
/** Known values of {@link Schedule} that the service accepts. */
|
|
248
|
+
exports.KnownSchedule = void 0;
|
|
167
249
|
(function (KnownSchedule) {
|
|
168
250
|
KnownSchedule["Daily"] = "Daily";
|
|
169
251
|
KnownSchedule["Weekly"] = "Weekly";
|
|
170
252
|
})(exports.KnownSchedule || (exports.KnownSchedule = {}));
|
|
253
|
+
/** Known values of {@link ObjectType} that the service accepts. */
|
|
254
|
+
exports.KnownObjectType = void 0;
|
|
171
255
|
(function (KnownObjectType) {
|
|
172
256
|
KnownObjectType["Blob"] = "Blob";
|
|
173
257
|
KnownObjectType["Container"] = "Container";
|
|
174
258
|
})(exports.KnownObjectType || (exports.KnownObjectType = {}));
|
|
259
|
+
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
260
|
+
exports.KnownCreatedByType = void 0;
|
|
175
261
|
(function (KnownCreatedByType) {
|
|
176
262
|
KnownCreatedByType["User"] = "User";
|
|
177
263
|
KnownCreatedByType["Application"] = "Application";
|
|
178
264
|
KnownCreatedByType["ManagedIdentity"] = "ManagedIdentity";
|
|
179
265
|
KnownCreatedByType["Key"] = "Key";
|
|
180
266
|
})(exports.KnownCreatedByType || (exports.KnownCreatedByType = {}));
|
|
267
|
+
/** Known values of {@link EncryptionScopeSource} that the service accepts. */
|
|
268
|
+
exports.KnownEncryptionScopeSource = void 0;
|
|
181
269
|
(function (KnownEncryptionScopeSource) {
|
|
182
270
|
KnownEncryptionScopeSource["MicrosoftStorage"] = "Microsoft.Storage";
|
|
183
271
|
KnownEncryptionScopeSource["MicrosoftKeyVault"] = "Microsoft.KeyVault";
|
|
184
272
|
})(exports.KnownEncryptionScopeSource || (exports.KnownEncryptionScopeSource = {}));
|
|
273
|
+
/** Known values of {@link EncryptionScopeState} that the service accepts. */
|
|
274
|
+
exports.KnownEncryptionScopeState = void 0;
|
|
185
275
|
(function (KnownEncryptionScopeState) {
|
|
186
276
|
KnownEncryptionScopeState["Enabled"] = "Enabled";
|
|
187
277
|
KnownEncryptionScopeState["Disabled"] = "Disabled";
|
|
188
278
|
})(exports.KnownEncryptionScopeState || (exports.KnownEncryptionScopeState = {}));
|
|
279
|
+
/** Known values of {@link CorsRuleAllowedMethodsItem} that the service accepts. */
|
|
280
|
+
exports.KnownCorsRuleAllowedMethodsItem = void 0;
|
|
189
281
|
(function (KnownCorsRuleAllowedMethodsItem) {
|
|
190
282
|
KnownCorsRuleAllowedMethodsItem["Delete"] = "DELETE";
|
|
191
283
|
KnownCorsRuleAllowedMethodsItem["GET"] = "GET";
|
|
@@ -195,16 +287,24 @@ var coreLro = require('@azure/core-lro');
|
|
|
195
287
|
KnownCorsRuleAllowedMethodsItem["Options"] = "OPTIONS";
|
|
196
288
|
KnownCorsRuleAllowedMethodsItem["PUT"] = "PUT";
|
|
197
289
|
})(exports.KnownCorsRuleAllowedMethodsItem || (exports.KnownCorsRuleAllowedMethodsItem = {}));
|
|
290
|
+
/** Known values of {@link Name} that the service accepts. */
|
|
291
|
+
exports.KnownName = void 0;
|
|
198
292
|
(function (KnownName) {
|
|
199
293
|
KnownName["AccessTimeTracking"] = "AccessTimeTracking";
|
|
200
294
|
})(exports.KnownName || (exports.KnownName = {}));
|
|
295
|
+
/** Known values of {@link ListContainersInclude} that the service accepts. */
|
|
296
|
+
exports.KnownListContainersInclude = void 0;
|
|
201
297
|
(function (KnownListContainersInclude) {
|
|
202
298
|
KnownListContainersInclude["Deleted"] = "deleted";
|
|
203
299
|
})(exports.KnownListContainersInclude || (exports.KnownListContainersInclude = {}));
|
|
300
|
+
/** Known values of {@link LeaseStatus} that the service accepts. */
|
|
301
|
+
exports.KnownLeaseStatus = void 0;
|
|
204
302
|
(function (KnownLeaseStatus) {
|
|
205
303
|
KnownLeaseStatus["Locked"] = "Locked";
|
|
206
304
|
KnownLeaseStatus["Unlocked"] = "Unlocked";
|
|
207
305
|
})(exports.KnownLeaseStatus || (exports.KnownLeaseStatus = {}));
|
|
306
|
+
/** Known values of {@link LeaseState} that the service accepts. */
|
|
307
|
+
exports.KnownLeaseState = void 0;
|
|
208
308
|
(function (KnownLeaseState) {
|
|
209
309
|
KnownLeaseState["Available"] = "Available";
|
|
210
310
|
KnownLeaseState["Leased"] = "Leased";
|
|
@@ -212,23 +312,33 @@ var coreLro = require('@azure/core-lro');
|
|
|
212
312
|
KnownLeaseState["Breaking"] = "Breaking";
|
|
213
313
|
KnownLeaseState["Broken"] = "Broken";
|
|
214
314
|
})(exports.KnownLeaseState || (exports.KnownLeaseState = {}));
|
|
315
|
+
/** Known values of {@link LeaseDuration} that the service accepts. */
|
|
316
|
+
exports.KnownLeaseDuration = void 0;
|
|
215
317
|
(function (KnownLeaseDuration) {
|
|
216
318
|
KnownLeaseDuration["Infinite"] = "Infinite";
|
|
217
319
|
KnownLeaseDuration["Fixed"] = "Fixed";
|
|
218
320
|
})(exports.KnownLeaseDuration || (exports.KnownLeaseDuration = {}));
|
|
321
|
+
/** Known values of {@link ImmutabilityPolicyState} that the service accepts. */
|
|
322
|
+
exports.KnownImmutabilityPolicyState = void 0;
|
|
219
323
|
(function (KnownImmutabilityPolicyState) {
|
|
220
324
|
KnownImmutabilityPolicyState["Locked"] = "Locked";
|
|
221
325
|
KnownImmutabilityPolicyState["Unlocked"] = "Unlocked";
|
|
222
326
|
})(exports.KnownImmutabilityPolicyState || (exports.KnownImmutabilityPolicyState = {}));
|
|
327
|
+
/** Known values of {@link ImmutabilityPolicyUpdateType} that the service accepts. */
|
|
328
|
+
exports.KnownImmutabilityPolicyUpdateType = void 0;
|
|
223
329
|
(function (KnownImmutabilityPolicyUpdateType) {
|
|
224
330
|
KnownImmutabilityPolicyUpdateType["Put"] = "put";
|
|
225
331
|
KnownImmutabilityPolicyUpdateType["Lock"] = "lock";
|
|
226
332
|
KnownImmutabilityPolicyUpdateType["Extend"] = "extend";
|
|
227
333
|
})(exports.KnownImmutabilityPolicyUpdateType || (exports.KnownImmutabilityPolicyUpdateType = {}));
|
|
334
|
+
/** Known values of {@link MigrationState} that the service accepts. */
|
|
335
|
+
exports.KnownMigrationState = void 0;
|
|
228
336
|
(function (KnownMigrationState) {
|
|
229
337
|
KnownMigrationState["InProgress"] = "InProgress";
|
|
230
338
|
KnownMigrationState["Completed"] = "Completed";
|
|
231
339
|
})(exports.KnownMigrationState || (exports.KnownMigrationState = {}));
|
|
340
|
+
/** Known values of {@link LeaseContainerRequestAction} that the service accepts. */
|
|
341
|
+
exports.KnownLeaseContainerRequestAction = void 0;
|
|
232
342
|
(function (KnownLeaseContainerRequestAction) {
|
|
233
343
|
KnownLeaseContainerRequestAction["Acquire"] = "Acquire";
|
|
234
344
|
KnownLeaseContainerRequestAction["Renew"] = "Renew";
|
|
@@ -236,21 +346,29 @@ var coreLro = require('@azure/core-lro');
|
|
|
236
346
|
KnownLeaseContainerRequestAction["Release"] = "Release";
|
|
237
347
|
KnownLeaseContainerRequestAction["Break"] = "Break";
|
|
238
348
|
})(exports.KnownLeaseContainerRequestAction || (exports.KnownLeaseContainerRequestAction = {}));
|
|
349
|
+
/** Known values of {@link EnabledProtocols} that the service accepts. */
|
|
350
|
+
exports.KnownEnabledProtocols = void 0;
|
|
239
351
|
(function (KnownEnabledProtocols) {
|
|
240
352
|
KnownEnabledProtocols["SMB"] = "SMB";
|
|
241
353
|
KnownEnabledProtocols["NFS"] = "NFS";
|
|
242
354
|
})(exports.KnownEnabledProtocols || (exports.KnownEnabledProtocols = {}));
|
|
355
|
+
/** Known values of {@link RootSquashType} that the service accepts. */
|
|
356
|
+
exports.KnownRootSquashType = void 0;
|
|
243
357
|
(function (KnownRootSquashType) {
|
|
244
358
|
KnownRootSquashType["NoRootSquash"] = "NoRootSquash";
|
|
245
359
|
KnownRootSquashType["RootSquash"] = "RootSquash";
|
|
246
360
|
KnownRootSquashType["AllSquash"] = "AllSquash";
|
|
247
361
|
})(exports.KnownRootSquashType || (exports.KnownRootSquashType = {}));
|
|
362
|
+
/** Known values of {@link ShareAccessTier} that the service accepts. */
|
|
363
|
+
exports.KnownShareAccessTier = void 0;
|
|
248
364
|
(function (KnownShareAccessTier) {
|
|
249
365
|
KnownShareAccessTier["TransactionOptimized"] = "TransactionOptimized";
|
|
250
366
|
KnownShareAccessTier["Hot"] = "Hot";
|
|
251
367
|
KnownShareAccessTier["Cool"] = "Cool";
|
|
252
368
|
KnownShareAccessTier["Premium"] = "Premium";
|
|
253
369
|
})(exports.KnownShareAccessTier || (exports.KnownShareAccessTier = {}));
|
|
370
|
+
/** Known values of {@link LeaseShareAction} that the service accepts. */
|
|
371
|
+
exports.KnownLeaseShareAction = void 0;
|
|
254
372
|
(function (KnownLeaseShareAction) {
|
|
255
373
|
KnownLeaseShareAction["Acquire"] = "Acquire";
|
|
256
374
|
KnownLeaseShareAction["Renew"] = "Renew";
|
|
@@ -6135,12 +6253,12 @@ class OperationsImpl {
|
|
|
6135
6253
|
* @param options The options parameters.
|
|
6136
6254
|
*/
|
|
6137
6255
|
_list(options) {
|
|
6138
|
-
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
6256
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec$f);
|
|
6139
6257
|
}
|
|
6140
6258
|
}
|
|
6141
6259
|
// Operation Specifications
|
|
6142
|
-
const serializer =
|
|
6143
|
-
const listOperationSpec = {
|
|
6260
|
+
const serializer$i = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6261
|
+
const listOperationSpec$f = {
|
|
6144
6262
|
path: "/providers/Microsoft.Storage/operations",
|
|
6145
6263
|
httpMethod: "GET",
|
|
6146
6264
|
responses: {
|
|
@@ -6151,7 +6269,7 @@ const listOperationSpec = {
|
|
|
6151
6269
|
queryParameters: [apiVersion],
|
|
6152
6270
|
urlParameters: [$host],
|
|
6153
6271
|
headerParameters: [accept],
|
|
6154
|
-
serializer
|
|
6272
|
+
serializer: serializer$i
|
|
6155
6273
|
};
|
|
6156
6274
|
|
|
6157
6275
|
/*
|
|
@@ -6218,12 +6336,12 @@ class SkusImpl {
|
|
|
6218
6336
|
* @param options The options parameters.
|
|
6219
6337
|
*/
|
|
6220
6338
|
_list(options) {
|
|
6221
|
-
return this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
6339
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec$e);
|
|
6222
6340
|
}
|
|
6223
6341
|
}
|
|
6224
6342
|
// Operation Specifications
|
|
6225
|
-
const serializer$
|
|
6226
|
-
const listOperationSpec$
|
|
6343
|
+
const serializer$h = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6344
|
+
const listOperationSpec$e = {
|
|
6227
6345
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/skus",
|
|
6228
6346
|
httpMethod: "GET",
|
|
6229
6347
|
responses: {
|
|
@@ -6234,7 +6352,7 @@ const listOperationSpec$1 = {
|
|
|
6234
6352
|
queryParameters: [apiVersion],
|
|
6235
6353
|
urlParameters: [$host, subscriptionId],
|
|
6236
6354
|
headerParameters: [accept],
|
|
6237
|
-
serializer: serializer$
|
|
6355
|
+
serializer: serializer$h
|
|
6238
6356
|
};
|
|
6239
6357
|
|
|
6240
6358
|
/*
|
|
@@ -6429,7 +6547,7 @@ class StorageAccountsImpl {
|
|
|
6429
6547
|
}
|
|
6430
6548
|
};
|
|
6431
6549
|
});
|
|
6432
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, accountName, parameters, options }, createOperationSpec);
|
|
6550
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, accountName, parameters, options }, createOperationSpec$4);
|
|
6433
6551
|
return new coreLro.LroEngine(lro, {
|
|
6434
6552
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
6435
6553
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -6465,7 +6583,7 @@ class StorageAccountsImpl {
|
|
|
6465
6583
|
* @param options The options parameters.
|
|
6466
6584
|
*/
|
|
6467
6585
|
delete(resourceGroupName, accountName, options) {
|
|
6468
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, deleteOperationSpec);
|
|
6586
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, deleteOperationSpec$8);
|
|
6469
6587
|
}
|
|
6470
6588
|
/**
|
|
6471
6589
|
* Returns the properties for the specified storage account including but not limited to name, SKU
|
|
@@ -6497,7 +6615,7 @@ class StorageAccountsImpl {
|
|
|
6497
6615
|
* @param options The options parameters.
|
|
6498
6616
|
*/
|
|
6499
6617
|
update(resourceGroupName, accountName, parameters, options) {
|
|
6500
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, updateOperationSpec);
|
|
6618
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, updateOperationSpec$4);
|
|
6501
6619
|
}
|
|
6502
6620
|
/**
|
|
6503
6621
|
* Lists all the storage accounts available under the subscription. Note that storage keys are not
|
|
@@ -6505,7 +6623,7 @@ class StorageAccountsImpl {
|
|
|
6505
6623
|
* @param options The options parameters.
|
|
6506
6624
|
*/
|
|
6507
6625
|
_list(options) {
|
|
6508
|
-
return this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
6626
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec$d);
|
|
6509
6627
|
}
|
|
6510
6628
|
/**
|
|
6511
6629
|
* Lists all the storage accounts available under the given resource group. Note that storage keys are
|
|
@@ -6826,7 +6944,7 @@ class StorageAccountsImpl {
|
|
|
6826
6944
|
* @param options The options parameters.
|
|
6827
6945
|
*/
|
|
6828
6946
|
_listNext(nextLink, options) {
|
|
6829
|
-
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
|
|
6947
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec$6);
|
|
6830
6948
|
}
|
|
6831
6949
|
/**
|
|
6832
6950
|
* ListByResourceGroupNext
|
|
@@ -6840,7 +6958,7 @@ class StorageAccountsImpl {
|
|
|
6840
6958
|
}
|
|
6841
6959
|
}
|
|
6842
6960
|
// Operation Specifications
|
|
6843
|
-
const serializer$
|
|
6961
|
+
const serializer$g = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6844
6962
|
const checkNameAvailabilityOperationSpec = {
|
|
6845
6963
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/checkNameAvailability",
|
|
6846
6964
|
httpMethod: "POST",
|
|
@@ -6854,9 +6972,9 @@ const checkNameAvailabilityOperationSpec = {
|
|
|
6854
6972
|
urlParameters: [$host, subscriptionId],
|
|
6855
6973
|
headerParameters: [accept, contentType],
|
|
6856
6974
|
mediaType: "json",
|
|
6857
|
-
serializer: serializer$
|
|
6975
|
+
serializer: serializer$g
|
|
6858
6976
|
};
|
|
6859
|
-
const createOperationSpec = {
|
|
6977
|
+
const createOperationSpec$4 = {
|
|
6860
6978
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}",
|
|
6861
6979
|
httpMethod: "PUT",
|
|
6862
6980
|
responses: {
|
|
@@ -6883,9 +7001,9 @@ const createOperationSpec = {
|
|
|
6883
7001
|
],
|
|
6884
7002
|
headerParameters: [accept, contentType],
|
|
6885
7003
|
mediaType: "json",
|
|
6886
|
-
serializer: serializer$
|
|
7004
|
+
serializer: serializer$g
|
|
6887
7005
|
};
|
|
6888
|
-
const deleteOperationSpec = {
|
|
7006
|
+
const deleteOperationSpec$8 = {
|
|
6889
7007
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}",
|
|
6890
7008
|
httpMethod: "DELETE",
|
|
6891
7009
|
responses: { 200: {}, 204: {} },
|
|
@@ -6896,7 +7014,7 @@ const deleteOperationSpec = {
|
|
|
6896
7014
|
resourceGroupName,
|
|
6897
7015
|
accountName1
|
|
6898
7016
|
],
|
|
6899
|
-
serializer: serializer$
|
|
7017
|
+
serializer: serializer$g
|
|
6900
7018
|
};
|
|
6901
7019
|
const getPropertiesOperationSpec = {
|
|
6902
7020
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}",
|
|
@@ -6914,9 +7032,9 @@ const getPropertiesOperationSpec = {
|
|
|
6914
7032
|
accountName1
|
|
6915
7033
|
],
|
|
6916
7034
|
headerParameters: [accept],
|
|
6917
|
-
serializer: serializer$
|
|
7035
|
+
serializer: serializer$g
|
|
6918
7036
|
};
|
|
6919
|
-
const updateOperationSpec = {
|
|
7037
|
+
const updateOperationSpec$4 = {
|
|
6920
7038
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}",
|
|
6921
7039
|
httpMethod: "PATCH",
|
|
6922
7040
|
responses: {
|
|
@@ -6934,9 +7052,9 @@ const updateOperationSpec = {
|
|
|
6934
7052
|
],
|
|
6935
7053
|
headerParameters: [accept, contentType],
|
|
6936
7054
|
mediaType: "json",
|
|
6937
|
-
serializer: serializer$
|
|
7055
|
+
serializer: serializer$g
|
|
6938
7056
|
};
|
|
6939
|
-
const listOperationSpec$
|
|
7057
|
+
const listOperationSpec$d = {
|
|
6940
7058
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts",
|
|
6941
7059
|
httpMethod: "GET",
|
|
6942
7060
|
responses: {
|
|
@@ -6947,7 +7065,7 @@ const listOperationSpec$2 = {
|
|
|
6947
7065
|
queryParameters: [apiVersion],
|
|
6948
7066
|
urlParameters: [$host, subscriptionId],
|
|
6949
7067
|
headerParameters: [accept],
|
|
6950
|
-
serializer: serializer$
|
|
7068
|
+
serializer: serializer$g
|
|
6951
7069
|
};
|
|
6952
7070
|
const listByResourceGroupOperationSpec = {
|
|
6953
7071
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts",
|
|
@@ -6964,7 +7082,7 @@ const listByResourceGroupOperationSpec = {
|
|
|
6964
7082
|
resourceGroupName
|
|
6965
7083
|
],
|
|
6966
7084
|
headerParameters: [accept],
|
|
6967
|
-
serializer: serializer$
|
|
7085
|
+
serializer: serializer$g
|
|
6968
7086
|
};
|
|
6969
7087
|
const listKeysOperationSpec = {
|
|
6970
7088
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/listKeys",
|
|
@@ -6982,7 +7100,7 @@ const listKeysOperationSpec = {
|
|
|
6982
7100
|
accountName1
|
|
6983
7101
|
],
|
|
6984
7102
|
headerParameters: [accept],
|
|
6985
|
-
serializer: serializer$
|
|
7103
|
+
serializer: serializer$g
|
|
6986
7104
|
};
|
|
6987
7105
|
const regenerateKeyOperationSpec = {
|
|
6988
7106
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/regenerateKey",
|
|
@@ -7002,7 +7120,7 @@ const regenerateKeyOperationSpec = {
|
|
|
7002
7120
|
],
|
|
7003
7121
|
headerParameters: [accept, contentType],
|
|
7004
7122
|
mediaType: "json",
|
|
7005
|
-
serializer: serializer$
|
|
7123
|
+
serializer: serializer$g
|
|
7006
7124
|
};
|
|
7007
7125
|
const listAccountSASOperationSpec = {
|
|
7008
7126
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/ListAccountSas",
|
|
@@ -7022,7 +7140,7 @@ const listAccountSASOperationSpec = {
|
|
|
7022
7140
|
],
|
|
7023
7141
|
headerParameters: [accept, contentType],
|
|
7024
7142
|
mediaType: "json",
|
|
7025
|
-
serializer: serializer$
|
|
7143
|
+
serializer: serializer$g
|
|
7026
7144
|
};
|
|
7027
7145
|
const listServiceSASOperationSpec = {
|
|
7028
7146
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/ListServiceSas",
|
|
@@ -7042,7 +7160,7 @@ const listServiceSASOperationSpec = {
|
|
|
7042
7160
|
],
|
|
7043
7161
|
headerParameters: [accept, contentType],
|
|
7044
7162
|
mediaType: "json",
|
|
7045
|
-
serializer: serializer$
|
|
7163
|
+
serializer: serializer$g
|
|
7046
7164
|
};
|
|
7047
7165
|
const failoverOperationSpec = {
|
|
7048
7166
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/failover",
|
|
@@ -7055,7 +7173,7 @@ const failoverOperationSpec = {
|
|
|
7055
7173
|
resourceGroupName,
|
|
7056
7174
|
accountName1
|
|
7057
7175
|
],
|
|
7058
|
-
serializer: serializer$
|
|
7176
|
+
serializer: serializer$g
|
|
7059
7177
|
};
|
|
7060
7178
|
const hierarchicalNamespaceMigrationOperationSpec = {
|
|
7061
7179
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/hnsonmigration",
|
|
@@ -7077,7 +7195,7 @@ const hierarchicalNamespaceMigrationOperationSpec = {
|
|
|
7077
7195
|
accountName1
|
|
7078
7196
|
],
|
|
7079
7197
|
headerParameters: [accept],
|
|
7080
|
-
serializer: serializer$
|
|
7198
|
+
serializer: serializer$g
|
|
7081
7199
|
};
|
|
7082
7200
|
const abortHierarchicalNamespaceMigrationOperationSpec = {
|
|
7083
7201
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/aborthnsonmigration",
|
|
@@ -7099,7 +7217,7 @@ const abortHierarchicalNamespaceMigrationOperationSpec = {
|
|
|
7099
7217
|
accountName1
|
|
7100
7218
|
],
|
|
7101
7219
|
headerParameters: [accept],
|
|
7102
|
-
serializer: serializer$
|
|
7220
|
+
serializer: serializer$g
|
|
7103
7221
|
};
|
|
7104
7222
|
const restoreBlobRangesOperationSpec = {
|
|
7105
7223
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/restoreBlobRanges",
|
|
@@ -7128,7 +7246,7 @@ const restoreBlobRangesOperationSpec = {
|
|
|
7128
7246
|
],
|
|
7129
7247
|
headerParameters: [accept, contentType],
|
|
7130
7248
|
mediaType: "json",
|
|
7131
|
-
serializer: serializer$
|
|
7249
|
+
serializer: serializer$g
|
|
7132
7250
|
};
|
|
7133
7251
|
const revokeUserDelegationKeysOperationSpec = {
|
|
7134
7252
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/revokeUserDelegationKeys",
|
|
@@ -7141,9 +7259,9 @@ const revokeUserDelegationKeysOperationSpec = {
|
|
|
7141
7259
|
resourceGroupName,
|
|
7142
7260
|
accountName1
|
|
7143
7261
|
],
|
|
7144
|
-
serializer: serializer$
|
|
7262
|
+
serializer: serializer$g
|
|
7145
7263
|
};
|
|
7146
|
-
const listNextOperationSpec = {
|
|
7264
|
+
const listNextOperationSpec$6 = {
|
|
7147
7265
|
path: "{nextLink}",
|
|
7148
7266
|
httpMethod: "GET",
|
|
7149
7267
|
responses: {
|
|
@@ -7158,7 +7276,7 @@ const listNextOperationSpec = {
|
|
|
7158
7276
|
nextLink
|
|
7159
7277
|
],
|
|
7160
7278
|
headerParameters: [accept],
|
|
7161
|
-
serializer: serializer$
|
|
7279
|
+
serializer: serializer$g
|
|
7162
7280
|
};
|
|
7163
7281
|
const listByResourceGroupNextOperationSpec = {
|
|
7164
7282
|
path: "{nextLink}",
|
|
@@ -7176,7 +7294,7 @@ const listByResourceGroupNextOperationSpec = {
|
|
|
7176
7294
|
nextLink
|
|
7177
7295
|
],
|
|
7178
7296
|
headerParameters: [accept],
|
|
7179
|
-
serializer: serializer$
|
|
7297
|
+
serializer: serializer$g
|
|
7180
7298
|
};
|
|
7181
7299
|
|
|
7182
7300
|
/*
|
|
@@ -7249,7 +7367,7 @@ class DeletedAccountsImpl {
|
|
|
7249
7367
|
* @param options The options parameters.
|
|
7250
7368
|
*/
|
|
7251
7369
|
_list(options) {
|
|
7252
|
-
return this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
7370
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec$c);
|
|
7253
7371
|
}
|
|
7254
7372
|
/**
|
|
7255
7373
|
* Get properties of specified deleted account resource.
|
|
@@ -7258,7 +7376,7 @@ class DeletedAccountsImpl {
|
|
|
7258
7376
|
* @param options The options parameters.
|
|
7259
7377
|
*/
|
|
7260
7378
|
get(deletedAccountName, location, options) {
|
|
7261
|
-
return this.client.sendOperationRequest({ deletedAccountName, location, options }, getOperationSpec);
|
|
7379
|
+
return this.client.sendOperationRequest({ deletedAccountName, location, options }, getOperationSpec$9);
|
|
7262
7380
|
}
|
|
7263
7381
|
/**
|
|
7264
7382
|
* ListNext
|
|
@@ -7266,12 +7384,12 @@ class DeletedAccountsImpl {
|
|
|
7266
7384
|
* @param options The options parameters.
|
|
7267
7385
|
*/
|
|
7268
7386
|
_listNext(nextLink, options) {
|
|
7269
|
-
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec$
|
|
7387
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec$5);
|
|
7270
7388
|
}
|
|
7271
7389
|
}
|
|
7272
7390
|
// Operation Specifications
|
|
7273
|
-
const serializer$
|
|
7274
|
-
const listOperationSpec$
|
|
7391
|
+
const serializer$f = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7392
|
+
const listOperationSpec$c = {
|
|
7275
7393
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/deletedAccounts",
|
|
7276
7394
|
httpMethod: "GET",
|
|
7277
7395
|
responses: {
|
|
@@ -7285,9 +7403,9 @@ const listOperationSpec$3 = {
|
|
|
7285
7403
|
queryParameters: [apiVersion],
|
|
7286
7404
|
urlParameters: [$host, subscriptionId],
|
|
7287
7405
|
headerParameters: [accept],
|
|
7288
|
-
serializer: serializer$
|
|
7406
|
+
serializer: serializer$f
|
|
7289
7407
|
};
|
|
7290
|
-
const getOperationSpec = {
|
|
7408
|
+
const getOperationSpec$9 = {
|
|
7291
7409
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/locations/{location}/deletedAccounts/{deletedAccountName}",
|
|
7292
7410
|
httpMethod: "GET",
|
|
7293
7411
|
responses: {
|
|
@@ -7306,9 +7424,9 @@ const getOperationSpec = {
|
|
|
7306
7424
|
location
|
|
7307
7425
|
],
|
|
7308
7426
|
headerParameters: [accept],
|
|
7309
|
-
serializer: serializer$
|
|
7427
|
+
serializer: serializer$f
|
|
7310
7428
|
};
|
|
7311
|
-
const listNextOperationSpec$
|
|
7429
|
+
const listNextOperationSpec$5 = {
|
|
7312
7430
|
path: "{nextLink}",
|
|
7313
7431
|
httpMethod: "GET",
|
|
7314
7432
|
responses: {
|
|
@@ -7326,7 +7444,7 @@ const listNextOperationSpec$1 = {
|
|
|
7326
7444
|
nextLink
|
|
7327
7445
|
],
|
|
7328
7446
|
headerParameters: [accept],
|
|
7329
|
-
serializer: serializer$
|
|
7447
|
+
serializer: serializer$f
|
|
7330
7448
|
};
|
|
7331
7449
|
|
|
7332
7450
|
/*
|
|
@@ -7399,7 +7517,7 @@ class UsagesImpl {
|
|
|
7399
7517
|
}
|
|
7400
7518
|
}
|
|
7401
7519
|
// Operation Specifications
|
|
7402
|
-
const serializer$
|
|
7520
|
+
const serializer$e = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7403
7521
|
const listByLocationOperationSpec = {
|
|
7404
7522
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/locations/{location}/usages",
|
|
7405
7523
|
httpMethod: "GET",
|
|
@@ -7415,7 +7533,7 @@ const listByLocationOperationSpec = {
|
|
|
7415
7533
|
location
|
|
7416
7534
|
],
|
|
7417
7535
|
headerParameters: [accept],
|
|
7418
|
-
serializer: serializer$
|
|
7536
|
+
serializer: serializer$e
|
|
7419
7537
|
};
|
|
7420
7538
|
|
|
7421
7539
|
/*
|
|
@@ -7446,7 +7564,7 @@ class ManagementPoliciesImpl {
|
|
|
7446
7564
|
* @param options The options parameters.
|
|
7447
7565
|
*/
|
|
7448
7566
|
get(resourceGroupName, accountName, managementPolicyName, options) {
|
|
7449
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, managementPolicyName, options }, getOperationSpec$
|
|
7567
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, managementPolicyName, options }, getOperationSpec$8);
|
|
7450
7568
|
}
|
|
7451
7569
|
/**
|
|
7452
7570
|
* Sets the managementpolicy to the specified storage account.
|
|
@@ -7467,7 +7585,7 @@ class ManagementPoliciesImpl {
|
|
|
7467
7585
|
managementPolicyName,
|
|
7468
7586
|
properties,
|
|
7469
7587
|
options
|
|
7470
|
-
}, createOrUpdateOperationSpec);
|
|
7588
|
+
}, createOrUpdateOperationSpec$2);
|
|
7471
7589
|
}
|
|
7472
7590
|
/**
|
|
7473
7591
|
* Deletes the managementpolicy associated with the specified storage account.
|
|
@@ -7481,12 +7599,12 @@ class ManagementPoliciesImpl {
|
|
|
7481
7599
|
* @param options The options parameters.
|
|
7482
7600
|
*/
|
|
7483
7601
|
delete(resourceGroupName, accountName, managementPolicyName, options) {
|
|
7484
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, managementPolicyName, options }, deleteOperationSpec$
|
|
7602
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, managementPolicyName, options }, deleteOperationSpec$7);
|
|
7485
7603
|
}
|
|
7486
7604
|
}
|
|
7487
7605
|
// Operation Specifications
|
|
7488
|
-
const serializer$
|
|
7489
|
-
const getOperationSpec$
|
|
7606
|
+
const serializer$d = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7607
|
+
const getOperationSpec$8 = {
|
|
7490
7608
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}",
|
|
7491
7609
|
httpMethod: "GET",
|
|
7492
7610
|
responses: {
|
|
@@ -7503,9 +7621,9 @@ const getOperationSpec$1 = {
|
|
|
7503
7621
|
managementPolicyName
|
|
7504
7622
|
],
|
|
7505
7623
|
headerParameters: [accept],
|
|
7506
|
-
serializer: serializer$
|
|
7624
|
+
serializer: serializer$d
|
|
7507
7625
|
};
|
|
7508
|
-
const createOrUpdateOperationSpec = {
|
|
7626
|
+
const createOrUpdateOperationSpec$2 = {
|
|
7509
7627
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}",
|
|
7510
7628
|
httpMethod: "PUT",
|
|
7511
7629
|
responses: {
|
|
@@ -7524,9 +7642,9 @@ const createOrUpdateOperationSpec = {
|
|
|
7524
7642
|
],
|
|
7525
7643
|
headerParameters: [accept, contentType],
|
|
7526
7644
|
mediaType: "json",
|
|
7527
|
-
serializer: serializer$
|
|
7645
|
+
serializer: serializer$d
|
|
7528
7646
|
};
|
|
7529
|
-
const deleteOperationSpec$
|
|
7647
|
+
const deleteOperationSpec$7 = {
|
|
7530
7648
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}",
|
|
7531
7649
|
httpMethod: "DELETE",
|
|
7532
7650
|
responses: { 200: {}, 204: {} },
|
|
@@ -7538,7 +7656,7 @@ const deleteOperationSpec$1 = {
|
|
|
7538
7656
|
accountName1,
|
|
7539
7657
|
managementPolicyName
|
|
7540
7658
|
],
|
|
7541
|
-
serializer: serializer$
|
|
7659
|
+
serializer: serializer$d
|
|
7542
7660
|
};
|
|
7543
7661
|
|
|
7544
7662
|
/*
|
|
@@ -7617,7 +7735,7 @@ class BlobInventoryPoliciesImpl {
|
|
|
7617
7735
|
* @param options The options parameters.
|
|
7618
7736
|
*/
|
|
7619
7737
|
get(resourceGroupName, accountName, blobInventoryPolicyName, options) {
|
|
7620
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, blobInventoryPolicyName, options }, getOperationSpec$
|
|
7738
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, blobInventoryPolicyName, options }, getOperationSpec$7);
|
|
7621
7739
|
}
|
|
7622
7740
|
/**
|
|
7623
7741
|
* Sets the blob inventory policy to the specified storage account.
|
|
@@ -7652,7 +7770,7 @@ class BlobInventoryPoliciesImpl {
|
|
|
7652
7770
|
* @param options The options parameters.
|
|
7653
7771
|
*/
|
|
7654
7772
|
delete(resourceGroupName, accountName, blobInventoryPolicyName, options) {
|
|
7655
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, blobInventoryPolicyName, options }, deleteOperationSpec$
|
|
7773
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, blobInventoryPolicyName, options }, deleteOperationSpec$6);
|
|
7656
7774
|
}
|
|
7657
7775
|
/**
|
|
7658
7776
|
* Gets the blob inventory policy associated with the specified storage account.
|
|
@@ -7664,12 +7782,12 @@ class BlobInventoryPoliciesImpl {
|
|
|
7664
7782
|
* @param options The options parameters.
|
|
7665
7783
|
*/
|
|
7666
7784
|
_list(resourceGroupName, accountName, options) {
|
|
7667
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
7785
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$b);
|
|
7668
7786
|
}
|
|
7669
7787
|
}
|
|
7670
7788
|
// Operation Specifications
|
|
7671
|
-
const serializer$
|
|
7672
|
-
const getOperationSpec$
|
|
7789
|
+
const serializer$c = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7790
|
+
const getOperationSpec$7 = {
|
|
7673
7791
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/inventoryPolicies/{blobInventoryPolicyName}",
|
|
7674
7792
|
httpMethod: "GET",
|
|
7675
7793
|
responses: {
|
|
@@ -7689,7 +7807,7 @@ const getOperationSpec$2 = {
|
|
|
7689
7807
|
blobInventoryPolicyName
|
|
7690
7808
|
],
|
|
7691
7809
|
headerParameters: [accept],
|
|
7692
|
-
serializer: serializer$
|
|
7810
|
+
serializer: serializer$c
|
|
7693
7811
|
};
|
|
7694
7812
|
const createOrUpdateOperationSpec$1 = {
|
|
7695
7813
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/inventoryPolicies/{blobInventoryPolicyName}",
|
|
@@ -7713,9 +7831,9 @@ const createOrUpdateOperationSpec$1 = {
|
|
|
7713
7831
|
],
|
|
7714
7832
|
headerParameters: [accept, contentType],
|
|
7715
7833
|
mediaType: "json",
|
|
7716
|
-
serializer: serializer$
|
|
7834
|
+
serializer: serializer$c
|
|
7717
7835
|
};
|
|
7718
|
-
const deleteOperationSpec$
|
|
7836
|
+
const deleteOperationSpec$6 = {
|
|
7719
7837
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/inventoryPolicies/{blobInventoryPolicyName}",
|
|
7720
7838
|
httpMethod: "DELETE",
|
|
7721
7839
|
responses: {
|
|
@@ -7734,9 +7852,9 @@ const deleteOperationSpec$2 = {
|
|
|
7734
7852
|
blobInventoryPolicyName
|
|
7735
7853
|
],
|
|
7736
7854
|
headerParameters: [accept],
|
|
7737
|
-
serializer: serializer$
|
|
7855
|
+
serializer: serializer$c
|
|
7738
7856
|
};
|
|
7739
|
-
const listOperationSpec$
|
|
7857
|
+
const listOperationSpec$b = {
|
|
7740
7858
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/inventoryPolicies",
|
|
7741
7859
|
httpMethod: "GET",
|
|
7742
7860
|
responses: {
|
|
@@ -7755,7 +7873,7 @@ const listOperationSpec$4 = {
|
|
|
7755
7873
|
accountName1
|
|
7756
7874
|
],
|
|
7757
7875
|
headerParameters: [accept],
|
|
7758
|
-
serializer: serializer$
|
|
7876
|
+
serializer: serializer$c
|
|
7759
7877
|
};
|
|
7760
7878
|
|
|
7761
7879
|
/*
|
|
@@ -7832,7 +7950,7 @@ class PrivateEndpointConnectionsImpl {
|
|
|
7832
7950
|
* @param options The options parameters.
|
|
7833
7951
|
*/
|
|
7834
7952
|
_list(resourceGroupName, accountName, options) {
|
|
7835
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
7953
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$a);
|
|
7836
7954
|
}
|
|
7837
7955
|
/**
|
|
7838
7956
|
* Gets the specified private endpoint connection associated with the storage account.
|
|
@@ -7851,7 +7969,7 @@ class PrivateEndpointConnectionsImpl {
|
|
|
7851
7969
|
accountName,
|
|
7852
7970
|
privateEndpointConnectionName,
|
|
7853
7971
|
options
|
|
7854
|
-
}, getOperationSpec$
|
|
7972
|
+
}, getOperationSpec$6);
|
|
7855
7973
|
}
|
|
7856
7974
|
/**
|
|
7857
7975
|
* Update the state of specified private endpoint connection associated with the storage account.
|
|
@@ -7872,7 +7990,7 @@ class PrivateEndpointConnectionsImpl {
|
|
|
7872
7990
|
privateEndpointConnectionName,
|
|
7873
7991
|
properties,
|
|
7874
7992
|
options
|
|
7875
|
-
}, putOperationSpec);
|
|
7993
|
+
}, putOperationSpec$1);
|
|
7876
7994
|
}
|
|
7877
7995
|
/**
|
|
7878
7996
|
* Deletes the specified private endpoint connection associated with the storage account.
|
|
@@ -7891,12 +8009,12 @@ class PrivateEndpointConnectionsImpl {
|
|
|
7891
8009
|
accountName,
|
|
7892
8010
|
privateEndpointConnectionName,
|
|
7893
8011
|
options
|
|
7894
|
-
}, deleteOperationSpec$
|
|
8012
|
+
}, deleteOperationSpec$5);
|
|
7895
8013
|
}
|
|
7896
8014
|
}
|
|
7897
8015
|
// Operation Specifications
|
|
7898
|
-
const serializer$
|
|
7899
|
-
const listOperationSpec$
|
|
8016
|
+
const serializer$b = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8017
|
+
const listOperationSpec$a = {
|
|
7900
8018
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/privateEndpointConnections",
|
|
7901
8019
|
httpMethod: "GET",
|
|
7902
8020
|
responses: {
|
|
@@ -7912,9 +8030,9 @@ const listOperationSpec$5 = {
|
|
|
7912
8030
|
accountName1
|
|
7913
8031
|
],
|
|
7914
8032
|
headerParameters: [accept],
|
|
7915
|
-
serializer: serializer$
|
|
8033
|
+
serializer: serializer$b
|
|
7916
8034
|
};
|
|
7917
|
-
const getOperationSpec$
|
|
8035
|
+
const getOperationSpec$6 = {
|
|
7918
8036
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}",
|
|
7919
8037
|
httpMethod: "GET",
|
|
7920
8038
|
responses: {
|
|
@@ -7934,9 +8052,9 @@ const getOperationSpec$3 = {
|
|
|
7934
8052
|
privateEndpointConnectionName
|
|
7935
8053
|
],
|
|
7936
8054
|
headerParameters: [accept],
|
|
7937
|
-
serializer: serializer$
|
|
8055
|
+
serializer: serializer$b
|
|
7938
8056
|
};
|
|
7939
|
-
const putOperationSpec = {
|
|
8057
|
+
const putOperationSpec$1 = {
|
|
7940
8058
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}",
|
|
7941
8059
|
httpMethod: "PUT",
|
|
7942
8060
|
responses: {
|
|
@@ -7958,9 +8076,9 @@ const putOperationSpec = {
|
|
|
7958
8076
|
],
|
|
7959
8077
|
headerParameters: [accept, contentType],
|
|
7960
8078
|
mediaType: "json",
|
|
7961
|
-
serializer: serializer$
|
|
8079
|
+
serializer: serializer$b
|
|
7962
8080
|
};
|
|
7963
|
-
const deleteOperationSpec$
|
|
8081
|
+
const deleteOperationSpec$5 = {
|
|
7964
8082
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}",
|
|
7965
8083
|
httpMethod: "DELETE",
|
|
7966
8084
|
responses: {
|
|
@@ -7979,7 +8097,7 @@ const deleteOperationSpec$3 = {
|
|
|
7979
8097
|
privateEndpointConnectionName
|
|
7980
8098
|
],
|
|
7981
8099
|
headerParameters: [accept],
|
|
7982
|
-
serializer: serializer$
|
|
8100
|
+
serializer: serializer$b
|
|
7983
8101
|
};
|
|
7984
8102
|
|
|
7985
8103
|
/*
|
|
@@ -8012,7 +8130,7 @@ class PrivateLinkResourcesImpl {
|
|
|
8012
8130
|
}
|
|
8013
8131
|
}
|
|
8014
8132
|
// Operation Specifications
|
|
8015
|
-
const serializer$
|
|
8133
|
+
const serializer$a = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8016
8134
|
const listByStorageAccountOperationSpec = {
|
|
8017
8135
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/privateLinkResources",
|
|
8018
8136
|
httpMethod: "GET",
|
|
@@ -8029,7 +8147,7 @@ const listByStorageAccountOperationSpec = {
|
|
|
8029
8147
|
accountName1
|
|
8030
8148
|
],
|
|
8031
8149
|
headerParameters: [accept],
|
|
8032
|
-
serializer: serializer$
|
|
8150
|
+
serializer: serializer$a
|
|
8033
8151
|
};
|
|
8034
8152
|
|
|
8035
8153
|
/*
|
|
@@ -8106,7 +8224,7 @@ class ObjectReplicationPoliciesOperationsImpl {
|
|
|
8106
8224
|
* @param options The options parameters.
|
|
8107
8225
|
*/
|
|
8108
8226
|
_list(resourceGroupName, accountName, options) {
|
|
8109
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
8227
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$9);
|
|
8110
8228
|
}
|
|
8111
8229
|
/**
|
|
8112
8230
|
* Get the object replication policy of the storage account by policy ID.
|
|
@@ -8122,7 +8240,7 @@ class ObjectReplicationPoliciesOperationsImpl {
|
|
|
8122
8240
|
* @param options The options parameters.
|
|
8123
8241
|
*/
|
|
8124
8242
|
get(resourceGroupName, accountName, objectReplicationPolicyId, options) {
|
|
8125
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, objectReplicationPolicyId, options }, getOperationSpec$
|
|
8243
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, objectReplicationPolicyId, options }, getOperationSpec$5);
|
|
8126
8244
|
}
|
|
8127
8245
|
/**
|
|
8128
8246
|
* Create or update the object replication policy of the storage account.
|
|
@@ -8146,7 +8264,7 @@ class ObjectReplicationPoliciesOperationsImpl {
|
|
|
8146
8264
|
objectReplicationPolicyId,
|
|
8147
8265
|
properties,
|
|
8148
8266
|
options
|
|
8149
|
-
}, createOrUpdateOperationSpec
|
|
8267
|
+
}, createOrUpdateOperationSpec);
|
|
8150
8268
|
}
|
|
8151
8269
|
/**
|
|
8152
8270
|
* Deletes the object replication policy associated with the specified storage account.
|
|
@@ -8166,8 +8284,8 @@ class ObjectReplicationPoliciesOperationsImpl {
|
|
|
8166
8284
|
}
|
|
8167
8285
|
}
|
|
8168
8286
|
// Operation Specifications
|
|
8169
|
-
const serializer$9 =
|
|
8170
|
-
const listOperationSpec$
|
|
8287
|
+
const serializer$9 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8288
|
+
const listOperationSpec$9 = {
|
|
8171
8289
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/objectReplicationPolicies",
|
|
8172
8290
|
httpMethod: "GET",
|
|
8173
8291
|
responses: {
|
|
@@ -8188,7 +8306,7 @@ const listOperationSpec$6 = {
|
|
|
8188
8306
|
headerParameters: [accept],
|
|
8189
8307
|
serializer: serializer$9
|
|
8190
8308
|
};
|
|
8191
|
-
const getOperationSpec$
|
|
8309
|
+
const getOperationSpec$5 = {
|
|
8192
8310
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/objectReplicationPolicies/{objectReplicationPolicyId}",
|
|
8193
8311
|
httpMethod: "GET",
|
|
8194
8312
|
responses: {
|
|
@@ -8210,7 +8328,7 @@ const getOperationSpec$4 = {
|
|
|
8210
8328
|
headerParameters: [accept],
|
|
8211
8329
|
serializer: serializer$9
|
|
8212
8330
|
};
|
|
8213
|
-
const createOrUpdateOperationSpec
|
|
8331
|
+
const createOrUpdateOperationSpec = {
|
|
8214
8332
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/objectReplicationPolicies/{objectReplicationPolicyId}",
|
|
8215
8333
|
httpMethod: "PUT",
|
|
8216
8334
|
responses: {
|
|
@@ -8349,7 +8467,7 @@ class EncryptionScopesImpl {
|
|
|
8349
8467
|
encryptionScopeName,
|
|
8350
8468
|
encryptionScope,
|
|
8351
8469
|
options
|
|
8352
|
-
}, putOperationSpec
|
|
8470
|
+
}, putOperationSpec);
|
|
8353
8471
|
}
|
|
8354
8472
|
/**
|
|
8355
8473
|
* Update encryption scope properties as specified in the request body. Update fails if the specified
|
|
@@ -8389,7 +8507,7 @@ class EncryptionScopesImpl {
|
|
|
8389
8507
|
* @param options The options parameters.
|
|
8390
8508
|
*/
|
|
8391
8509
|
get(resourceGroupName, accountName, encryptionScopeName, options) {
|
|
8392
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, encryptionScopeName, options }, getOperationSpec$
|
|
8510
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, encryptionScopeName, options }, getOperationSpec$4);
|
|
8393
8511
|
}
|
|
8394
8512
|
/**
|
|
8395
8513
|
* Lists all the encryption scopes available under the specified storage account.
|
|
@@ -8401,7 +8519,7 @@ class EncryptionScopesImpl {
|
|
|
8401
8519
|
* @param options The options parameters.
|
|
8402
8520
|
*/
|
|
8403
8521
|
_list(resourceGroupName, accountName, options) {
|
|
8404
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
8522
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$8);
|
|
8405
8523
|
}
|
|
8406
8524
|
/**
|
|
8407
8525
|
* ListNext
|
|
@@ -8414,12 +8532,12 @@ class EncryptionScopesImpl {
|
|
|
8414
8532
|
* @param options The options parameters.
|
|
8415
8533
|
*/
|
|
8416
8534
|
_listNext(resourceGroupName, accountName, nextLink, options) {
|
|
8417
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$
|
|
8535
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$4);
|
|
8418
8536
|
}
|
|
8419
8537
|
}
|
|
8420
8538
|
// Operation Specifications
|
|
8421
|
-
const serializer$
|
|
8422
|
-
const putOperationSpec
|
|
8539
|
+
const serializer$8 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8540
|
+
const putOperationSpec = {
|
|
8423
8541
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}",
|
|
8424
8542
|
httpMethod: "PUT",
|
|
8425
8543
|
responses: {
|
|
@@ -8444,7 +8562,7 @@ const putOperationSpec$1 = {
|
|
|
8444
8562
|
],
|
|
8445
8563
|
headerParameters: [accept, contentType],
|
|
8446
8564
|
mediaType: "json",
|
|
8447
|
-
serializer: serializer$
|
|
8565
|
+
serializer: serializer$8
|
|
8448
8566
|
};
|
|
8449
8567
|
const patchOperationSpec = {
|
|
8450
8568
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}",
|
|
@@ -8468,9 +8586,9 @@ const patchOperationSpec = {
|
|
|
8468
8586
|
],
|
|
8469
8587
|
headerParameters: [accept, contentType],
|
|
8470
8588
|
mediaType: "json",
|
|
8471
|
-
serializer: serializer$
|
|
8589
|
+
serializer: serializer$8
|
|
8472
8590
|
};
|
|
8473
|
-
const getOperationSpec$
|
|
8591
|
+
const getOperationSpec$4 = {
|
|
8474
8592
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}",
|
|
8475
8593
|
httpMethod: "GET",
|
|
8476
8594
|
responses: {
|
|
@@ -8490,9 +8608,9 @@ const getOperationSpec$5 = {
|
|
|
8490
8608
|
encryptionScopeName
|
|
8491
8609
|
],
|
|
8492
8610
|
headerParameters: [accept],
|
|
8493
|
-
serializer: serializer$
|
|
8611
|
+
serializer: serializer$8
|
|
8494
8612
|
};
|
|
8495
|
-
const listOperationSpec$
|
|
8613
|
+
const listOperationSpec$8 = {
|
|
8496
8614
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes",
|
|
8497
8615
|
httpMethod: "GET",
|
|
8498
8616
|
responses: {
|
|
@@ -8508,9 +8626,9 @@ const listOperationSpec$7 = {
|
|
|
8508
8626
|
accountName1
|
|
8509
8627
|
],
|
|
8510
8628
|
headerParameters: [accept],
|
|
8511
|
-
serializer: serializer$
|
|
8629
|
+
serializer: serializer$8
|
|
8512
8630
|
};
|
|
8513
|
-
const listNextOperationSpec$
|
|
8631
|
+
const listNextOperationSpec$4 = {
|
|
8514
8632
|
path: "{nextLink}",
|
|
8515
8633
|
httpMethod: "GET",
|
|
8516
8634
|
responses: {
|
|
@@ -8527,7 +8645,7 @@ const listNextOperationSpec$2 = {
|
|
|
8527
8645
|
nextLink
|
|
8528
8646
|
],
|
|
8529
8647
|
headerParameters: [accept],
|
|
8530
|
-
serializer: serializer$
|
|
8648
|
+
serializer: serializer$8
|
|
8531
8649
|
};
|
|
8532
8650
|
|
|
8533
8651
|
/*
|
|
@@ -8604,7 +8722,7 @@ class BlobServicesImpl {
|
|
|
8604
8722
|
* @param options The options parameters.
|
|
8605
8723
|
*/
|
|
8606
8724
|
_list(resourceGroupName, accountName, options) {
|
|
8607
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
8725
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$7);
|
|
8608
8726
|
}
|
|
8609
8727
|
/**
|
|
8610
8728
|
* Sets the properties of a storage account’s Blob service, including properties for Storage Analytics
|
|
@@ -8619,7 +8737,7 @@ class BlobServicesImpl {
|
|
|
8619
8737
|
* @param options The options parameters.
|
|
8620
8738
|
*/
|
|
8621
8739
|
setServiceProperties(resourceGroupName, accountName, parameters, options) {
|
|
8622
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec);
|
|
8740
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec$3);
|
|
8623
8741
|
}
|
|
8624
8742
|
/**
|
|
8625
8743
|
* Gets the properties of a storage account’s Blob service, including properties for Storage Analytics
|
|
@@ -8632,12 +8750,12 @@ class BlobServicesImpl {
|
|
|
8632
8750
|
* @param options The options parameters.
|
|
8633
8751
|
*/
|
|
8634
8752
|
getServiceProperties(resourceGroupName, accountName, options) {
|
|
8635
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec);
|
|
8753
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec$3);
|
|
8636
8754
|
}
|
|
8637
8755
|
}
|
|
8638
8756
|
// Operation Specifications
|
|
8639
|
-
const serializer$
|
|
8640
|
-
const listOperationSpec$
|
|
8757
|
+
const serializer$7 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8758
|
+
const listOperationSpec$7 = {
|
|
8641
8759
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices",
|
|
8642
8760
|
httpMethod: "GET",
|
|
8643
8761
|
responses: {
|
|
@@ -8653,9 +8771,9 @@ const listOperationSpec$8 = {
|
|
|
8653
8771
|
accountName1
|
|
8654
8772
|
],
|
|
8655
8773
|
headerParameters: [accept],
|
|
8656
|
-
serializer: serializer$
|
|
8774
|
+
serializer: serializer$7
|
|
8657
8775
|
};
|
|
8658
|
-
const setServicePropertiesOperationSpec = {
|
|
8776
|
+
const setServicePropertiesOperationSpec$3 = {
|
|
8659
8777
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}",
|
|
8660
8778
|
httpMethod: "PUT",
|
|
8661
8779
|
responses: {
|
|
@@ -8674,9 +8792,9 @@ const setServicePropertiesOperationSpec = {
|
|
|
8674
8792
|
],
|
|
8675
8793
|
headerParameters: [accept, contentType],
|
|
8676
8794
|
mediaType: "json",
|
|
8677
|
-
serializer: serializer$
|
|
8795
|
+
serializer: serializer$7
|
|
8678
8796
|
};
|
|
8679
|
-
const getServicePropertiesOperationSpec = {
|
|
8797
|
+
const getServicePropertiesOperationSpec$3 = {
|
|
8680
8798
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/{BlobServicesName}",
|
|
8681
8799
|
httpMethod: "GET",
|
|
8682
8800
|
responses: {
|
|
@@ -8693,7 +8811,7 @@ const getServicePropertiesOperationSpec = {
|
|
|
8693
8811
|
blobServicesName
|
|
8694
8812
|
],
|
|
8695
8813
|
headerParameters: [accept],
|
|
8696
|
-
serializer: serializer$
|
|
8814
|
+
serializer: serializer$7
|
|
8697
8815
|
};
|
|
8698
8816
|
|
|
8699
8817
|
/*
|
|
@@ -8778,7 +8896,7 @@ class BlobContainersImpl {
|
|
|
8778
8896
|
* @param options The options parameters.
|
|
8779
8897
|
*/
|
|
8780
8898
|
_list(resourceGroupName, accountName, options) {
|
|
8781
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
8899
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$6);
|
|
8782
8900
|
}
|
|
8783
8901
|
/**
|
|
8784
8902
|
* Creates a new container under the specified account as described by request body. The container
|
|
@@ -8797,7 +8915,7 @@ class BlobContainersImpl {
|
|
|
8797
8915
|
* @param options The options parameters.
|
|
8798
8916
|
*/
|
|
8799
8917
|
create(resourceGroupName, accountName, containerName, blobContainer, options) {
|
|
8800
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, blobContainer, options }, createOperationSpec$
|
|
8918
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, blobContainer, options }, createOperationSpec$3);
|
|
8801
8919
|
}
|
|
8802
8920
|
/**
|
|
8803
8921
|
* Updates container properties as specified in request body. Properties not mentioned in the request
|
|
@@ -8815,7 +8933,7 @@ class BlobContainersImpl {
|
|
|
8815
8933
|
* @param options The options parameters.
|
|
8816
8934
|
*/
|
|
8817
8935
|
update(resourceGroupName, accountName, containerName, blobContainer, options) {
|
|
8818
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, blobContainer, options }, updateOperationSpec$
|
|
8936
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, blobContainer, options }, updateOperationSpec$3);
|
|
8819
8937
|
}
|
|
8820
8938
|
/**
|
|
8821
8939
|
* Gets properties of a specified container.
|
|
@@ -8831,7 +8949,7 @@ class BlobContainersImpl {
|
|
|
8831
8949
|
* @param options The options parameters.
|
|
8832
8950
|
*/
|
|
8833
8951
|
get(resourceGroupName, accountName, containerName, options) {
|
|
8834
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, getOperationSpec$
|
|
8952
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, getOperationSpec$3);
|
|
8835
8953
|
}
|
|
8836
8954
|
/**
|
|
8837
8955
|
* Deletes specified container under its account.
|
|
@@ -8847,7 +8965,7 @@ class BlobContainersImpl {
|
|
|
8847
8965
|
* @param options The options parameters.
|
|
8848
8966
|
*/
|
|
8849
8967
|
delete(resourceGroupName, accountName, containerName, options) {
|
|
8850
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, deleteOperationSpec$
|
|
8968
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, deleteOperationSpec$3);
|
|
8851
8969
|
}
|
|
8852
8970
|
/**
|
|
8853
8971
|
* Sets legal hold tags. Setting the same tag results in an idempotent operation. SetLegalHold follows
|
|
@@ -8996,7 +9114,7 @@ class BlobContainersImpl {
|
|
|
8996
9114
|
* @param options The options parameters.
|
|
8997
9115
|
*/
|
|
8998
9116
|
lease(resourceGroupName, accountName, containerName, options) {
|
|
8999
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, leaseOperationSpec);
|
|
9117
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, containerName, options }, leaseOperationSpec$1);
|
|
9000
9118
|
}
|
|
9001
9119
|
/**
|
|
9002
9120
|
* This operation migrates a blob container from container level WORM to object level immutability
|
|
@@ -9083,8 +9201,8 @@ class BlobContainersImpl {
|
|
|
9083
9201
|
}
|
|
9084
9202
|
}
|
|
9085
9203
|
// Operation Specifications
|
|
9086
|
-
const serializer$
|
|
9087
|
-
const listOperationSpec$
|
|
9204
|
+
const serializer$6 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9205
|
+
const listOperationSpec$6 = {
|
|
9088
9206
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers",
|
|
9089
9207
|
httpMethod: "GET",
|
|
9090
9208
|
responses: {
|
|
@@ -9105,9 +9223,9 @@ const listOperationSpec$9 = {
|
|
|
9105
9223
|
accountName1
|
|
9106
9224
|
],
|
|
9107
9225
|
headerParameters: [accept],
|
|
9108
|
-
serializer: serializer$
|
|
9226
|
+
serializer: serializer$6
|
|
9109
9227
|
};
|
|
9110
|
-
const createOperationSpec$
|
|
9228
|
+
const createOperationSpec$3 = {
|
|
9111
9229
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}",
|
|
9112
9230
|
httpMethod: "PUT",
|
|
9113
9231
|
responses: {
|
|
@@ -9129,9 +9247,9 @@ const createOperationSpec$1 = {
|
|
|
9129
9247
|
],
|
|
9130
9248
|
headerParameters: [accept, contentType],
|
|
9131
9249
|
mediaType: "json",
|
|
9132
|
-
serializer: serializer$
|
|
9250
|
+
serializer: serializer$6
|
|
9133
9251
|
};
|
|
9134
|
-
const updateOperationSpec$
|
|
9252
|
+
const updateOperationSpec$3 = {
|
|
9135
9253
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}",
|
|
9136
9254
|
httpMethod: "PATCH",
|
|
9137
9255
|
responses: {
|
|
@@ -9150,9 +9268,9 @@ const updateOperationSpec$1 = {
|
|
|
9150
9268
|
],
|
|
9151
9269
|
headerParameters: [accept, contentType],
|
|
9152
9270
|
mediaType: "json",
|
|
9153
|
-
serializer: serializer$
|
|
9271
|
+
serializer: serializer$6
|
|
9154
9272
|
};
|
|
9155
|
-
const getOperationSpec$
|
|
9273
|
+
const getOperationSpec$3 = {
|
|
9156
9274
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}",
|
|
9157
9275
|
httpMethod: "GET",
|
|
9158
9276
|
responses: {
|
|
@@ -9169,9 +9287,9 @@ const getOperationSpec$6 = {
|
|
|
9169
9287
|
containerName
|
|
9170
9288
|
],
|
|
9171
9289
|
headerParameters: [accept],
|
|
9172
|
-
serializer: serializer$
|
|
9290
|
+
serializer: serializer$6
|
|
9173
9291
|
};
|
|
9174
|
-
const deleteOperationSpec$
|
|
9292
|
+
const deleteOperationSpec$3 = {
|
|
9175
9293
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}",
|
|
9176
9294
|
httpMethod: "DELETE",
|
|
9177
9295
|
responses: { 200: {}, 204: {} },
|
|
@@ -9183,7 +9301,7 @@ const deleteOperationSpec$5 = {
|
|
|
9183
9301
|
accountName1,
|
|
9184
9302
|
containerName
|
|
9185
9303
|
],
|
|
9186
|
-
serializer: serializer$
|
|
9304
|
+
serializer: serializer$6
|
|
9187
9305
|
};
|
|
9188
9306
|
const setLegalHoldOperationSpec = {
|
|
9189
9307
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/setLegalHold",
|
|
@@ -9204,7 +9322,7 @@ const setLegalHoldOperationSpec = {
|
|
|
9204
9322
|
],
|
|
9205
9323
|
headerParameters: [accept, contentType],
|
|
9206
9324
|
mediaType: "json",
|
|
9207
|
-
serializer: serializer$
|
|
9325
|
+
serializer: serializer$6
|
|
9208
9326
|
};
|
|
9209
9327
|
const clearLegalHoldOperationSpec = {
|
|
9210
9328
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/clearLegalHold",
|
|
@@ -9225,7 +9343,7 @@ const clearLegalHoldOperationSpec = {
|
|
|
9225
9343
|
],
|
|
9226
9344
|
headerParameters: [accept, contentType],
|
|
9227
9345
|
mediaType: "json",
|
|
9228
|
-
serializer: serializer$
|
|
9346
|
+
serializer: serializer$6
|
|
9229
9347
|
};
|
|
9230
9348
|
const createOrUpdateImmutabilityPolicyOperationSpec = {
|
|
9231
9349
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}",
|
|
@@ -9252,7 +9370,7 @@ const createOrUpdateImmutabilityPolicyOperationSpec = {
|
|
|
9252
9370
|
ifMatch
|
|
9253
9371
|
],
|
|
9254
9372
|
mediaType: "json",
|
|
9255
|
-
serializer: serializer$
|
|
9373
|
+
serializer: serializer$6
|
|
9256
9374
|
};
|
|
9257
9375
|
const getImmutabilityPolicyOperationSpec = {
|
|
9258
9376
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}",
|
|
@@ -9273,7 +9391,7 @@ const getImmutabilityPolicyOperationSpec = {
|
|
|
9273
9391
|
immutabilityPolicyName
|
|
9274
9392
|
],
|
|
9275
9393
|
headerParameters: [accept, ifMatch],
|
|
9276
|
-
serializer: serializer$
|
|
9394
|
+
serializer: serializer$6
|
|
9277
9395
|
};
|
|
9278
9396
|
const deleteImmutabilityPolicyOperationSpec = {
|
|
9279
9397
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/{immutabilityPolicyName}",
|
|
@@ -9294,7 +9412,7 @@ const deleteImmutabilityPolicyOperationSpec = {
|
|
|
9294
9412
|
immutabilityPolicyName
|
|
9295
9413
|
],
|
|
9296
9414
|
headerParameters: [accept, ifMatch1],
|
|
9297
|
-
serializer: serializer$
|
|
9415
|
+
serializer: serializer$6
|
|
9298
9416
|
};
|
|
9299
9417
|
const lockImmutabilityPolicyOperationSpec = {
|
|
9300
9418
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/lock",
|
|
@@ -9314,7 +9432,7 @@ const lockImmutabilityPolicyOperationSpec = {
|
|
|
9314
9432
|
containerName
|
|
9315
9433
|
],
|
|
9316
9434
|
headerParameters: [accept, ifMatch1],
|
|
9317
|
-
serializer: serializer$
|
|
9435
|
+
serializer: serializer$6
|
|
9318
9436
|
};
|
|
9319
9437
|
const extendImmutabilityPolicyOperationSpec = {
|
|
9320
9438
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/immutabilityPolicies/default/extend",
|
|
@@ -9340,9 +9458,9 @@ const extendImmutabilityPolicyOperationSpec = {
|
|
|
9340
9458
|
ifMatch1
|
|
9341
9459
|
],
|
|
9342
9460
|
mediaType: "json",
|
|
9343
|
-
serializer: serializer$
|
|
9461
|
+
serializer: serializer$6
|
|
9344
9462
|
};
|
|
9345
|
-
const leaseOperationSpec = {
|
|
9463
|
+
const leaseOperationSpec$1 = {
|
|
9346
9464
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/lease",
|
|
9347
9465
|
httpMethod: "POST",
|
|
9348
9466
|
responses: {
|
|
@@ -9361,7 +9479,7 @@ const leaseOperationSpec = {
|
|
|
9361
9479
|
],
|
|
9362
9480
|
headerParameters: [accept, contentType],
|
|
9363
9481
|
mediaType: "json",
|
|
9364
|
-
serializer: serializer$
|
|
9482
|
+
serializer: serializer$6
|
|
9365
9483
|
};
|
|
9366
9484
|
const objectLevelWormOperationSpec = {
|
|
9367
9485
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName}/migrate",
|
|
@@ -9384,7 +9502,7 @@ const objectLevelWormOperationSpec = {
|
|
|
9384
9502
|
containerName
|
|
9385
9503
|
],
|
|
9386
9504
|
headerParameters: [accept],
|
|
9387
|
-
serializer: serializer$
|
|
9505
|
+
serializer: serializer$6
|
|
9388
9506
|
};
|
|
9389
9507
|
const listNextOperationSpec$3 = {
|
|
9390
9508
|
path: "{nextLink}",
|
|
@@ -9408,7 +9526,7 @@ const listNextOperationSpec$3 = {
|
|
|
9408
9526
|
nextLink
|
|
9409
9527
|
],
|
|
9410
9528
|
headerParameters: [accept],
|
|
9411
|
-
serializer: serializer$
|
|
9529
|
+
serializer: serializer$6
|
|
9412
9530
|
};
|
|
9413
9531
|
|
|
9414
9532
|
/*
|
|
@@ -9437,7 +9555,7 @@ class FileServicesImpl {
|
|
|
9437
9555
|
* @param options The options parameters.
|
|
9438
9556
|
*/
|
|
9439
9557
|
list(resourceGroupName, accountName, options) {
|
|
9440
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
9558
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$5);
|
|
9441
9559
|
}
|
|
9442
9560
|
/**
|
|
9443
9561
|
* Sets the properties of file services in storage accounts, including CORS (Cross-Origin Resource
|
|
@@ -9452,7 +9570,7 @@ class FileServicesImpl {
|
|
|
9452
9570
|
* @param options The options parameters.
|
|
9453
9571
|
*/
|
|
9454
9572
|
setServiceProperties(resourceGroupName, accountName, parameters, options) {
|
|
9455
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec$
|
|
9573
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec$2);
|
|
9456
9574
|
}
|
|
9457
9575
|
/**
|
|
9458
9576
|
* Gets the properties of file services in storage accounts, including CORS (Cross-Origin Resource
|
|
@@ -9465,12 +9583,12 @@ class FileServicesImpl {
|
|
|
9465
9583
|
* @param options The options parameters.
|
|
9466
9584
|
*/
|
|
9467
9585
|
getServiceProperties(resourceGroupName, accountName, options) {
|
|
9468
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec$
|
|
9586
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec$2);
|
|
9469
9587
|
}
|
|
9470
9588
|
}
|
|
9471
9589
|
// Operation Specifications
|
|
9472
|
-
const serializer$
|
|
9473
|
-
const listOperationSpec$
|
|
9590
|
+
const serializer$5 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9591
|
+
const listOperationSpec$5 = {
|
|
9474
9592
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices",
|
|
9475
9593
|
httpMethod: "GET",
|
|
9476
9594
|
responses: {
|
|
@@ -9489,9 +9607,9 @@ const listOperationSpec$a = {
|
|
|
9489
9607
|
accountName1
|
|
9490
9608
|
],
|
|
9491
9609
|
headerParameters: [accept],
|
|
9492
|
-
serializer: serializer$
|
|
9610
|
+
serializer: serializer$5
|
|
9493
9611
|
};
|
|
9494
|
-
const setServicePropertiesOperationSpec$
|
|
9612
|
+
const setServicePropertiesOperationSpec$2 = {
|
|
9495
9613
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/{FileServicesName}",
|
|
9496
9614
|
httpMethod: "PUT",
|
|
9497
9615
|
responses: {
|
|
@@ -9513,9 +9631,9 @@ const setServicePropertiesOperationSpec$1 = {
|
|
|
9513
9631
|
],
|
|
9514
9632
|
headerParameters: [accept, contentType],
|
|
9515
9633
|
mediaType: "json",
|
|
9516
|
-
serializer: serializer$
|
|
9634
|
+
serializer: serializer$5
|
|
9517
9635
|
};
|
|
9518
|
-
const getServicePropertiesOperationSpec$
|
|
9636
|
+
const getServicePropertiesOperationSpec$2 = {
|
|
9519
9637
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/{FileServicesName}",
|
|
9520
9638
|
httpMethod: "GET",
|
|
9521
9639
|
responses: {
|
|
@@ -9535,7 +9653,7 @@ const getServicePropertiesOperationSpec$1 = {
|
|
|
9535
9653
|
fileServicesName
|
|
9536
9654
|
],
|
|
9537
9655
|
headerParameters: [accept],
|
|
9538
|
-
serializer: serializer$
|
|
9656
|
+
serializer: serializer$5
|
|
9539
9657
|
};
|
|
9540
9658
|
|
|
9541
9659
|
/*
|
|
@@ -9618,7 +9736,7 @@ class FileSharesImpl {
|
|
|
9618
9736
|
* @param options The options parameters.
|
|
9619
9737
|
*/
|
|
9620
9738
|
_list(resourceGroupName, accountName, options) {
|
|
9621
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
9739
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$4);
|
|
9622
9740
|
}
|
|
9623
9741
|
/**
|
|
9624
9742
|
* Creates a new share under the specified account as described by request body. The share resource
|
|
@@ -9668,7 +9786,7 @@ class FileSharesImpl {
|
|
|
9668
9786
|
* @param options The options parameters.
|
|
9669
9787
|
*/
|
|
9670
9788
|
get(resourceGroupName, accountName, shareName, options) {
|
|
9671
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, getOperationSpec$
|
|
9789
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, getOperationSpec$2);
|
|
9672
9790
|
}
|
|
9673
9791
|
/**
|
|
9674
9792
|
* Deletes specified share under its account.
|
|
@@ -9683,7 +9801,7 @@ class FileSharesImpl {
|
|
|
9683
9801
|
* @param options The options parameters.
|
|
9684
9802
|
*/
|
|
9685
9803
|
delete(resourceGroupName, accountName, shareName, options) {
|
|
9686
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, deleteOperationSpec$
|
|
9804
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, deleteOperationSpec$2);
|
|
9687
9805
|
}
|
|
9688
9806
|
/**
|
|
9689
9807
|
* Restore a file share within a valid retention days if share soft delete is enabled
|
|
@@ -9715,7 +9833,7 @@ class FileSharesImpl {
|
|
|
9715
9833
|
* @param options The options parameters.
|
|
9716
9834
|
*/
|
|
9717
9835
|
lease(resourceGroupName, accountName, shareName, options) {
|
|
9718
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, leaseOperationSpec
|
|
9836
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, shareName, options }, leaseOperationSpec);
|
|
9719
9837
|
}
|
|
9720
9838
|
/**
|
|
9721
9839
|
* ListNext
|
|
@@ -9728,12 +9846,12 @@ class FileSharesImpl {
|
|
|
9728
9846
|
* @param options The options parameters.
|
|
9729
9847
|
*/
|
|
9730
9848
|
_listNext(resourceGroupName, accountName, nextLink, options) {
|
|
9731
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$
|
|
9849
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$2);
|
|
9732
9850
|
}
|
|
9733
9851
|
}
|
|
9734
9852
|
// Operation Specifications
|
|
9735
|
-
const serializer$
|
|
9736
|
-
const listOperationSpec$
|
|
9853
|
+
const serializer$4 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9854
|
+
const listOperationSpec$4 = {
|
|
9737
9855
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares",
|
|
9738
9856
|
httpMethod: "GET",
|
|
9739
9857
|
responses: {
|
|
@@ -9757,7 +9875,7 @@ const listOperationSpec$b = {
|
|
|
9757
9875
|
accountName1
|
|
9758
9876
|
],
|
|
9759
9877
|
headerParameters: [accept],
|
|
9760
|
-
serializer: serializer$
|
|
9878
|
+
serializer: serializer$4
|
|
9761
9879
|
};
|
|
9762
9880
|
const createOperationSpec$2 = {
|
|
9763
9881
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}",
|
|
@@ -9784,7 +9902,7 @@ const createOperationSpec$2 = {
|
|
|
9784
9902
|
],
|
|
9785
9903
|
headerParameters: [accept, contentType],
|
|
9786
9904
|
mediaType: "json",
|
|
9787
|
-
serializer: serializer$
|
|
9905
|
+
serializer: serializer$4
|
|
9788
9906
|
};
|
|
9789
9907
|
const updateOperationSpec$2 = {
|
|
9790
9908
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}",
|
|
@@ -9808,9 +9926,9 @@ const updateOperationSpec$2 = {
|
|
|
9808
9926
|
],
|
|
9809
9927
|
headerParameters: [accept, contentType],
|
|
9810
9928
|
mediaType: "json",
|
|
9811
|
-
serializer: serializer$
|
|
9929
|
+
serializer: serializer$4
|
|
9812
9930
|
};
|
|
9813
|
-
const getOperationSpec$
|
|
9931
|
+
const getOperationSpec$2 = {
|
|
9814
9932
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}",
|
|
9815
9933
|
httpMethod: "GET",
|
|
9816
9934
|
responses: {
|
|
@@ -9830,9 +9948,9 @@ const getOperationSpec$7 = {
|
|
|
9830
9948
|
shareName
|
|
9831
9949
|
],
|
|
9832
9950
|
headerParameters: [accept, xMsSnapshot],
|
|
9833
|
-
serializer: serializer$
|
|
9951
|
+
serializer: serializer$4
|
|
9834
9952
|
};
|
|
9835
|
-
const deleteOperationSpec$
|
|
9953
|
+
const deleteOperationSpec$2 = {
|
|
9836
9954
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}",
|
|
9837
9955
|
httpMethod: "DELETE",
|
|
9838
9956
|
responses: {
|
|
@@ -9851,7 +9969,7 @@ const deleteOperationSpec$6 = {
|
|
|
9851
9969
|
shareName
|
|
9852
9970
|
],
|
|
9853
9971
|
headerParameters: [accept, xMsSnapshot],
|
|
9854
|
-
serializer: serializer$
|
|
9972
|
+
serializer: serializer$4
|
|
9855
9973
|
};
|
|
9856
9974
|
const restoreOperationSpec = {
|
|
9857
9975
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}/restore",
|
|
@@ -9873,9 +9991,9 @@ const restoreOperationSpec = {
|
|
|
9873
9991
|
],
|
|
9874
9992
|
headerParameters: [accept, contentType],
|
|
9875
9993
|
mediaType: "json",
|
|
9876
|
-
serializer: serializer$
|
|
9994
|
+
serializer: serializer$4
|
|
9877
9995
|
};
|
|
9878
|
-
const leaseOperationSpec
|
|
9996
|
+
const leaseOperationSpec = {
|
|
9879
9997
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}/lease",
|
|
9880
9998
|
httpMethod: "POST",
|
|
9881
9999
|
responses: {
|
|
@@ -9902,9 +10020,9 @@ const leaseOperationSpec$1 = {
|
|
|
9902
10020
|
xMsSnapshot
|
|
9903
10021
|
],
|
|
9904
10022
|
mediaType: "json",
|
|
9905
|
-
serializer: serializer$
|
|
10023
|
+
serializer: serializer$4
|
|
9906
10024
|
};
|
|
9907
|
-
const listNextOperationSpec$
|
|
10025
|
+
const listNextOperationSpec$2 = {
|
|
9908
10026
|
path: "{nextLink}",
|
|
9909
10027
|
httpMethod: "GET",
|
|
9910
10028
|
responses: {
|
|
@@ -9929,7 +10047,7 @@ const listNextOperationSpec$4 = {
|
|
|
9929
10047
|
nextLink
|
|
9930
10048
|
],
|
|
9931
10049
|
headerParameters: [accept],
|
|
9932
|
-
serializer: serializer$
|
|
10050
|
+
serializer: serializer$4
|
|
9933
10051
|
};
|
|
9934
10052
|
|
|
9935
10053
|
/*
|
|
@@ -9958,7 +10076,7 @@ class QueueServicesImpl {
|
|
|
9958
10076
|
* @param options The options parameters.
|
|
9959
10077
|
*/
|
|
9960
10078
|
list(resourceGroupName, accountName, options) {
|
|
9961
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
10079
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$3);
|
|
9962
10080
|
}
|
|
9963
10081
|
/**
|
|
9964
10082
|
* Sets the properties of a storage account’s Queue service, including properties for Storage Analytics
|
|
@@ -9973,7 +10091,7 @@ class QueueServicesImpl {
|
|
|
9973
10091
|
* @param options The options parameters.
|
|
9974
10092
|
*/
|
|
9975
10093
|
setServiceProperties(resourceGroupName, accountName, parameters, options) {
|
|
9976
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec$
|
|
10094
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec$1);
|
|
9977
10095
|
}
|
|
9978
10096
|
/**
|
|
9979
10097
|
* Gets the properties of a storage account’s Queue service, including properties for Storage Analytics
|
|
@@ -9986,12 +10104,12 @@ class QueueServicesImpl {
|
|
|
9986
10104
|
* @param options The options parameters.
|
|
9987
10105
|
*/
|
|
9988
10106
|
getServiceProperties(resourceGroupName, accountName, options) {
|
|
9989
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec$
|
|
10107
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec$1);
|
|
9990
10108
|
}
|
|
9991
10109
|
}
|
|
9992
10110
|
// Operation Specifications
|
|
9993
|
-
const serializer$
|
|
9994
|
-
const listOperationSpec$
|
|
10111
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10112
|
+
const listOperationSpec$3 = {
|
|
9995
10113
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices",
|
|
9996
10114
|
httpMethod: "GET",
|
|
9997
10115
|
responses: {
|
|
@@ -10010,9 +10128,9 @@ const listOperationSpec$c = {
|
|
|
10010
10128
|
accountName1
|
|
10011
10129
|
],
|
|
10012
10130
|
headerParameters: [accept],
|
|
10013
|
-
serializer: serializer$
|
|
10131
|
+
serializer: serializer$3
|
|
10014
10132
|
};
|
|
10015
|
-
const setServicePropertiesOperationSpec$
|
|
10133
|
+
const setServicePropertiesOperationSpec$1 = {
|
|
10016
10134
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/{queueServiceName}",
|
|
10017
10135
|
httpMethod: "PUT",
|
|
10018
10136
|
responses: {
|
|
@@ -10034,9 +10152,9 @@ const setServicePropertiesOperationSpec$2 = {
|
|
|
10034
10152
|
],
|
|
10035
10153
|
headerParameters: [accept, contentType],
|
|
10036
10154
|
mediaType: "json",
|
|
10037
|
-
serializer: serializer$
|
|
10155
|
+
serializer: serializer$3
|
|
10038
10156
|
};
|
|
10039
|
-
const getServicePropertiesOperationSpec$
|
|
10157
|
+
const getServicePropertiesOperationSpec$1 = {
|
|
10040
10158
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/{queueServiceName}",
|
|
10041
10159
|
httpMethod: "GET",
|
|
10042
10160
|
responses: {
|
|
@@ -10056,7 +10174,7 @@ const getServicePropertiesOperationSpec$2 = {
|
|
|
10056
10174
|
queueServiceName
|
|
10057
10175
|
],
|
|
10058
10176
|
headerParameters: [accept],
|
|
10059
|
-
serializer: serializer$
|
|
10177
|
+
serializer: serializer$3
|
|
10060
10178
|
};
|
|
10061
10179
|
|
|
10062
10180
|
/*
|
|
@@ -10143,7 +10261,7 @@ class QueueImpl {
|
|
|
10143
10261
|
* @param options The options parameters.
|
|
10144
10262
|
*/
|
|
10145
10263
|
create(resourceGroupName, accountName, queueName, queue, options) {
|
|
10146
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, queue, options }, createOperationSpec$
|
|
10264
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, queue, options }, createOperationSpec$1);
|
|
10147
10265
|
}
|
|
10148
10266
|
/**
|
|
10149
10267
|
* Creates a new queue with the specified queue name, under the specified account.
|
|
@@ -10159,7 +10277,7 @@ class QueueImpl {
|
|
|
10159
10277
|
* @param options The options parameters.
|
|
10160
10278
|
*/
|
|
10161
10279
|
update(resourceGroupName, accountName, queueName, queue, options) {
|
|
10162
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, queue, options }, updateOperationSpec$
|
|
10280
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, queue, options }, updateOperationSpec$1);
|
|
10163
10281
|
}
|
|
10164
10282
|
/**
|
|
10165
10283
|
* Gets the queue with the specified queue name, under the specified account if it exists.
|
|
@@ -10174,7 +10292,7 @@ class QueueImpl {
|
|
|
10174
10292
|
* @param options The options parameters.
|
|
10175
10293
|
*/
|
|
10176
10294
|
get(resourceGroupName, accountName, queueName, options) {
|
|
10177
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, options }, getOperationSpec$
|
|
10295
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, options }, getOperationSpec$1);
|
|
10178
10296
|
}
|
|
10179
10297
|
/**
|
|
10180
10298
|
* Deletes the queue with the specified queue name, under the specified account if it exists.
|
|
@@ -10189,7 +10307,7 @@ class QueueImpl {
|
|
|
10189
10307
|
* @param options The options parameters.
|
|
10190
10308
|
*/
|
|
10191
10309
|
delete(resourceGroupName, accountName, queueName, options) {
|
|
10192
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, options }, deleteOperationSpec$
|
|
10310
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, queueName, options }, deleteOperationSpec$1);
|
|
10193
10311
|
}
|
|
10194
10312
|
/**
|
|
10195
10313
|
* Gets a list of all the queues under the specified storage account
|
|
@@ -10201,7 +10319,7 @@ class QueueImpl {
|
|
|
10201
10319
|
* @param options The options parameters.
|
|
10202
10320
|
*/
|
|
10203
10321
|
_list(resourceGroupName, accountName, options) {
|
|
10204
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
10322
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$2);
|
|
10205
10323
|
}
|
|
10206
10324
|
/**
|
|
10207
10325
|
* ListNext
|
|
@@ -10214,12 +10332,12 @@ class QueueImpl {
|
|
|
10214
10332
|
* @param options The options parameters.
|
|
10215
10333
|
*/
|
|
10216
10334
|
_listNext(resourceGroupName, accountName, nextLink, options) {
|
|
10217
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$
|
|
10335
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec$1);
|
|
10218
10336
|
}
|
|
10219
10337
|
}
|
|
10220
10338
|
// Operation Specifications
|
|
10221
|
-
const serializer$
|
|
10222
|
-
const createOperationSpec$
|
|
10339
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10340
|
+
const createOperationSpec$1 = {
|
|
10223
10341
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues/{queueName}",
|
|
10224
10342
|
httpMethod: "PUT",
|
|
10225
10343
|
responses: {
|
|
@@ -10241,9 +10359,9 @@ const createOperationSpec$3 = {
|
|
|
10241
10359
|
],
|
|
10242
10360
|
headerParameters: [accept, contentType],
|
|
10243
10361
|
mediaType: "json",
|
|
10244
|
-
serializer: serializer$
|
|
10362
|
+
serializer: serializer$2
|
|
10245
10363
|
};
|
|
10246
|
-
const updateOperationSpec$
|
|
10364
|
+
const updateOperationSpec$1 = {
|
|
10247
10365
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues/{queueName}",
|
|
10248
10366
|
httpMethod: "PATCH",
|
|
10249
10367
|
responses: {
|
|
@@ -10265,9 +10383,9 @@ const updateOperationSpec$3 = {
|
|
|
10265
10383
|
],
|
|
10266
10384
|
headerParameters: [accept, contentType],
|
|
10267
10385
|
mediaType: "json",
|
|
10268
|
-
serializer: serializer$
|
|
10386
|
+
serializer: serializer$2
|
|
10269
10387
|
};
|
|
10270
|
-
const getOperationSpec$
|
|
10388
|
+
const getOperationSpec$1 = {
|
|
10271
10389
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues/{queueName}",
|
|
10272
10390
|
httpMethod: "GET",
|
|
10273
10391
|
responses: {
|
|
@@ -10287,9 +10405,9 @@ const getOperationSpec$8 = {
|
|
|
10287
10405
|
queueName
|
|
10288
10406
|
],
|
|
10289
10407
|
headerParameters: [accept],
|
|
10290
|
-
serializer: serializer$
|
|
10408
|
+
serializer: serializer$2
|
|
10291
10409
|
};
|
|
10292
|
-
const deleteOperationSpec$
|
|
10410
|
+
const deleteOperationSpec$1 = {
|
|
10293
10411
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues/{queueName}",
|
|
10294
10412
|
httpMethod: "DELETE",
|
|
10295
10413
|
responses: {
|
|
@@ -10307,9 +10425,9 @@ const deleteOperationSpec$7 = {
|
|
|
10307
10425
|
queueName
|
|
10308
10426
|
],
|
|
10309
10427
|
headerParameters: [accept],
|
|
10310
|
-
serializer: serializer$
|
|
10428
|
+
serializer: serializer$2
|
|
10311
10429
|
};
|
|
10312
|
-
const listOperationSpec$
|
|
10430
|
+
const listOperationSpec$2 = {
|
|
10313
10431
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues",
|
|
10314
10432
|
httpMethod: "GET",
|
|
10315
10433
|
responses: {
|
|
@@ -10332,9 +10450,9 @@ const listOperationSpec$d = {
|
|
|
10332
10450
|
accountName1
|
|
10333
10451
|
],
|
|
10334
10452
|
headerParameters: [accept],
|
|
10335
|
-
serializer: serializer$
|
|
10453
|
+
serializer: serializer$2
|
|
10336
10454
|
};
|
|
10337
|
-
const listNextOperationSpec$
|
|
10455
|
+
const listNextOperationSpec$1 = {
|
|
10338
10456
|
path: "{nextLink}",
|
|
10339
10457
|
httpMethod: "GET",
|
|
10340
10458
|
responses: {
|
|
@@ -10358,7 +10476,7 @@ const listNextOperationSpec$5 = {
|
|
|
10358
10476
|
nextLink
|
|
10359
10477
|
],
|
|
10360
10478
|
headerParameters: [accept],
|
|
10361
|
-
serializer: serializer$
|
|
10479
|
+
serializer: serializer$2
|
|
10362
10480
|
};
|
|
10363
10481
|
|
|
10364
10482
|
/*
|
|
@@ -10387,7 +10505,7 @@ class TableServicesImpl {
|
|
|
10387
10505
|
* @param options The options parameters.
|
|
10388
10506
|
*/
|
|
10389
10507
|
list(resourceGroupName, accountName, options) {
|
|
10390
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$
|
|
10508
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec$1);
|
|
10391
10509
|
}
|
|
10392
10510
|
/**
|
|
10393
10511
|
* Sets the properties of a storage account’s Table service, including properties for Storage Analytics
|
|
@@ -10402,7 +10520,7 @@ class TableServicesImpl {
|
|
|
10402
10520
|
* @param options The options parameters.
|
|
10403
10521
|
*/
|
|
10404
10522
|
setServiceProperties(resourceGroupName, accountName, parameters, options) {
|
|
10405
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec
|
|
10523
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, parameters, options }, setServicePropertiesOperationSpec);
|
|
10406
10524
|
}
|
|
10407
10525
|
/**
|
|
10408
10526
|
* Gets the properties of a storage account’s Table service, including properties for Storage Analytics
|
|
@@ -10415,12 +10533,12 @@ class TableServicesImpl {
|
|
|
10415
10533
|
* @param options The options parameters.
|
|
10416
10534
|
*/
|
|
10417
10535
|
getServiceProperties(resourceGroupName, accountName, options) {
|
|
10418
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec
|
|
10536
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, getServicePropertiesOperationSpec);
|
|
10419
10537
|
}
|
|
10420
10538
|
}
|
|
10421
10539
|
// Operation Specifications
|
|
10422
|
-
const serializer$
|
|
10423
|
-
const listOperationSpec$
|
|
10540
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10541
|
+
const listOperationSpec$1 = {
|
|
10424
10542
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices",
|
|
10425
10543
|
httpMethod: "GET",
|
|
10426
10544
|
responses: {
|
|
@@ -10439,9 +10557,9 @@ const listOperationSpec$e = {
|
|
|
10439
10557
|
accountName1
|
|
10440
10558
|
],
|
|
10441
10559
|
headerParameters: [accept],
|
|
10442
|
-
serializer: serializer$
|
|
10560
|
+
serializer: serializer$1
|
|
10443
10561
|
};
|
|
10444
|
-
const setServicePropertiesOperationSpec
|
|
10562
|
+
const setServicePropertiesOperationSpec = {
|
|
10445
10563
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/{tableServiceName}",
|
|
10446
10564
|
httpMethod: "PUT",
|
|
10447
10565
|
responses: {
|
|
@@ -10463,9 +10581,9 @@ const setServicePropertiesOperationSpec$3 = {
|
|
|
10463
10581
|
],
|
|
10464
10582
|
headerParameters: [accept, contentType],
|
|
10465
10583
|
mediaType: "json",
|
|
10466
|
-
serializer: serializer$
|
|
10584
|
+
serializer: serializer$1
|
|
10467
10585
|
};
|
|
10468
|
-
const getServicePropertiesOperationSpec
|
|
10586
|
+
const getServicePropertiesOperationSpec = {
|
|
10469
10587
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/{tableServiceName}",
|
|
10470
10588
|
httpMethod: "GET",
|
|
10471
10589
|
responses: {
|
|
@@ -10485,7 +10603,7 @@ const getServicePropertiesOperationSpec$3 = {
|
|
|
10485
10603
|
tableServiceName
|
|
10486
10604
|
],
|
|
10487
10605
|
headerParameters: [accept],
|
|
10488
|
-
serializer: serializer$
|
|
10606
|
+
serializer: serializer$1
|
|
10489
10607
|
};
|
|
10490
10608
|
|
|
10491
10609
|
/*
|
|
@@ -10571,7 +10689,7 @@ class TableOperationsImpl {
|
|
|
10571
10689
|
* @param options The options parameters.
|
|
10572
10690
|
*/
|
|
10573
10691
|
create(resourceGroupName, accountName, tableName, options) {
|
|
10574
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, createOperationSpec
|
|
10692
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, createOperationSpec);
|
|
10575
10693
|
}
|
|
10576
10694
|
/**
|
|
10577
10695
|
* Creates a new table with the specified table name, under the specified account.
|
|
@@ -10586,7 +10704,7 @@ class TableOperationsImpl {
|
|
|
10586
10704
|
* @param options The options parameters.
|
|
10587
10705
|
*/
|
|
10588
10706
|
update(resourceGroupName, accountName, tableName, options) {
|
|
10589
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, updateOperationSpec
|
|
10707
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, updateOperationSpec);
|
|
10590
10708
|
}
|
|
10591
10709
|
/**
|
|
10592
10710
|
* Gets the table with the specified table name, under the specified account if it exists.
|
|
@@ -10601,7 +10719,7 @@ class TableOperationsImpl {
|
|
|
10601
10719
|
* @param options The options parameters.
|
|
10602
10720
|
*/
|
|
10603
10721
|
get(resourceGroupName, accountName, tableName, options) {
|
|
10604
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, getOperationSpec
|
|
10722
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, getOperationSpec);
|
|
10605
10723
|
}
|
|
10606
10724
|
/**
|
|
10607
10725
|
* Deletes the table with the specified table name, under the specified account if it exists.
|
|
@@ -10616,7 +10734,7 @@ class TableOperationsImpl {
|
|
|
10616
10734
|
* @param options The options parameters.
|
|
10617
10735
|
*/
|
|
10618
10736
|
delete(resourceGroupName, accountName, tableName, options) {
|
|
10619
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, deleteOperationSpec
|
|
10737
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, tableName, options }, deleteOperationSpec);
|
|
10620
10738
|
}
|
|
10621
10739
|
/**
|
|
10622
10740
|
* Gets a list of all the tables under the specified storage account
|
|
@@ -10628,7 +10746,7 @@ class TableOperationsImpl {
|
|
|
10628
10746
|
* @param options The options parameters.
|
|
10629
10747
|
*/
|
|
10630
10748
|
_list(resourceGroupName, accountName, options) {
|
|
10631
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec
|
|
10749
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, options }, listOperationSpec);
|
|
10632
10750
|
}
|
|
10633
10751
|
/**
|
|
10634
10752
|
* ListNext
|
|
@@ -10641,12 +10759,12 @@ class TableOperationsImpl {
|
|
|
10641
10759
|
* @param options The options parameters.
|
|
10642
10760
|
*/
|
|
10643
10761
|
_listNext(resourceGroupName, accountName, nextLink, options) {
|
|
10644
|
-
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec
|
|
10762
|
+
return this.client.sendOperationRequest({ resourceGroupName, accountName, nextLink, options }, listNextOperationSpec);
|
|
10645
10763
|
}
|
|
10646
10764
|
}
|
|
10647
10765
|
// Operation Specifications
|
|
10648
|
-
const serializer
|
|
10649
|
-
const createOperationSpec
|
|
10766
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10767
|
+
const createOperationSpec = {
|
|
10650
10768
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}",
|
|
10651
10769
|
httpMethod: "PUT",
|
|
10652
10770
|
responses: {
|
|
@@ -10666,9 +10784,9 @@ const createOperationSpec$4 = {
|
|
|
10666
10784
|
tableName
|
|
10667
10785
|
],
|
|
10668
10786
|
headerParameters: [accept],
|
|
10669
|
-
serializer
|
|
10787
|
+
serializer
|
|
10670
10788
|
};
|
|
10671
|
-
const updateOperationSpec
|
|
10789
|
+
const updateOperationSpec = {
|
|
10672
10790
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}",
|
|
10673
10791
|
httpMethod: "PATCH",
|
|
10674
10792
|
responses: {
|
|
@@ -10688,9 +10806,9 @@ const updateOperationSpec$4 = {
|
|
|
10688
10806
|
tableName
|
|
10689
10807
|
],
|
|
10690
10808
|
headerParameters: [accept],
|
|
10691
|
-
serializer
|
|
10809
|
+
serializer
|
|
10692
10810
|
};
|
|
10693
|
-
const getOperationSpec
|
|
10811
|
+
const getOperationSpec = {
|
|
10694
10812
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}",
|
|
10695
10813
|
httpMethod: "GET",
|
|
10696
10814
|
responses: {
|
|
@@ -10710,9 +10828,9 @@ const getOperationSpec$9 = {
|
|
|
10710
10828
|
tableName
|
|
10711
10829
|
],
|
|
10712
10830
|
headerParameters: [accept],
|
|
10713
|
-
serializer
|
|
10831
|
+
serializer
|
|
10714
10832
|
};
|
|
10715
|
-
const deleteOperationSpec
|
|
10833
|
+
const deleteOperationSpec = {
|
|
10716
10834
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}",
|
|
10717
10835
|
httpMethod: "DELETE",
|
|
10718
10836
|
responses: {
|
|
@@ -10730,9 +10848,9 @@ const deleteOperationSpec$8 = {
|
|
|
10730
10848
|
tableName
|
|
10731
10849
|
],
|
|
10732
10850
|
headerParameters: [accept],
|
|
10733
|
-
serializer
|
|
10851
|
+
serializer
|
|
10734
10852
|
};
|
|
10735
|
-
const listOperationSpec
|
|
10853
|
+
const listOperationSpec = {
|
|
10736
10854
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables",
|
|
10737
10855
|
httpMethod: "GET",
|
|
10738
10856
|
responses: {
|
|
@@ -10751,9 +10869,9 @@ const listOperationSpec$f = {
|
|
|
10751
10869
|
accountName1
|
|
10752
10870
|
],
|
|
10753
10871
|
headerParameters: [accept],
|
|
10754
|
-
serializer
|
|
10872
|
+
serializer
|
|
10755
10873
|
};
|
|
10756
|
-
const listNextOperationSpec
|
|
10874
|
+
const listNextOperationSpec = {
|
|
10757
10875
|
path: "{nextLink}",
|
|
10758
10876
|
httpMethod: "GET",
|
|
10759
10877
|
responses: {
|
|
@@ -10773,7 +10891,7 @@ const listNextOperationSpec$6 = {
|
|
|
10773
10891
|
nextLink
|
|
10774
10892
|
],
|
|
10775
10893
|
headerParameters: [accept],
|
|
10776
|
-
serializer
|
|
10894
|
+
serializer
|
|
10777
10895
|
};
|
|
10778
10896
|
|
|
10779
10897
|
/*
|
|
@@ -10783,7 +10901,7 @@ const listNextOperationSpec$6 = {
|
|
|
10783
10901
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
10784
10902
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
10785
10903
|
*/
|
|
10786
|
-
class StorageManagementClient extends
|
|
10904
|
+
class StorageManagementClient extends coreClient__namespace.ServiceClient {
|
|
10787
10905
|
/**
|
|
10788
10906
|
* Initializes a new instance of the StorageManagementClient class.
|
|
10789
10907
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|