@azure/arm-storage 18.6.0-alpha.20250717.1 → 18.6.0
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/browser/models/index.d.ts +15 -2
- package/dist/browser/models/index.d.ts.map +1 -1
- package/dist/browser/models/index.js +6 -0
- package/dist/browser/models/index.js.map +1 -1
- package/dist/browser/models/mappers.d.ts.map +1 -1
- package/dist/browser/models/mappers.js +0 -4
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/commonjs/models/index.d.ts +15 -2
- package/dist/commonjs/models/index.d.ts.map +1 -1
- package/dist/commonjs/models/index.js +7 -1
- package/dist/commonjs/models/index.js.map +1 -1
- package/dist/commonjs/models/mappers.d.ts.map +1 -1
- package/dist/commonjs/models/mappers.js +0 -4
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/esm/models/index.d.ts +15 -2
- package/dist/esm/models/index.d.ts.map +1 -1
- package/dist/esm/models/index.js +6 -0
- package/dist/esm/models/index.js.map +1 -1
- package/dist/esm/models/mappers.d.ts.map +1 -1
- package/dist/esm/models/mappers.js +0 -4
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/react-native/models/index.d.ts +15 -2
- package/dist/react-native/models/index.d.ts.map +1 -1
- package/dist/react-native/models/index.js +6 -0
- package/dist/react-native/models/index.js.map +1 -1
- package/dist/react-native/models/mappers.d.ts.map +1 -1
- package/dist/react-native/models/mappers.js +0 -4
- package/dist/react-native/models/mappers.js.map +1 -1
- package/package.json +5 -7
- package/CHANGELOG.md +0 -347
- package/review/arm-storage-node.api.md +0 -3479
|
@@ -1,3479 +0,0 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-storage"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { OperationState } from '@azure/core-lro';
|
|
10
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
-
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public (undocumented)
|
|
14
|
-
export interface AccessPolicy {
|
|
15
|
-
expiryTime?: Date;
|
|
16
|
-
permission?: string;
|
|
17
|
-
startTime?: Date;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// @public
|
|
21
|
-
export type AccessTier = "Hot" | "Cool" | "Premium" | "Cold";
|
|
22
|
-
|
|
23
|
-
// @public
|
|
24
|
-
export interface AccountImmutabilityPolicyProperties {
|
|
25
|
-
allowProtectedAppendWrites?: boolean;
|
|
26
|
-
immutabilityPeriodSinceCreationInDays?: number;
|
|
27
|
-
state?: AccountImmutabilityPolicyState;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
// @public
|
|
31
|
-
export type AccountImmutabilityPolicyState = string;
|
|
32
|
-
|
|
33
|
-
// @public
|
|
34
|
-
export interface AccountLimits {
|
|
35
|
-
readonly maxFileShares?: number;
|
|
36
|
-
readonly maxProvisionedBandwidthMiBPerSec?: number;
|
|
37
|
-
readonly maxProvisionedIops?: number;
|
|
38
|
-
readonly maxProvisionedStorageGiB?: number;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// @public
|
|
42
|
-
export interface AccountSasParameters {
|
|
43
|
-
iPAddressOrRange?: string;
|
|
44
|
-
keyToSign?: string;
|
|
45
|
-
permissions: Permissions;
|
|
46
|
-
protocols?: HttpProtocol;
|
|
47
|
-
resourceTypes: SignedResourceTypes;
|
|
48
|
-
services: Services;
|
|
49
|
-
sharedAccessExpiryTime: Date;
|
|
50
|
-
sharedAccessStartTime?: Date;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// @public
|
|
54
|
-
export type AccountStatus = "available" | "unavailable";
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export type AccountType = string;
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export interface AccountUsage {
|
|
61
|
-
readonly liveShares?: AccountUsageElements;
|
|
62
|
-
readonly softDeletedShares?: AccountUsageElements;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// @public
|
|
66
|
-
export interface AccountUsageElements {
|
|
67
|
-
readonly fileShareCount?: number;
|
|
68
|
-
readonly provisionedBandwidthMiBPerSec?: number;
|
|
69
|
-
readonly provisionedIops?: number;
|
|
70
|
-
readonly provisionedStorageGiB?: number;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface ActiveDirectoryProperties {
|
|
75
|
-
accountType?: AccountType;
|
|
76
|
-
azureStorageSid?: string;
|
|
77
|
-
domainGuid: string;
|
|
78
|
-
domainName: string;
|
|
79
|
-
domainSid?: string;
|
|
80
|
-
forestName?: string;
|
|
81
|
-
netBiosDomainName?: string;
|
|
82
|
-
samAccountName?: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export type AllowedCopyScope = string;
|
|
87
|
-
|
|
88
|
-
// @public
|
|
89
|
-
export type AllowedMethods = string;
|
|
90
|
-
|
|
91
|
-
// @public
|
|
92
|
-
export interface AzureEntityResource extends Resource {
|
|
93
|
-
readonly etag?: string;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// @public
|
|
97
|
-
export interface AzureFilesIdentityBasedAuthentication {
|
|
98
|
-
activeDirectoryProperties?: ActiveDirectoryProperties;
|
|
99
|
-
defaultSharePermission?: DefaultSharePermission;
|
|
100
|
-
directoryServiceOptions: DirectoryServiceOptions;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
// @public
|
|
104
|
-
export interface BlobContainer extends AzureEntityResource {
|
|
105
|
-
defaultEncryptionScope?: string;
|
|
106
|
-
readonly deleted?: boolean;
|
|
107
|
-
readonly deletedTime?: Date;
|
|
108
|
-
denyEncryptionScopeOverride?: boolean;
|
|
109
|
-
enableNfsV3AllSquash?: boolean;
|
|
110
|
-
enableNfsV3RootSquash?: boolean;
|
|
111
|
-
readonly hasImmutabilityPolicy?: boolean;
|
|
112
|
-
readonly hasLegalHold?: boolean;
|
|
113
|
-
readonly immutabilityPolicy?: ImmutabilityPolicyProperties;
|
|
114
|
-
immutableStorageWithVersioning?: ImmutableStorageWithVersioning;
|
|
115
|
-
readonly lastModifiedTime?: Date;
|
|
116
|
-
readonly leaseDuration?: LeaseDuration;
|
|
117
|
-
readonly leaseState?: LeaseState;
|
|
118
|
-
readonly leaseStatus?: LeaseStatus;
|
|
119
|
-
readonly legalHold?: LegalHoldProperties;
|
|
120
|
-
metadata?: {
|
|
121
|
-
[propertyName: string]: string;
|
|
122
|
-
};
|
|
123
|
-
publicAccess?: PublicAccess;
|
|
124
|
-
readonly remainingRetentionDays?: number;
|
|
125
|
-
readonly version?: string;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// @public
|
|
129
|
-
export interface BlobContainers {
|
|
130
|
-
beginObjectLevelWorm(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersObjectLevelWormOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
131
|
-
beginObjectLevelWormAndWait(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersObjectLevelWormOptionalParams): Promise<void>;
|
|
132
|
-
clearLegalHold(resourceGroupName: string, accountName: string, containerName: string, legalHold: LegalHold, options?: BlobContainersClearLegalHoldOptionalParams): Promise<BlobContainersClearLegalHoldResponse>;
|
|
133
|
-
create(resourceGroupName: string, accountName: string, containerName: string, blobContainer: BlobContainer, options?: BlobContainersCreateOptionalParams): Promise<BlobContainersCreateResponse>;
|
|
134
|
-
createOrUpdateImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersCreateOrUpdateImmutabilityPolicyOptionalParams): Promise<BlobContainersCreateOrUpdateImmutabilityPolicyResponse>;
|
|
135
|
-
delete(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersDeleteOptionalParams): Promise<void>;
|
|
136
|
-
deleteImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, ifMatch: string, options?: BlobContainersDeleteImmutabilityPolicyOptionalParams): Promise<BlobContainersDeleteImmutabilityPolicyResponse>;
|
|
137
|
-
extendImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, ifMatch: string, options?: BlobContainersExtendImmutabilityPolicyOptionalParams): Promise<BlobContainersExtendImmutabilityPolicyResponse>;
|
|
138
|
-
get(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersGetOptionalParams): Promise<BlobContainersGetResponse>;
|
|
139
|
-
getImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersGetImmutabilityPolicyOptionalParams): Promise<BlobContainersGetImmutabilityPolicyResponse>;
|
|
140
|
-
lease(resourceGroupName: string, accountName: string, containerName: string, options?: BlobContainersLeaseOptionalParams): Promise<BlobContainersLeaseResponse>;
|
|
141
|
-
list(resourceGroupName: string, accountName: string, options?: BlobContainersListOptionalParams): PagedAsyncIterableIterator<ListContainerItem>;
|
|
142
|
-
lockImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, ifMatch: string, options?: BlobContainersLockImmutabilityPolicyOptionalParams): Promise<BlobContainersLockImmutabilityPolicyResponse>;
|
|
143
|
-
setLegalHold(resourceGroupName: string, accountName: string, containerName: string, legalHold: LegalHold, options?: BlobContainersSetLegalHoldOptionalParams): Promise<BlobContainersSetLegalHoldResponse>;
|
|
144
|
-
update(resourceGroupName: string, accountName: string, containerName: string, blobContainer: BlobContainer, options?: BlobContainersUpdateOptionalParams): Promise<BlobContainersUpdateResponse>;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
// @public
|
|
148
|
-
export interface BlobContainersClearLegalHoldOptionalParams extends coreClient.OperationOptions {
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// @public
|
|
152
|
-
export type BlobContainersClearLegalHoldResponse = LegalHold;
|
|
153
|
-
|
|
154
|
-
// @public
|
|
155
|
-
export interface BlobContainersCreateOptionalParams extends coreClient.OperationOptions {
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// @public
|
|
159
|
-
export interface BlobContainersCreateOrUpdateImmutabilityPolicyHeaders {
|
|
160
|
-
eTag?: string;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
// @public
|
|
164
|
-
export interface BlobContainersCreateOrUpdateImmutabilityPolicyOptionalParams extends coreClient.OperationOptions {
|
|
165
|
-
ifMatch?: string;
|
|
166
|
-
parameters?: ImmutabilityPolicy;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
// @public
|
|
170
|
-
export type BlobContainersCreateOrUpdateImmutabilityPolicyResponse = BlobContainersCreateOrUpdateImmutabilityPolicyHeaders & ImmutabilityPolicy;
|
|
171
|
-
|
|
172
|
-
// @public
|
|
173
|
-
export type BlobContainersCreateResponse = BlobContainer;
|
|
174
|
-
|
|
175
|
-
// @public
|
|
176
|
-
export interface BlobContainersDeleteImmutabilityPolicyHeaders {
|
|
177
|
-
eTag?: string;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export interface BlobContainersDeleteImmutabilityPolicyOptionalParams extends coreClient.OperationOptions {
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
// @public
|
|
185
|
-
export type BlobContainersDeleteImmutabilityPolicyResponse = BlobContainersDeleteImmutabilityPolicyHeaders & ImmutabilityPolicy;
|
|
186
|
-
|
|
187
|
-
// @public
|
|
188
|
-
export interface BlobContainersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
// @public
|
|
192
|
-
export interface BlobContainersExtendImmutabilityPolicyHeaders {
|
|
193
|
-
eTag?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface BlobContainersExtendImmutabilityPolicyOptionalParams extends coreClient.OperationOptions {
|
|
198
|
-
parameters?: ImmutabilityPolicy;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
// @public
|
|
202
|
-
export type BlobContainersExtendImmutabilityPolicyResponse = BlobContainersExtendImmutabilityPolicyHeaders & ImmutabilityPolicy;
|
|
203
|
-
|
|
204
|
-
// @public
|
|
205
|
-
export interface BlobContainersGetImmutabilityPolicyHeaders {
|
|
206
|
-
eTag?: string;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// @public
|
|
210
|
-
export interface BlobContainersGetImmutabilityPolicyOptionalParams extends coreClient.OperationOptions {
|
|
211
|
-
ifMatch?: string;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// @public
|
|
215
|
-
export type BlobContainersGetImmutabilityPolicyResponse = BlobContainersGetImmutabilityPolicyHeaders & ImmutabilityPolicy;
|
|
216
|
-
|
|
217
|
-
// @public
|
|
218
|
-
export interface BlobContainersGetOptionalParams extends coreClient.OperationOptions {
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export type BlobContainersGetResponse = BlobContainer;
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export interface BlobContainersLeaseOptionalParams extends coreClient.OperationOptions {
|
|
226
|
-
parameters?: LeaseContainerRequest;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
// @public
|
|
230
|
-
export type BlobContainersLeaseResponse = LeaseContainerResponse;
|
|
231
|
-
|
|
232
|
-
// @public
|
|
233
|
-
export interface BlobContainersListNextOptionalParams extends coreClient.OperationOptions {
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
// @public
|
|
237
|
-
export type BlobContainersListNextResponse = ListContainerItems;
|
|
238
|
-
|
|
239
|
-
// @public
|
|
240
|
-
export interface BlobContainersListOptionalParams extends coreClient.OperationOptions {
|
|
241
|
-
filter?: string;
|
|
242
|
-
include?: ListContainersInclude;
|
|
243
|
-
maxpagesize?: string;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
// @public
|
|
247
|
-
export type BlobContainersListResponse = ListContainerItems;
|
|
248
|
-
|
|
249
|
-
// @public
|
|
250
|
-
export interface BlobContainersLockImmutabilityPolicyHeaders {
|
|
251
|
-
eTag?: string;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
// @public
|
|
255
|
-
export interface BlobContainersLockImmutabilityPolicyOptionalParams extends coreClient.OperationOptions {
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
// @public
|
|
259
|
-
export type BlobContainersLockImmutabilityPolicyResponse = BlobContainersLockImmutabilityPolicyHeaders & ImmutabilityPolicy;
|
|
260
|
-
|
|
261
|
-
// @public
|
|
262
|
-
export interface BlobContainersObjectLevelWormOptionalParams extends coreClient.OperationOptions {
|
|
263
|
-
resumeFrom?: string;
|
|
264
|
-
updateIntervalInMs?: number;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
// @public
|
|
268
|
-
export interface BlobContainersSetLegalHoldOptionalParams extends coreClient.OperationOptions {
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
// @public
|
|
272
|
-
export type BlobContainersSetLegalHoldResponse = LegalHold;
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export interface BlobContainersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
// @public
|
|
279
|
-
export type BlobContainersUpdateResponse = BlobContainer;
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export interface BlobInventoryCreationTime {
|
|
283
|
-
lastNDays?: number;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
// @public
|
|
287
|
-
export interface BlobInventoryPolicies {
|
|
288
|
-
createOrUpdate(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, properties: BlobInventoryPolicy, options?: BlobInventoryPoliciesCreateOrUpdateOptionalParams): Promise<BlobInventoryPoliciesCreateOrUpdateResponse>;
|
|
289
|
-
delete(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesDeleteOptionalParams): Promise<void>;
|
|
290
|
-
get(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesGetOptionalParams): Promise<BlobInventoryPoliciesGetResponse>;
|
|
291
|
-
list(resourceGroupName: string, accountName: string, options?: BlobInventoryPoliciesListOptionalParams): PagedAsyncIterableIterator<BlobInventoryPolicy>;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
// @public
|
|
295
|
-
export interface BlobInventoryPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export type BlobInventoryPoliciesCreateOrUpdateResponse = BlobInventoryPolicy;
|
|
300
|
-
|
|
301
|
-
// @public
|
|
302
|
-
export interface BlobInventoryPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export interface BlobInventoryPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
// @public
|
|
310
|
-
export type BlobInventoryPoliciesGetResponse = BlobInventoryPolicy;
|
|
311
|
-
|
|
312
|
-
// @public
|
|
313
|
-
export interface BlobInventoryPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
// @public
|
|
317
|
-
export type BlobInventoryPoliciesListResponse = ListBlobInventoryPolicy;
|
|
318
|
-
|
|
319
|
-
// @public
|
|
320
|
-
export interface BlobInventoryPolicy extends Resource {
|
|
321
|
-
readonly lastModifiedTime?: Date;
|
|
322
|
-
policy?: BlobInventoryPolicySchema;
|
|
323
|
-
readonly systemData?: SystemData;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
// @public
|
|
327
|
-
export interface BlobInventoryPolicyDefinition {
|
|
328
|
-
filters?: BlobInventoryPolicyFilter;
|
|
329
|
-
format: Format;
|
|
330
|
-
objectType: ObjectType;
|
|
331
|
-
schedule: Schedule;
|
|
332
|
-
schemaFields: string[];
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
// @public
|
|
336
|
-
export interface BlobInventoryPolicyFilter {
|
|
337
|
-
blobTypes?: string[];
|
|
338
|
-
creationTime?: BlobInventoryCreationTime;
|
|
339
|
-
excludePrefix?: string[];
|
|
340
|
-
includeBlobVersions?: boolean;
|
|
341
|
-
includeDeleted?: boolean;
|
|
342
|
-
includeSnapshots?: boolean;
|
|
343
|
-
prefixMatch?: string[];
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
// @public
|
|
347
|
-
export type BlobInventoryPolicyName = string;
|
|
348
|
-
|
|
349
|
-
// @public
|
|
350
|
-
export interface BlobInventoryPolicyRule {
|
|
351
|
-
definition: BlobInventoryPolicyDefinition;
|
|
352
|
-
destination: string;
|
|
353
|
-
enabled: boolean;
|
|
354
|
-
name: string;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
// @public
|
|
358
|
-
export interface BlobInventoryPolicySchema {
|
|
359
|
-
readonly destination?: string;
|
|
360
|
-
enabled: boolean;
|
|
361
|
-
rules: BlobInventoryPolicyRule[];
|
|
362
|
-
type: InventoryRuleType;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export interface BlobRestoreParameters {
|
|
367
|
-
blobRanges: BlobRestoreRange[];
|
|
368
|
-
timeToRestore: Date;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
// @public
|
|
372
|
-
export type BlobRestoreProgressStatus = string;
|
|
373
|
-
|
|
374
|
-
// @public
|
|
375
|
-
export interface BlobRestoreRange {
|
|
376
|
-
endRange: string;
|
|
377
|
-
startRange: string;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
// @public
|
|
381
|
-
export interface BlobRestoreStatus {
|
|
382
|
-
readonly failureReason?: string;
|
|
383
|
-
readonly parameters?: BlobRestoreParameters;
|
|
384
|
-
readonly restoreId?: string;
|
|
385
|
-
readonly status?: BlobRestoreProgressStatus;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
// @public (undocumented)
|
|
389
|
-
export interface BlobServiceItems {
|
|
390
|
-
readonly value?: BlobServiceProperties[];
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
// @public
|
|
394
|
-
export interface BlobServiceProperties extends Resource {
|
|
395
|
-
automaticSnapshotPolicyEnabled?: boolean;
|
|
396
|
-
changeFeed?: ChangeFeed;
|
|
397
|
-
containerDeleteRetentionPolicy?: DeleteRetentionPolicy;
|
|
398
|
-
cors?: CorsRules;
|
|
399
|
-
defaultServiceVersion?: string;
|
|
400
|
-
deleteRetentionPolicy?: DeleteRetentionPolicy;
|
|
401
|
-
isVersioningEnabled?: boolean;
|
|
402
|
-
lastAccessTimeTrackingPolicy?: LastAccessTimeTrackingPolicy;
|
|
403
|
-
restorePolicy?: RestorePolicyProperties;
|
|
404
|
-
readonly sku?: Sku;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
// @public
|
|
408
|
-
export interface BlobServices {
|
|
409
|
-
getServiceProperties(resourceGroupName: string, accountName: string, options?: BlobServicesGetServicePropertiesOptionalParams): Promise<BlobServicesGetServicePropertiesResponse>;
|
|
410
|
-
list(resourceGroupName: string, accountName: string, options?: BlobServicesListOptionalParams): PagedAsyncIterableIterator<BlobServiceProperties>;
|
|
411
|
-
setServiceProperties(resourceGroupName: string, accountName: string, parameters: BlobServiceProperties, options?: BlobServicesSetServicePropertiesOptionalParams): Promise<BlobServicesSetServicePropertiesResponse>;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
// @public
|
|
415
|
-
export interface BlobServicesGetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
// @public
|
|
419
|
-
export type BlobServicesGetServicePropertiesResponse = BlobServiceProperties;
|
|
420
|
-
|
|
421
|
-
// @public
|
|
422
|
-
export interface BlobServicesListOptionalParams extends coreClient.OperationOptions {
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
// @public
|
|
426
|
-
export type BlobServicesListResponse = BlobServiceItems;
|
|
427
|
-
|
|
428
|
-
// @public
|
|
429
|
-
export interface BlobServicesSetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
// @public
|
|
433
|
-
export type BlobServicesSetServicePropertiesResponse = BlobServiceProperties;
|
|
434
|
-
|
|
435
|
-
// @public
|
|
436
|
-
export interface BurstingConstants {
|
|
437
|
-
readonly burstFloorIops?: number;
|
|
438
|
-
readonly burstIOScalar?: number;
|
|
439
|
-
readonly burstTimeframeSeconds?: number;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// @public
|
|
443
|
-
export type Bypass = string;
|
|
444
|
-
|
|
445
|
-
// @public
|
|
446
|
-
export interface ChangeFeed {
|
|
447
|
-
enabled?: boolean;
|
|
448
|
-
retentionInDays?: number;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
// @public
|
|
452
|
-
export interface CheckNameAvailabilityResult {
|
|
453
|
-
readonly message?: string;
|
|
454
|
-
readonly nameAvailable?: boolean;
|
|
455
|
-
readonly reason?: Reason;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
// @public
|
|
459
|
-
export interface CloudError {
|
|
460
|
-
error?: CloudErrorBody;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
// @public
|
|
464
|
-
export interface CloudErrorBody {
|
|
465
|
-
code?: string;
|
|
466
|
-
details?: CloudErrorBody[];
|
|
467
|
-
message?: string;
|
|
468
|
-
target?: string;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
// @public
|
|
472
|
-
export interface CorsRule {
|
|
473
|
-
allowedHeaders: string[];
|
|
474
|
-
allowedMethods: AllowedMethods[];
|
|
475
|
-
allowedOrigins: string[];
|
|
476
|
-
exposedHeaders: string[];
|
|
477
|
-
maxAgeInSeconds: number;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
// @public
|
|
481
|
-
export interface CorsRules {
|
|
482
|
-
corsRules?: CorsRule[];
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
// @public
|
|
486
|
-
export type CreatedByType = string;
|
|
487
|
-
|
|
488
|
-
// @public
|
|
489
|
-
export interface CustomDomain {
|
|
490
|
-
name: string;
|
|
491
|
-
useSubDomainName?: boolean;
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
// @public
|
|
495
|
-
export interface DateAfterCreation {
|
|
496
|
-
daysAfterCreationGreaterThan: number;
|
|
497
|
-
daysAfterLastTierChangeGreaterThan?: number;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
// @public
|
|
501
|
-
export interface DateAfterModification {
|
|
502
|
-
daysAfterCreationGreaterThan?: number;
|
|
503
|
-
daysAfterLastAccessTimeGreaterThan?: number;
|
|
504
|
-
daysAfterLastTierChangeGreaterThan?: number;
|
|
505
|
-
daysAfterModificationGreaterThan?: number;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
// @public
|
|
509
|
-
export type DefaultAction = "Allow" | "Deny";
|
|
510
|
-
|
|
511
|
-
// @public
|
|
512
|
-
export type DefaultSharePermission = string;
|
|
513
|
-
|
|
514
|
-
// @public
|
|
515
|
-
export interface DeletedAccount extends ProxyResource {
|
|
516
|
-
readonly creationTime?: string;
|
|
517
|
-
readonly deletionTime?: string;
|
|
518
|
-
readonly location?: string;
|
|
519
|
-
readonly restoreReference?: string;
|
|
520
|
-
readonly storageAccountResourceId?: string;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
// @public
|
|
524
|
-
export interface DeletedAccountListResult {
|
|
525
|
-
readonly nextLink?: string;
|
|
526
|
-
readonly value?: DeletedAccount[];
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
// @public
|
|
530
|
-
export interface DeletedAccounts {
|
|
531
|
-
get(deletedAccountName: string, location: string, options?: DeletedAccountsGetOptionalParams): Promise<DeletedAccountsGetResponse>;
|
|
532
|
-
list(options?: DeletedAccountsListOptionalParams): PagedAsyncIterableIterator<DeletedAccount>;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
// @public
|
|
536
|
-
export interface DeletedAccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
// @public
|
|
540
|
-
export type DeletedAccountsGetResponse = DeletedAccount;
|
|
541
|
-
|
|
542
|
-
// @public
|
|
543
|
-
export interface DeletedAccountsListNextOptionalParams extends coreClient.OperationOptions {
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
// @public
|
|
547
|
-
export type DeletedAccountsListNextResponse = DeletedAccountListResult;
|
|
548
|
-
|
|
549
|
-
// @public
|
|
550
|
-
export interface DeletedAccountsListOptionalParams extends coreClient.OperationOptions {
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
// @public
|
|
554
|
-
export type DeletedAccountsListResponse = DeletedAccountListResult;
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export interface DeletedShare {
|
|
558
|
-
deletedShareName: string;
|
|
559
|
-
deletedShareVersion: string;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
// @public
|
|
563
|
-
export interface DeleteRetentionPolicy {
|
|
564
|
-
allowPermanentDelete?: boolean;
|
|
565
|
-
days?: number;
|
|
566
|
-
enabled?: boolean;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
// @public
|
|
570
|
-
export interface Dimension {
|
|
571
|
-
displayName?: string;
|
|
572
|
-
name?: string;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export type DirectoryServiceOptions = string;
|
|
577
|
-
|
|
578
|
-
// @public
|
|
579
|
-
export type DnsEndpointType = string;
|
|
580
|
-
|
|
581
|
-
// @public
|
|
582
|
-
export type EnabledProtocols = string;
|
|
583
|
-
|
|
584
|
-
// @public
|
|
585
|
-
export interface Encryption {
|
|
586
|
-
encryptionIdentity?: EncryptionIdentity;
|
|
587
|
-
keySource?: KeySource;
|
|
588
|
-
keyVaultProperties?: KeyVaultProperties;
|
|
589
|
-
requireInfrastructureEncryption?: boolean;
|
|
590
|
-
services?: EncryptionServices;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
// @public
|
|
594
|
-
export interface EncryptionIdentity {
|
|
595
|
-
encryptionFederatedIdentityClientId?: string;
|
|
596
|
-
encryptionUserAssignedIdentity?: string;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
// @public
|
|
600
|
-
export interface EncryptionScope extends Resource {
|
|
601
|
-
readonly creationTime?: Date;
|
|
602
|
-
keyVaultProperties?: EncryptionScopeKeyVaultProperties;
|
|
603
|
-
readonly lastModifiedTime?: Date;
|
|
604
|
-
requireInfrastructureEncryption?: boolean;
|
|
605
|
-
source?: EncryptionScopeSource;
|
|
606
|
-
state?: EncryptionScopeState;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
// @public
|
|
610
|
-
export interface EncryptionScopeKeyVaultProperties {
|
|
611
|
-
readonly currentVersionedKeyIdentifier?: string;
|
|
612
|
-
keyUri?: string;
|
|
613
|
-
readonly lastKeyRotationTimestamp?: Date;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
// @public
|
|
617
|
-
export interface EncryptionScopeListResult {
|
|
618
|
-
readonly nextLink?: string;
|
|
619
|
-
readonly value?: EncryptionScope[];
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
// @public
|
|
623
|
-
export interface EncryptionScopes {
|
|
624
|
-
get(resourceGroupName: string, accountName: string, encryptionScopeName: string, options?: EncryptionScopesGetOptionalParams): Promise<EncryptionScopesGetResponse>;
|
|
625
|
-
list(resourceGroupName: string, accountName: string, options?: EncryptionScopesListOptionalParams): PagedAsyncIterableIterator<EncryptionScope>;
|
|
626
|
-
patch(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPatchOptionalParams): Promise<EncryptionScopesPatchResponse>;
|
|
627
|
-
put(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPutOptionalParams): Promise<EncryptionScopesPutResponse>;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
// @public
|
|
631
|
-
export interface EncryptionScopesGetOptionalParams extends coreClient.OperationOptions {
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
// @public
|
|
635
|
-
export type EncryptionScopesGetResponse = EncryptionScope;
|
|
636
|
-
|
|
637
|
-
// @public
|
|
638
|
-
export interface EncryptionScopesListNextOptionalParams extends coreClient.OperationOptions {
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
// @public
|
|
642
|
-
export type EncryptionScopesListNextResponse = EncryptionScopeListResult;
|
|
643
|
-
|
|
644
|
-
// @public
|
|
645
|
-
export interface EncryptionScopesListOptionalParams extends coreClient.OperationOptions {
|
|
646
|
-
filter?: string;
|
|
647
|
-
include?: ListEncryptionScopesInclude;
|
|
648
|
-
maxpagesize?: number;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
// @public
|
|
652
|
-
export type EncryptionScopesListResponse = EncryptionScopeListResult;
|
|
653
|
-
|
|
654
|
-
// @public
|
|
655
|
-
export type EncryptionScopeSource = string;
|
|
656
|
-
|
|
657
|
-
// @public
|
|
658
|
-
export interface EncryptionScopesPatchOptionalParams extends coreClient.OperationOptions {
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
// @public
|
|
662
|
-
export type EncryptionScopesPatchResponse = EncryptionScope;
|
|
663
|
-
|
|
664
|
-
// @public
|
|
665
|
-
export interface EncryptionScopesPutOptionalParams extends coreClient.OperationOptions {
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
// @public
|
|
669
|
-
export type EncryptionScopesPutResponse = EncryptionScope;
|
|
670
|
-
|
|
671
|
-
// @public
|
|
672
|
-
export type EncryptionScopeState = string;
|
|
673
|
-
|
|
674
|
-
// @public
|
|
675
|
-
export interface EncryptionService {
|
|
676
|
-
enabled?: boolean;
|
|
677
|
-
keyType?: KeyType;
|
|
678
|
-
readonly lastEnabledTime?: Date;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
// @public
|
|
682
|
-
export interface EncryptionServices {
|
|
683
|
-
blob?: EncryptionService;
|
|
684
|
-
file?: EncryptionService;
|
|
685
|
-
queue?: EncryptionService;
|
|
686
|
-
table?: EncryptionService;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
// @public
|
|
690
|
-
export interface Endpoints {
|
|
691
|
-
readonly blob?: string;
|
|
692
|
-
readonly dfs?: string;
|
|
693
|
-
readonly file?: string;
|
|
694
|
-
internetEndpoints?: StorageAccountInternetEndpoints;
|
|
695
|
-
microsoftEndpoints?: StorageAccountMicrosoftEndpoints;
|
|
696
|
-
readonly queue?: string;
|
|
697
|
-
readonly table?: string;
|
|
698
|
-
readonly web?: string;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
// @public
|
|
702
|
-
export interface ErrorAdditionalInfo {
|
|
703
|
-
readonly info?: Record<string, unknown>;
|
|
704
|
-
readonly type?: string;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
// @public
|
|
708
|
-
export interface ErrorDetail {
|
|
709
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
710
|
-
readonly code?: string;
|
|
711
|
-
readonly details?: ErrorDetail[];
|
|
712
|
-
readonly message?: string;
|
|
713
|
-
readonly target?: string;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
// @public
|
|
717
|
-
export interface ErrorResponse {
|
|
718
|
-
error?: ErrorResponseBody;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
// @public
|
|
722
|
-
export interface ErrorResponseAutoGenerated {
|
|
723
|
-
error?: ErrorDetail;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
// @public
|
|
727
|
-
export interface ErrorResponseBody {
|
|
728
|
-
code?: string;
|
|
729
|
-
message?: string;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// @public
|
|
733
|
-
export interface ExecutionTarget {
|
|
734
|
-
excludePrefix?: string[];
|
|
735
|
-
prefix?: string[];
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
// @public
|
|
739
|
-
export interface ExecutionTrigger {
|
|
740
|
-
parameters: TriggerParameters;
|
|
741
|
-
type: TriggerType;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
// @public
|
|
745
|
-
export interface ExecutionTriggerUpdate {
|
|
746
|
-
parameters?: TriggerParametersUpdate;
|
|
747
|
-
type?: TriggerType;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
// @public
|
|
751
|
-
export type ExpirationAction = string;
|
|
752
|
-
|
|
753
|
-
// @public
|
|
754
|
-
export interface ExtendedLocation {
|
|
755
|
-
name?: string;
|
|
756
|
-
type?: ExtendedLocationTypes;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
// @public
|
|
760
|
-
export type ExtendedLocationTypes = string;
|
|
761
|
-
|
|
762
|
-
// @public (undocumented)
|
|
763
|
-
export interface FileServiceItems {
|
|
764
|
-
readonly value?: FileServiceProperties[];
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
// @public
|
|
768
|
-
export interface FileServiceProperties extends Resource {
|
|
769
|
-
cors?: CorsRules;
|
|
770
|
-
protocolSettings?: ProtocolSettings;
|
|
771
|
-
shareDeleteRetentionPolicy?: DeleteRetentionPolicy;
|
|
772
|
-
readonly sku?: Sku;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
// @public
|
|
776
|
-
export interface FileServices {
|
|
777
|
-
getServiceProperties(resourceGroupName: string, accountName: string, options?: FileServicesGetServicePropertiesOptionalParams): Promise<FileServicesGetServicePropertiesResponse>;
|
|
778
|
-
getServiceUsage(resourceGroupName: string, accountName: string, options?: FileServicesGetServiceUsageOptionalParams): Promise<FileServicesGetServiceUsageResponse>;
|
|
779
|
-
list(resourceGroupName: string, accountName: string, options?: FileServicesListOptionalParams): Promise<FileServicesListResponse>;
|
|
780
|
-
listServiceUsages(resourceGroupName: string, accountName: string, options?: FileServicesListServiceUsagesOptionalParams): PagedAsyncIterableIterator<FileServiceUsage>;
|
|
781
|
-
setServiceProperties(resourceGroupName: string, accountName: string, parameters: FileServiceProperties, options?: FileServicesSetServicePropertiesOptionalParams): Promise<FileServicesSetServicePropertiesResponse>;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
// @public
|
|
785
|
-
export interface FileServicesGetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
// @public
|
|
789
|
-
export type FileServicesGetServicePropertiesResponse = FileServiceProperties;
|
|
790
|
-
|
|
791
|
-
// @public
|
|
792
|
-
export interface FileServicesGetServiceUsageOptionalParams extends coreClient.OperationOptions {
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
// @public
|
|
796
|
-
export type FileServicesGetServiceUsageResponse = FileServiceUsage;
|
|
797
|
-
|
|
798
|
-
// @public
|
|
799
|
-
export interface FileServicesListOptionalParams extends coreClient.OperationOptions {
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
// @public
|
|
803
|
-
export type FileServicesListResponse = FileServiceItems;
|
|
804
|
-
|
|
805
|
-
// @public
|
|
806
|
-
export interface FileServicesListServiceUsagesNextOptionalParams extends coreClient.OperationOptions {
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
// @public
|
|
810
|
-
export type FileServicesListServiceUsagesNextResponse = FileServiceUsages;
|
|
811
|
-
|
|
812
|
-
// @public
|
|
813
|
-
export interface FileServicesListServiceUsagesOptionalParams extends coreClient.OperationOptions {
|
|
814
|
-
maxpagesize?: number;
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
// @public
|
|
818
|
-
export type FileServicesListServiceUsagesResponse = FileServiceUsages;
|
|
819
|
-
|
|
820
|
-
// @public
|
|
821
|
-
export interface FileServicesSetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
// @public
|
|
825
|
-
export type FileServicesSetServicePropertiesResponse = FileServiceProperties;
|
|
826
|
-
|
|
827
|
-
// @public
|
|
828
|
-
export interface FileServiceUsage extends Resource {
|
|
829
|
-
readonly properties?: FileServiceUsageProperties;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
// @public
|
|
833
|
-
export interface FileServiceUsageProperties {
|
|
834
|
-
readonly burstingConstants?: BurstingConstants;
|
|
835
|
-
readonly fileShareLimits?: FileShareLimits;
|
|
836
|
-
readonly fileShareRecommendations?: FileShareRecommendations;
|
|
837
|
-
readonly storageAccountLimits?: AccountLimits;
|
|
838
|
-
readonly storageAccountUsage?: AccountUsage;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
// @public
|
|
842
|
-
export interface FileServiceUsages {
|
|
843
|
-
readonly nextLink?: string;
|
|
844
|
-
readonly value?: FileServiceUsage[];
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
// @public
|
|
848
|
-
export interface FileShare extends AzureEntityResource {
|
|
849
|
-
accessTier?: ShareAccessTier;
|
|
850
|
-
readonly accessTierChangeTime?: Date;
|
|
851
|
-
readonly accessTierStatus?: string;
|
|
852
|
-
readonly deleted?: boolean;
|
|
853
|
-
readonly deletedTime?: Date;
|
|
854
|
-
enabledProtocols?: EnabledProtocols;
|
|
855
|
-
fileSharePaidBursting?: FileSharePropertiesFileSharePaidBursting;
|
|
856
|
-
readonly includedBurstIops?: number;
|
|
857
|
-
readonly lastModifiedTime?: Date;
|
|
858
|
-
readonly leaseDuration?: LeaseDuration;
|
|
859
|
-
readonly leaseState?: LeaseState;
|
|
860
|
-
readonly leaseStatus?: LeaseStatus;
|
|
861
|
-
readonly maxBurstCreditsForIops?: number;
|
|
862
|
-
metadata?: {
|
|
863
|
-
[propertyName: string]: string;
|
|
864
|
-
};
|
|
865
|
-
readonly nextAllowedProvisionedBandwidthDowngradeTime?: Date;
|
|
866
|
-
readonly nextAllowedProvisionedIopsDowngradeTime?: Date;
|
|
867
|
-
readonly nextAllowedQuotaDowngradeTime?: Date;
|
|
868
|
-
provisionedBandwidthMibps?: number;
|
|
869
|
-
provisionedIops?: number;
|
|
870
|
-
readonly remainingRetentionDays?: number;
|
|
871
|
-
rootSquash?: RootSquashType;
|
|
872
|
-
shareQuota?: number;
|
|
873
|
-
readonly shareUsageBytes?: number;
|
|
874
|
-
signedIdentifiers?: SignedIdentifier[];
|
|
875
|
-
readonly snapshotTime?: Date;
|
|
876
|
-
readonly version?: string;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
// @public
|
|
880
|
-
export interface FileShareItem extends AzureEntityResource {
|
|
881
|
-
accessTier?: ShareAccessTier;
|
|
882
|
-
readonly accessTierChangeTime?: Date;
|
|
883
|
-
readonly accessTierStatus?: string;
|
|
884
|
-
readonly deleted?: boolean;
|
|
885
|
-
readonly deletedTime?: Date;
|
|
886
|
-
enabledProtocols?: EnabledProtocols;
|
|
887
|
-
fileSharePaidBursting?: FileSharePropertiesFileSharePaidBursting;
|
|
888
|
-
readonly includedBurstIops?: number;
|
|
889
|
-
readonly lastModifiedTime?: Date;
|
|
890
|
-
readonly leaseDuration?: LeaseDuration;
|
|
891
|
-
readonly leaseState?: LeaseState;
|
|
892
|
-
readonly leaseStatus?: LeaseStatus;
|
|
893
|
-
readonly maxBurstCreditsForIops?: number;
|
|
894
|
-
metadata?: {
|
|
895
|
-
[propertyName: string]: string;
|
|
896
|
-
};
|
|
897
|
-
readonly nextAllowedProvisionedBandwidthDowngradeTime?: Date;
|
|
898
|
-
readonly nextAllowedProvisionedIopsDowngradeTime?: Date;
|
|
899
|
-
readonly nextAllowedQuotaDowngradeTime?: Date;
|
|
900
|
-
provisionedBandwidthMibps?: number;
|
|
901
|
-
provisionedIops?: number;
|
|
902
|
-
readonly remainingRetentionDays?: number;
|
|
903
|
-
rootSquash?: RootSquashType;
|
|
904
|
-
shareQuota?: number;
|
|
905
|
-
readonly shareUsageBytes?: number;
|
|
906
|
-
signedIdentifiers?: SignedIdentifier[];
|
|
907
|
-
readonly snapshotTime?: Date;
|
|
908
|
-
readonly version?: string;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
// @public
|
|
912
|
-
export interface FileShareItems {
|
|
913
|
-
readonly nextLink?: string;
|
|
914
|
-
readonly value?: FileShareItem[];
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
// @public
|
|
918
|
-
export interface FileShareLimits {
|
|
919
|
-
readonly maxProvisionedBandwidthMiBPerSec?: number;
|
|
920
|
-
readonly maxProvisionedIops?: number;
|
|
921
|
-
readonly maxProvisionedStorageGiB?: number;
|
|
922
|
-
readonly minProvisionedBandwidthMiBPerSec?: number;
|
|
923
|
-
readonly minProvisionedIops?: number;
|
|
924
|
-
readonly minProvisionedStorageGiB?: number;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
// @public
|
|
928
|
-
export interface FileSharePropertiesFileSharePaidBursting {
|
|
929
|
-
paidBurstingEnabled?: boolean;
|
|
930
|
-
paidBurstingMaxBandwidthMibps?: number;
|
|
931
|
-
paidBurstingMaxIops?: number;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
// @public
|
|
935
|
-
export interface FileShareRecommendations {
|
|
936
|
-
readonly bandwidthScalar?: number;
|
|
937
|
-
readonly baseBandwidthMiBPerSec?: number;
|
|
938
|
-
readonly baseIops?: number;
|
|
939
|
-
readonly ioScalar?: number;
|
|
940
|
-
}
|
|
941
|
-
|
|
942
|
-
// @public
|
|
943
|
-
export interface FileShares {
|
|
944
|
-
create(resourceGroupName: string, accountName: string, shareName: string, fileShare: FileShare, options?: FileSharesCreateOptionalParams): Promise<FileSharesCreateResponse>;
|
|
945
|
-
delete(resourceGroupName: string, accountName: string, shareName: string, options?: FileSharesDeleteOptionalParams): Promise<void>;
|
|
946
|
-
get(resourceGroupName: string, accountName: string, shareName: string, options?: FileSharesGetOptionalParams): Promise<FileSharesGetResponse>;
|
|
947
|
-
lease(resourceGroupName: string, accountName: string, shareName: string, options?: FileSharesLeaseOptionalParams): Promise<FileSharesLeaseResponse>;
|
|
948
|
-
list(resourceGroupName: string, accountName: string, options?: FileSharesListOptionalParams): PagedAsyncIterableIterator<FileShareItem>;
|
|
949
|
-
restore(resourceGroupName: string, accountName: string, shareName: string, deletedShare: DeletedShare, options?: FileSharesRestoreOptionalParams): Promise<void>;
|
|
950
|
-
update(resourceGroupName: string, accountName: string, shareName: string, fileShare: FileShare, options?: FileSharesUpdateOptionalParams): Promise<FileSharesUpdateResponse>;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
// @public
|
|
954
|
-
export interface FileSharesCreateOptionalParams extends coreClient.OperationOptions {
|
|
955
|
-
expand?: string;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
// @public
|
|
959
|
-
export type FileSharesCreateResponse = FileShare;
|
|
960
|
-
|
|
961
|
-
// @public
|
|
962
|
-
export interface FileSharesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
963
|
-
include?: string;
|
|
964
|
-
xMsSnapshot?: string;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
// @public
|
|
968
|
-
export interface FileSharesGetOptionalParams extends coreClient.OperationOptions {
|
|
969
|
-
expand?: string;
|
|
970
|
-
xMsSnapshot?: string;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
// @public
|
|
974
|
-
export type FileSharesGetResponse = FileShare;
|
|
975
|
-
|
|
976
|
-
// @public
|
|
977
|
-
export interface FileSharesLeaseHeaders {
|
|
978
|
-
eTag?: string;
|
|
979
|
-
}
|
|
980
|
-
|
|
981
|
-
// @public
|
|
982
|
-
export interface FileSharesLeaseOptionalParams extends coreClient.OperationOptions {
|
|
983
|
-
parameters?: LeaseShareRequest;
|
|
984
|
-
xMsSnapshot?: string;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
// @public
|
|
988
|
-
export type FileSharesLeaseResponse = FileSharesLeaseHeaders & LeaseShareResponse;
|
|
989
|
-
|
|
990
|
-
// @public
|
|
991
|
-
export interface FileSharesListNextOptionalParams extends coreClient.OperationOptions {
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
// @public
|
|
995
|
-
export type FileSharesListNextResponse = FileShareItems;
|
|
996
|
-
|
|
997
|
-
// @public
|
|
998
|
-
export interface FileSharesListOptionalParams extends coreClient.OperationOptions {
|
|
999
|
-
expand?: string;
|
|
1000
|
-
filter?: string;
|
|
1001
|
-
maxpagesize?: string;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
// @public
|
|
1005
|
-
export type FileSharesListResponse = FileShareItems;
|
|
1006
|
-
|
|
1007
|
-
// @public
|
|
1008
|
-
export interface FileSharesRestoreOptionalParams extends coreClient.OperationOptions {
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
// @public
|
|
1012
|
-
export interface FileSharesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
// @public
|
|
1016
|
-
export type FileSharesUpdateResponse = FileShare;
|
|
1017
|
-
|
|
1018
|
-
// @public
|
|
1019
|
-
export type Format = string;
|
|
1020
|
-
|
|
1021
|
-
// @public
|
|
1022
|
-
export interface GeoReplicationStats {
|
|
1023
|
-
readonly canFailover?: boolean;
|
|
1024
|
-
readonly canPlannedFailover?: boolean;
|
|
1025
|
-
readonly lastSyncTime?: Date;
|
|
1026
|
-
readonly postFailoverRedundancy?: PostFailoverRedundancy;
|
|
1027
|
-
readonly postPlannedFailoverRedundancy?: PostPlannedFailoverRedundancy;
|
|
1028
|
-
readonly status?: GeoReplicationStatus;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
// @public
|
|
1032
|
-
export type GeoReplicationStatus = string;
|
|
1033
|
-
|
|
1034
|
-
// @public
|
|
1035
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
1036
|
-
|
|
1037
|
-
// @public
|
|
1038
|
-
export type HttpProtocol = "https,http" | "https";
|
|
1039
|
-
|
|
1040
|
-
// @public
|
|
1041
|
-
export interface Identity {
|
|
1042
|
-
readonly principalId?: string;
|
|
1043
|
-
readonly tenantId?: string;
|
|
1044
|
-
type: IdentityType;
|
|
1045
|
-
userAssignedIdentities?: {
|
|
1046
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
1047
|
-
};
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
// @public
|
|
1051
|
-
export type IdentityType = string;
|
|
1052
|
-
|
|
1053
|
-
// @public
|
|
1054
|
-
export interface ImmutabilityPolicy extends AzureEntityResource {
|
|
1055
|
-
allowProtectedAppendWrites?: boolean;
|
|
1056
|
-
allowProtectedAppendWritesAll?: boolean;
|
|
1057
|
-
immutabilityPeriodSinceCreationInDays?: number;
|
|
1058
|
-
readonly state?: ImmutabilityPolicyState;
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
// @public
|
|
1062
|
-
export interface ImmutabilityPolicyProperties {
|
|
1063
|
-
allowProtectedAppendWrites?: boolean;
|
|
1064
|
-
allowProtectedAppendWritesAll?: boolean;
|
|
1065
|
-
readonly etag?: string;
|
|
1066
|
-
immutabilityPeriodSinceCreationInDays?: number;
|
|
1067
|
-
readonly state?: ImmutabilityPolicyState;
|
|
1068
|
-
readonly updateHistory?: UpdateHistoryProperty[];
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
// @public
|
|
1072
|
-
export type ImmutabilityPolicyState = string;
|
|
1073
|
-
|
|
1074
|
-
// @public
|
|
1075
|
-
export type ImmutabilityPolicyUpdateType = string;
|
|
1076
|
-
|
|
1077
|
-
// @public
|
|
1078
|
-
export interface ImmutableStorageAccount {
|
|
1079
|
-
enabled?: boolean;
|
|
1080
|
-
immutabilityPolicy?: AccountImmutabilityPolicyProperties;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
// @public
|
|
1084
|
-
export interface ImmutableStorageWithVersioning {
|
|
1085
|
-
enabled?: boolean;
|
|
1086
|
-
readonly migrationState?: MigrationState;
|
|
1087
|
-
readonly timeStamp?: Date;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
// @public
|
|
1091
|
-
export type InventoryRuleType = string;
|
|
1092
|
-
|
|
1093
|
-
// @public
|
|
1094
|
-
export interface IPRule {
|
|
1095
|
-
action?: "Allow";
|
|
1096
|
-
iPAddressOrRange: string;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
// @public
|
|
1100
|
-
export type IssueType = string;
|
|
1101
|
-
|
|
1102
|
-
// @public
|
|
1103
|
-
export interface KeyCreationTime {
|
|
1104
|
-
// (undocumented)
|
|
1105
|
-
key1?: Date;
|
|
1106
|
-
// (undocumented)
|
|
1107
|
-
key2?: Date;
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
// @public
|
|
1111
|
-
export type KeyPermission = "Read" | "Full";
|
|
1112
|
-
|
|
1113
|
-
// @public
|
|
1114
|
-
export interface KeyPolicy {
|
|
1115
|
-
keyExpirationPeriodInDays: number;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
// @public
|
|
1119
|
-
export type KeySource = string;
|
|
1120
|
-
|
|
1121
|
-
// @public
|
|
1122
|
-
export type KeyType = string;
|
|
1123
|
-
|
|
1124
|
-
// @public
|
|
1125
|
-
export interface KeyVaultProperties {
|
|
1126
|
-
readonly currentVersionedKeyExpirationTimestamp?: Date;
|
|
1127
|
-
readonly currentVersionedKeyIdentifier?: string;
|
|
1128
|
-
keyName?: string;
|
|
1129
|
-
keyVaultUri?: string;
|
|
1130
|
-
keyVersion?: string;
|
|
1131
|
-
readonly lastKeyRotationTimestamp?: Date;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
// @public
|
|
1135
|
-
export type Kind = string;
|
|
1136
|
-
|
|
1137
|
-
// @public
|
|
1138
|
-
export enum KnownAccountImmutabilityPolicyState {
|
|
1139
|
-
Disabled = "Disabled",
|
|
1140
|
-
Locked = "Locked",
|
|
1141
|
-
Unlocked = "Unlocked"
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
// @public
|
|
1145
|
-
export enum KnownAccountType {
|
|
1146
|
-
Computer = "Computer",
|
|
1147
|
-
User = "User"
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
// @public
|
|
1151
|
-
export enum KnownAllowedCopyScope {
|
|
1152
|
-
AAD = "AAD",
|
|
1153
|
-
PrivateLink = "PrivateLink"
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1156
|
-
// @public
|
|
1157
|
-
export enum KnownAllowedMethods {
|
|
1158
|
-
Connect = "CONNECT",
|
|
1159
|
-
Delete = "DELETE",
|
|
1160
|
-
GET = "GET",
|
|
1161
|
-
Head = "HEAD",
|
|
1162
|
-
Merge = "MERGE",
|
|
1163
|
-
Options = "OPTIONS",
|
|
1164
|
-
Patch = "PATCH",
|
|
1165
|
-
Post = "POST",
|
|
1166
|
-
PUT = "PUT",
|
|
1167
|
-
Trace = "TRACE"
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
// @public
|
|
1171
|
-
export enum KnownBlobInventoryPolicyName {
|
|
1172
|
-
Default = "default"
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
// @public
|
|
1176
|
-
export enum KnownBlobRestoreProgressStatus {
|
|
1177
|
-
Complete = "Complete",
|
|
1178
|
-
Failed = "Failed",
|
|
1179
|
-
InProgress = "InProgress"
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
// @public
|
|
1183
|
-
export enum KnownBypass {
|
|
1184
|
-
AzureServices = "AzureServices",
|
|
1185
|
-
Logging = "Logging",
|
|
1186
|
-
Metrics = "Metrics",
|
|
1187
|
-
None = "None"
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
// @public
|
|
1191
|
-
export enum KnownCreatedByType {
|
|
1192
|
-
Application = "Application",
|
|
1193
|
-
Key = "Key",
|
|
1194
|
-
ManagedIdentity = "ManagedIdentity",
|
|
1195
|
-
User = "User"
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
// @public
|
|
1199
|
-
export enum KnownDefaultSharePermission {
|
|
1200
|
-
None = "None",
|
|
1201
|
-
StorageFileDataSmbShareContributor = "StorageFileDataSmbShareContributor",
|
|
1202
|
-
StorageFileDataSmbShareElevatedContributor = "StorageFileDataSmbShareElevatedContributor",
|
|
1203
|
-
StorageFileDataSmbShareReader = "StorageFileDataSmbShareReader"
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
// @public
|
|
1207
|
-
export enum KnownDirectoryServiceOptions {
|
|
1208
|
-
Aadds = "AADDS",
|
|
1209
|
-
Aadkerb = "AADKERB",
|
|
1210
|
-
AD = "AD",
|
|
1211
|
-
None = "None"
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
// @public
|
|
1215
|
-
export enum KnownDnsEndpointType {
|
|
1216
|
-
AzureDnsZone = "AzureDnsZone",
|
|
1217
|
-
Standard = "Standard"
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
// @public
|
|
1221
|
-
export enum KnownEnabledProtocols {
|
|
1222
|
-
NFS = "NFS",
|
|
1223
|
-
SMB = "SMB"
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
// @public
|
|
1227
|
-
export enum KnownEncryptionScopeSource {
|
|
1228
|
-
MicrosoftKeyVault = "Microsoft.KeyVault",
|
|
1229
|
-
MicrosoftStorage = "Microsoft.Storage"
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
// @public
|
|
1233
|
-
export enum KnownEncryptionScopeState {
|
|
1234
|
-
Disabled = "Disabled",
|
|
1235
|
-
Enabled = "Enabled"
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
// @public
|
|
1239
|
-
export enum KnownExpirationAction {
|
|
1240
|
-
Block = "Block",
|
|
1241
|
-
Log = "Log"
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
// @public
|
|
1245
|
-
export enum KnownExtendedLocationTypes {
|
|
1246
|
-
EdgeZone = "EdgeZone"
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
// @public
|
|
1250
|
-
export enum KnownFormat {
|
|
1251
|
-
Csv = "Csv",
|
|
1252
|
-
Parquet = "Parquet"
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
// @public
|
|
1256
|
-
export enum KnownGeoReplicationStatus {
|
|
1257
|
-
Bootstrap = "Bootstrap",
|
|
1258
|
-
Live = "Live",
|
|
1259
|
-
Unavailable = "Unavailable"
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
// @public
|
|
1263
|
-
export enum KnownIdentityType {
|
|
1264
|
-
None = "None",
|
|
1265
|
-
SystemAssigned = "SystemAssigned",
|
|
1266
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
1267
|
-
UserAssigned = "UserAssigned"
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
// @public
|
|
1271
|
-
export enum KnownImmutabilityPolicyState {
|
|
1272
|
-
Locked = "Locked",
|
|
1273
|
-
Unlocked = "Unlocked"
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
// @public
|
|
1277
|
-
export enum KnownImmutabilityPolicyUpdateType {
|
|
1278
|
-
Extend = "extend",
|
|
1279
|
-
Lock = "lock",
|
|
1280
|
-
Put = "put"
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
// @public
|
|
1284
|
-
export enum KnownInventoryRuleType {
|
|
1285
|
-
Inventory = "Inventory"
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
// @public
|
|
1289
|
-
export enum KnownIssueType {
|
|
1290
|
-
ConfigurationPropagationFailure = "ConfigurationPropagationFailure",
|
|
1291
|
-
Unknown = "Unknown"
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
// @public
|
|
1295
|
-
export enum KnownKeySource {
|
|
1296
|
-
MicrosoftKeyvault = "Microsoft.Keyvault",
|
|
1297
|
-
MicrosoftStorage = "Microsoft.Storage"
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
// @public
|
|
1301
|
-
export enum KnownKeyType {
|
|
1302
|
-
Account = "Account",
|
|
1303
|
-
Service = "Service"
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
// @public
|
|
1307
|
-
export enum KnownKind {
|
|
1308
|
-
BlobStorage = "BlobStorage",
|
|
1309
|
-
BlockBlobStorage = "BlockBlobStorage",
|
|
1310
|
-
FileStorage = "FileStorage",
|
|
1311
|
-
Storage = "Storage",
|
|
1312
|
-
StorageV2 = "StorageV2"
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
// @public
|
|
1316
|
-
export enum KnownLargeFileSharesState {
|
|
1317
|
-
Disabled = "Disabled",
|
|
1318
|
-
Enabled = "Enabled"
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
// @public
|
|
1322
|
-
export enum KnownLeaseContainerRequestAction {
|
|
1323
|
-
Acquire = "Acquire",
|
|
1324
|
-
Break = "Break",
|
|
1325
|
-
Change = "Change",
|
|
1326
|
-
Release = "Release",
|
|
1327
|
-
Renew = "Renew"
|
|
1328
|
-
}
|
|
1329
|
-
|
|
1330
|
-
// @public
|
|
1331
|
-
export enum KnownLeaseDuration {
|
|
1332
|
-
Fixed = "Fixed",
|
|
1333
|
-
Infinite = "Infinite"
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
// @public
|
|
1337
|
-
export enum KnownLeaseShareAction {
|
|
1338
|
-
Acquire = "Acquire",
|
|
1339
|
-
Break = "Break",
|
|
1340
|
-
Change = "Change",
|
|
1341
|
-
Release = "Release",
|
|
1342
|
-
Renew = "Renew"
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
// @public
|
|
1346
|
-
export enum KnownLeaseState {
|
|
1347
|
-
Available = "Available",
|
|
1348
|
-
Breaking = "Breaking",
|
|
1349
|
-
Broken = "Broken",
|
|
1350
|
-
Expired = "Expired",
|
|
1351
|
-
Leased = "Leased"
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
// @public
|
|
1355
|
-
export enum KnownLeaseStatus {
|
|
1356
|
-
Locked = "Locked",
|
|
1357
|
-
Unlocked = "Unlocked"
|
|
1358
|
-
}
|
|
1359
|
-
|
|
1360
|
-
// @public
|
|
1361
|
-
export enum KnownListContainersInclude {
|
|
1362
|
-
Deleted = "deleted"
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
|
-
// @public
|
|
1366
|
-
export enum KnownListEncryptionScopesInclude {
|
|
1367
|
-
All = "All",
|
|
1368
|
-
Disabled = "Disabled",
|
|
1369
|
-
Enabled = "Enabled"
|
|
1370
|
-
}
|
|
1371
|
-
|
|
1372
|
-
// @public
|
|
1373
|
-
export enum KnownListLocalUserIncludeParam {
|
|
1374
|
-
Nfsv3 = "nfsv3"
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
|
-
// @public
|
|
1378
|
-
export enum KnownManagementPolicyName {
|
|
1379
|
-
Default = "default"
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
// @public
|
|
1383
|
-
export enum KnownMigrationName {
|
|
1384
|
-
Default = "default"
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
// @public
|
|
1388
|
-
export enum KnownMigrationState {
|
|
1389
|
-
Completed = "Completed",
|
|
1390
|
-
InProgress = "InProgress"
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
// @public
|
|
1394
|
-
export enum KnownMigrationStatus {
|
|
1395
|
-
Complete = "Complete",
|
|
1396
|
-
Failed = "Failed",
|
|
1397
|
-
InProgress = "InProgress",
|
|
1398
|
-
Invalid = "Invalid",
|
|
1399
|
-
SubmittedForConversion = "SubmittedForConversion"
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
// @public
|
|
1403
|
-
export enum KnownMinimumTlsVersion {
|
|
1404
|
-
TLS10 = "TLS1_0",
|
|
1405
|
-
TLS11 = "TLS1_1",
|
|
1406
|
-
TLS12 = "TLS1_2",
|
|
1407
|
-
TLS13 = "TLS1_3"
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
|
-
// @public
|
|
1411
|
-
export enum KnownName {
|
|
1412
|
-
AccessTimeTracking = "AccessTimeTracking"
|
|
1413
|
-
}
|
|
1414
|
-
|
|
1415
|
-
// @public
|
|
1416
|
-
export enum KnownNetworkSecurityPerimeterConfigurationProvisioningState {
|
|
1417
|
-
Accepted = "Accepted",
|
|
1418
|
-
Canceled = "Canceled",
|
|
1419
|
-
Deleting = "Deleting",
|
|
1420
|
-
Failed = "Failed",
|
|
1421
|
-
Succeeded = "Succeeded"
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
// @public
|
|
1425
|
-
export enum KnownNspAccessRuleDirection {
|
|
1426
|
-
Inbound = "Inbound",
|
|
1427
|
-
Outbound = "Outbound"
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
// @public
|
|
1431
|
-
export enum KnownObjectType {
|
|
1432
|
-
Blob = "Blob",
|
|
1433
|
-
Container = "Container"
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
// @public
|
|
1437
|
-
export enum KnownPermissions {
|
|
1438
|
-
// (undocumented)
|
|
1439
|
-
A = "a",
|
|
1440
|
-
// (undocumented)
|
|
1441
|
-
C = "c",
|
|
1442
|
-
// (undocumented)
|
|
1443
|
-
D = "d",
|
|
1444
|
-
// (undocumented)
|
|
1445
|
-
L = "l",
|
|
1446
|
-
// (undocumented)
|
|
1447
|
-
P = "p",
|
|
1448
|
-
// (undocumented)
|
|
1449
|
-
R = "r",
|
|
1450
|
-
// (undocumented)
|
|
1451
|
-
U = "u",
|
|
1452
|
-
// (undocumented)
|
|
1453
|
-
W = "w"
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
|
-
// @public
|
|
1457
|
-
export enum KnownPostFailoverRedundancy {
|
|
1458
|
-
StandardLRS = "Standard_LRS",
|
|
1459
|
-
StandardZRS = "Standard_ZRS"
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
// @public
|
|
1463
|
-
export enum KnownPostPlannedFailoverRedundancy {
|
|
1464
|
-
StandardGRS = "Standard_GRS",
|
|
1465
|
-
StandardGzrs = "Standard_GZRS",
|
|
1466
|
-
StandardRagrs = "Standard_RAGRS",
|
|
1467
|
-
StandardRagzrs = "Standard_RAGZRS"
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
// @public
|
|
1471
|
-
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
1472
|
-
Creating = "Creating",
|
|
1473
|
-
Deleting = "Deleting",
|
|
1474
|
-
Failed = "Failed",
|
|
1475
|
-
Succeeded = "Succeeded"
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
// @public
|
|
1479
|
-
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
1480
|
-
Approved = "Approved",
|
|
1481
|
-
Pending = "Pending",
|
|
1482
|
-
Rejected = "Rejected"
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
// @public
|
|
1486
|
-
export enum KnownPublicNetworkAccess {
|
|
1487
|
-
Disabled = "Disabled",
|
|
1488
|
-
Enabled = "Enabled",
|
|
1489
|
-
SecuredByPerimeter = "SecuredByPerimeter"
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
// @public
|
|
1493
|
-
export enum KnownReasonCode {
|
|
1494
|
-
NotAvailableForSubscription = "NotAvailableForSubscription",
|
|
1495
|
-
QuotaId = "QuotaId"
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
// @public
|
|
1499
|
-
export enum KnownResourceAssociationAccessMode {
|
|
1500
|
-
Audit = "Audit",
|
|
1501
|
-
Enforced = "Enforced",
|
|
1502
|
-
Learning = "Learning"
|
|
1503
|
-
}
|
|
1504
|
-
|
|
1505
|
-
// @public
|
|
1506
|
-
export enum KnownRootSquashType {
|
|
1507
|
-
AllSquash = "AllSquash",
|
|
1508
|
-
NoRootSquash = "NoRootSquash",
|
|
1509
|
-
RootSquash = "RootSquash"
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
|
-
// @public
|
|
1513
|
-
export enum KnownRoutingChoice {
|
|
1514
|
-
InternetRouting = "InternetRouting",
|
|
1515
|
-
MicrosoftRouting = "MicrosoftRouting"
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
// @public
|
|
1519
|
-
export enum KnownRuleType {
|
|
1520
|
-
Lifecycle = "Lifecycle"
|
|
1521
|
-
}
|
|
1522
|
-
|
|
1523
|
-
// @public
|
|
1524
|
-
export enum KnownRunResult {
|
|
1525
|
-
Failed = "Failed",
|
|
1526
|
-
Succeeded = "Succeeded"
|
|
1527
|
-
}
|
|
1528
|
-
|
|
1529
|
-
// @public
|
|
1530
|
-
export enum KnownRunStatusEnum {
|
|
1531
|
-
Finished = "Finished",
|
|
1532
|
-
InProgress = "InProgress"
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
// @public
|
|
1536
|
-
export enum KnownSchedule {
|
|
1537
|
-
Daily = "Daily",
|
|
1538
|
-
Weekly = "Weekly"
|
|
1539
|
-
}
|
|
1540
|
-
|
|
1541
|
-
// @public
|
|
1542
|
-
export enum KnownServices {
|
|
1543
|
-
// (undocumented)
|
|
1544
|
-
B = "b",
|
|
1545
|
-
// (undocumented)
|
|
1546
|
-
F = "f",
|
|
1547
|
-
// (undocumented)
|
|
1548
|
-
Q = "q",
|
|
1549
|
-
// (undocumented)
|
|
1550
|
-
T = "t"
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
// @public
|
|
1554
|
-
export enum KnownSeverity {
|
|
1555
|
-
Error = "Error",
|
|
1556
|
-
Warning = "Warning"
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
// @public
|
|
1560
|
-
export enum KnownShareAccessTier {
|
|
1561
|
-
Cool = "Cool",
|
|
1562
|
-
Hot = "Hot",
|
|
1563
|
-
Premium = "Premium",
|
|
1564
|
-
TransactionOptimized = "TransactionOptimized"
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
// @public
|
|
1568
|
-
export enum KnownSignedResource {
|
|
1569
|
-
// (undocumented)
|
|
1570
|
-
B = "b",
|
|
1571
|
-
// (undocumented)
|
|
1572
|
-
C = "c",
|
|
1573
|
-
// (undocumented)
|
|
1574
|
-
F = "f",
|
|
1575
|
-
// (undocumented)
|
|
1576
|
-
S = "s"
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
// @public
|
|
1580
|
-
export enum KnownSignedResourceTypes {
|
|
1581
|
-
// (undocumented)
|
|
1582
|
-
C = "c",
|
|
1583
|
-
// (undocumented)
|
|
1584
|
-
O = "o",
|
|
1585
|
-
// (undocumented)
|
|
1586
|
-
S = "s"
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
|
-
// @public
|
|
1590
|
-
export enum KnownSkuConversionStatus {
|
|
1591
|
-
Failed = "Failed",
|
|
1592
|
-
InProgress = "InProgress",
|
|
1593
|
-
Succeeded = "Succeeded"
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
// @public
|
|
1597
|
-
export enum KnownSkuName {
|
|
1598
|
-
PremiumLRS = "Premium_LRS",
|
|
1599
|
-
PremiumV2LRS = "PremiumV2_LRS",
|
|
1600
|
-
PremiumV2ZRS = "PremiumV2_ZRS",
|
|
1601
|
-
PremiumZRS = "Premium_ZRS",
|
|
1602
|
-
StandardGRS = "Standard_GRS",
|
|
1603
|
-
StandardGzrs = "Standard_GZRS",
|
|
1604
|
-
StandardLRS = "Standard_LRS",
|
|
1605
|
-
StandardRagrs = "Standard_RAGRS",
|
|
1606
|
-
StandardRagzrs = "Standard_RAGZRS",
|
|
1607
|
-
StandardV2GRS = "StandardV2_GRS",
|
|
1608
|
-
StandardV2Gzrs = "StandardV2_GZRS",
|
|
1609
|
-
StandardV2LRS = "StandardV2_LRS",
|
|
1610
|
-
StandardV2ZRS = "StandardV2_ZRS",
|
|
1611
|
-
StandardZRS = "Standard_ZRS"
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
// @public
|
|
1615
|
-
export enum KnownState {
|
|
1616
|
-
Deprovisioning = "Deprovisioning",
|
|
1617
|
-
Failed = "Failed",
|
|
1618
|
-
NetworkSourceDeleted = "NetworkSourceDeleted",
|
|
1619
|
-
Provisioning = "Provisioning",
|
|
1620
|
-
Succeeded = "Succeeded"
|
|
1621
|
-
}
|
|
1622
|
-
|
|
1623
|
-
// @public
|
|
1624
|
-
export type LargeFileSharesState = string;
|
|
1625
|
-
|
|
1626
|
-
// @public
|
|
1627
|
-
export interface LastAccessTimeTrackingPolicy {
|
|
1628
|
-
blobType?: string[];
|
|
1629
|
-
enable: boolean;
|
|
1630
|
-
name?: Name;
|
|
1631
|
-
trackingGranularityInDays?: number;
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
// @public
|
|
1635
|
-
export interface LeaseContainerRequest {
|
|
1636
|
-
action: LeaseContainerRequestAction;
|
|
1637
|
-
breakPeriod?: number;
|
|
1638
|
-
leaseDuration?: number;
|
|
1639
|
-
leaseId?: string;
|
|
1640
|
-
proposedLeaseId?: string;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
// @public
|
|
1644
|
-
export type LeaseContainerRequestAction = string;
|
|
1645
|
-
|
|
1646
|
-
// @public
|
|
1647
|
-
export interface LeaseContainerResponse {
|
|
1648
|
-
leaseId?: string;
|
|
1649
|
-
leaseTimeSeconds?: string;
|
|
1650
|
-
}
|
|
1651
|
-
|
|
1652
|
-
// @public
|
|
1653
|
-
export type LeaseDuration = string;
|
|
1654
|
-
|
|
1655
|
-
// @public
|
|
1656
|
-
export type LeaseShareAction = string;
|
|
1657
|
-
|
|
1658
|
-
// @public
|
|
1659
|
-
export interface LeaseShareRequest {
|
|
1660
|
-
action: LeaseShareAction;
|
|
1661
|
-
breakPeriod?: number;
|
|
1662
|
-
leaseDuration?: number;
|
|
1663
|
-
leaseId?: string;
|
|
1664
|
-
proposedLeaseId?: string;
|
|
1665
|
-
}
|
|
1666
|
-
|
|
1667
|
-
// @public
|
|
1668
|
-
export interface LeaseShareResponse {
|
|
1669
|
-
leaseId?: string;
|
|
1670
|
-
leaseTimeSeconds?: string;
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
// @public
|
|
1674
|
-
export type LeaseState = string;
|
|
1675
|
-
|
|
1676
|
-
// @public
|
|
1677
|
-
export type LeaseStatus = string;
|
|
1678
|
-
|
|
1679
|
-
// @public
|
|
1680
|
-
export interface LegalHold {
|
|
1681
|
-
allowProtectedAppendWritesAll?: boolean;
|
|
1682
|
-
readonly hasLegalHold?: boolean;
|
|
1683
|
-
tags: string[];
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
|
-
// @public
|
|
1687
|
-
export interface LegalHoldProperties {
|
|
1688
|
-
readonly hasLegalHold?: boolean;
|
|
1689
|
-
protectedAppendWritesHistory?: ProtectedAppendWritesHistory;
|
|
1690
|
-
tags?: TagProperty[];
|
|
1691
|
-
}
|
|
1692
|
-
|
|
1693
|
-
// @public
|
|
1694
|
-
export interface ListAccountSasResponse {
|
|
1695
|
-
readonly accountSasToken?: string;
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
// @public
|
|
1699
|
-
export interface ListBlobInventoryPolicy {
|
|
1700
|
-
readonly value?: BlobInventoryPolicy[];
|
|
1701
|
-
}
|
|
1702
|
-
|
|
1703
|
-
// @public
|
|
1704
|
-
export interface ListContainerItem extends AzureEntityResource {
|
|
1705
|
-
defaultEncryptionScope?: string;
|
|
1706
|
-
readonly deleted?: boolean;
|
|
1707
|
-
readonly deletedTime?: Date;
|
|
1708
|
-
denyEncryptionScopeOverride?: boolean;
|
|
1709
|
-
enableNfsV3AllSquash?: boolean;
|
|
1710
|
-
enableNfsV3RootSquash?: boolean;
|
|
1711
|
-
readonly hasImmutabilityPolicy?: boolean;
|
|
1712
|
-
readonly hasLegalHold?: boolean;
|
|
1713
|
-
readonly immutabilityPolicy?: ImmutabilityPolicyProperties;
|
|
1714
|
-
immutableStorageWithVersioning?: ImmutableStorageWithVersioning;
|
|
1715
|
-
readonly lastModifiedTime?: Date;
|
|
1716
|
-
readonly leaseDuration?: LeaseDuration;
|
|
1717
|
-
readonly leaseState?: LeaseState;
|
|
1718
|
-
readonly leaseStatus?: LeaseStatus;
|
|
1719
|
-
readonly legalHold?: LegalHoldProperties;
|
|
1720
|
-
metadata?: {
|
|
1721
|
-
[propertyName: string]: string;
|
|
1722
|
-
};
|
|
1723
|
-
publicAccess?: PublicAccess;
|
|
1724
|
-
readonly remainingRetentionDays?: number;
|
|
1725
|
-
readonly version?: string;
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
// @public
|
|
1729
|
-
export interface ListContainerItems {
|
|
1730
|
-
readonly nextLink?: string;
|
|
1731
|
-
readonly value?: ListContainerItem[];
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
|
-
// @public
|
|
1735
|
-
export type ListContainersInclude = string;
|
|
1736
|
-
|
|
1737
|
-
// @public
|
|
1738
|
-
export type ListEncryptionScopesInclude = string;
|
|
1739
|
-
|
|
1740
|
-
// @public
|
|
1741
|
-
export type ListLocalUserIncludeParam = string;
|
|
1742
|
-
|
|
1743
|
-
// @public (undocumented)
|
|
1744
|
-
export interface ListQueue extends Resource {
|
|
1745
|
-
metadata?: {
|
|
1746
|
-
[propertyName: string]: string;
|
|
1747
|
-
};
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
// @public
|
|
1751
|
-
export interface ListQueueResource {
|
|
1752
|
-
readonly nextLink?: string;
|
|
1753
|
-
readonly value?: ListQueue[];
|
|
1754
|
-
}
|
|
1755
|
-
|
|
1756
|
-
// @public (undocumented)
|
|
1757
|
-
export interface ListQueueServices {
|
|
1758
|
-
readonly value?: QueueServiceProperties[];
|
|
1759
|
-
}
|
|
1760
|
-
|
|
1761
|
-
// @public
|
|
1762
|
-
export interface ListServiceSasResponse {
|
|
1763
|
-
readonly serviceSasToken?: string;
|
|
1764
|
-
}
|
|
1765
|
-
|
|
1766
|
-
// @public
|
|
1767
|
-
export interface ListTableResource {
|
|
1768
|
-
readonly nextLink?: string;
|
|
1769
|
-
readonly value?: Table[];
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
|
-
// @public (undocumented)
|
|
1773
|
-
export interface ListTableServices {
|
|
1774
|
-
readonly value?: TableServiceProperties[];
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
// @public
|
|
1778
|
-
export interface LocalUser extends Resource {
|
|
1779
|
-
allowAclAuthorization?: boolean;
|
|
1780
|
-
extendedGroups?: number[];
|
|
1781
|
-
groupId?: number;
|
|
1782
|
-
hasSharedKey?: boolean;
|
|
1783
|
-
hasSshKey?: boolean;
|
|
1784
|
-
hasSshPassword?: boolean;
|
|
1785
|
-
homeDirectory?: string;
|
|
1786
|
-
isNFSv3Enabled?: boolean;
|
|
1787
|
-
permissionScopes?: PermissionScope[];
|
|
1788
|
-
readonly sid?: string;
|
|
1789
|
-
sshAuthorizedKeys?: SshPublicKey[];
|
|
1790
|
-
readonly systemData?: SystemData;
|
|
1791
|
-
readonly userId?: number;
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1794
|
-
// @public
|
|
1795
|
-
export interface LocalUserKeys {
|
|
1796
|
-
readonly sharedKey?: string;
|
|
1797
|
-
sshAuthorizedKeys?: SshPublicKey[];
|
|
1798
|
-
}
|
|
1799
|
-
|
|
1800
|
-
// @public
|
|
1801
|
-
export interface LocalUserRegeneratePasswordResult {
|
|
1802
|
-
readonly sshPassword?: string;
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
// @public
|
|
1806
|
-
export interface LocalUsers {
|
|
1807
|
-
readonly nextLink?: string;
|
|
1808
|
-
value?: LocalUser[];
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
// @public
|
|
1812
|
-
export interface LocalUsersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1813
|
-
}
|
|
1814
|
-
|
|
1815
|
-
// @public
|
|
1816
|
-
export type LocalUsersCreateOrUpdateResponse = LocalUser;
|
|
1817
|
-
|
|
1818
|
-
// @public
|
|
1819
|
-
export interface LocalUsersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
// @public
|
|
1823
|
-
export interface LocalUsersGetOptionalParams extends coreClient.OperationOptions {
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
// @public
|
|
1827
|
-
export type LocalUsersGetResponse = LocalUser;
|
|
1828
|
-
|
|
1829
|
-
// @public
|
|
1830
|
-
export interface LocalUsersListKeysOptionalParams extends coreClient.OperationOptions {
|
|
1831
|
-
}
|
|
1832
|
-
|
|
1833
|
-
// @public
|
|
1834
|
-
export type LocalUsersListKeysResponse = LocalUserKeys;
|
|
1835
|
-
|
|
1836
|
-
// @public
|
|
1837
|
-
export interface LocalUsersListOptionalParams extends coreClient.OperationOptions {
|
|
1838
|
-
filter?: string;
|
|
1839
|
-
include?: ListLocalUserIncludeParam;
|
|
1840
|
-
maxpagesize?: number;
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
// @public
|
|
1844
|
-
export type LocalUsersListResponse = LocalUsers;
|
|
1845
|
-
|
|
1846
|
-
// @public
|
|
1847
|
-
export interface LocalUsersOperations {
|
|
1848
|
-
createOrUpdate(resourceGroupName: string, accountName: string, username: string, properties: LocalUser, options?: LocalUsersCreateOrUpdateOptionalParams): Promise<LocalUsersCreateOrUpdateResponse>;
|
|
1849
|
-
delete(resourceGroupName: string, accountName: string, username: string, options?: LocalUsersDeleteOptionalParams): Promise<void>;
|
|
1850
|
-
get(resourceGroupName: string, accountName: string, username: string, options?: LocalUsersGetOptionalParams): Promise<LocalUsersGetResponse>;
|
|
1851
|
-
list(resourceGroupName: string, accountName: string, options?: LocalUsersListOptionalParams): PagedAsyncIterableIterator<LocalUser>;
|
|
1852
|
-
listKeys(resourceGroupName: string, accountName: string, username: string, options?: LocalUsersListKeysOptionalParams): Promise<LocalUsersListKeysResponse>;
|
|
1853
|
-
regeneratePassword(resourceGroupName: string, accountName: string, username: string, options?: LocalUsersRegeneratePasswordOptionalParams): Promise<LocalUsersRegeneratePasswordResponse>;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
// @public
|
|
1857
|
-
export interface LocalUsersRegeneratePasswordOptionalParams extends coreClient.OperationOptions {
|
|
1858
|
-
}
|
|
1859
|
-
|
|
1860
|
-
// @public
|
|
1861
|
-
export type LocalUsersRegeneratePasswordResponse = LocalUserRegeneratePasswordResult;
|
|
1862
|
-
|
|
1863
|
-
// @public
|
|
1864
|
-
export interface ManagementPolicies {
|
|
1865
|
-
createOrUpdate(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, properties: ManagementPolicy, options?: ManagementPoliciesCreateOrUpdateOptionalParams): Promise<ManagementPoliciesCreateOrUpdateResponse>;
|
|
1866
|
-
delete(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesDeleteOptionalParams): Promise<void>;
|
|
1867
|
-
get(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesGetOptionalParams): Promise<ManagementPoliciesGetResponse>;
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
// @public
|
|
1871
|
-
export interface ManagementPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1872
|
-
}
|
|
1873
|
-
|
|
1874
|
-
// @public
|
|
1875
|
-
export type ManagementPoliciesCreateOrUpdateResponse = ManagementPolicy;
|
|
1876
|
-
|
|
1877
|
-
// @public
|
|
1878
|
-
export interface ManagementPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1879
|
-
}
|
|
1880
|
-
|
|
1881
|
-
// @public
|
|
1882
|
-
export interface ManagementPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
// @public
|
|
1886
|
-
export type ManagementPoliciesGetResponse = ManagementPolicy;
|
|
1887
|
-
|
|
1888
|
-
// @public
|
|
1889
|
-
export interface ManagementPolicy extends Resource {
|
|
1890
|
-
readonly lastModifiedTime?: Date;
|
|
1891
|
-
policy?: ManagementPolicySchema;
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
// @public
|
|
1895
|
-
export interface ManagementPolicyAction {
|
|
1896
|
-
baseBlob?: ManagementPolicyBaseBlob;
|
|
1897
|
-
snapshot?: ManagementPolicySnapShot;
|
|
1898
|
-
version?: ManagementPolicyVersion;
|
|
1899
|
-
}
|
|
1900
|
-
|
|
1901
|
-
// @public
|
|
1902
|
-
export interface ManagementPolicyBaseBlob {
|
|
1903
|
-
delete?: DateAfterModification;
|
|
1904
|
-
enableAutoTierToHotFromCool?: boolean;
|
|
1905
|
-
tierToArchive?: DateAfterModification;
|
|
1906
|
-
tierToCold?: DateAfterModification;
|
|
1907
|
-
tierToCool?: DateAfterModification;
|
|
1908
|
-
tierToHot?: DateAfterModification;
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
// @public
|
|
1912
|
-
export interface ManagementPolicyDefinition {
|
|
1913
|
-
actions: ManagementPolicyAction;
|
|
1914
|
-
filters?: ManagementPolicyFilter;
|
|
1915
|
-
}
|
|
1916
|
-
|
|
1917
|
-
// @public
|
|
1918
|
-
export interface ManagementPolicyFilter {
|
|
1919
|
-
blobIndexMatch?: TagFilter[];
|
|
1920
|
-
blobTypes: string[];
|
|
1921
|
-
prefixMatch?: string[];
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
// @public
|
|
1925
|
-
export type ManagementPolicyName = string;
|
|
1926
|
-
|
|
1927
|
-
// @public
|
|
1928
|
-
export interface ManagementPolicyRule {
|
|
1929
|
-
definition: ManagementPolicyDefinition;
|
|
1930
|
-
enabled?: boolean;
|
|
1931
|
-
name: string;
|
|
1932
|
-
type: RuleType;
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
// @public
|
|
1936
|
-
export interface ManagementPolicySchema {
|
|
1937
|
-
rules: ManagementPolicyRule[];
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
// @public
|
|
1941
|
-
export interface ManagementPolicySnapShot {
|
|
1942
|
-
delete?: DateAfterCreation;
|
|
1943
|
-
tierToArchive?: DateAfterCreation;
|
|
1944
|
-
tierToCold?: DateAfterCreation;
|
|
1945
|
-
tierToCool?: DateAfterCreation;
|
|
1946
|
-
tierToHot?: DateAfterCreation;
|
|
1947
|
-
}
|
|
1948
|
-
|
|
1949
|
-
// @public
|
|
1950
|
-
export interface ManagementPolicyVersion {
|
|
1951
|
-
delete?: DateAfterCreation;
|
|
1952
|
-
tierToArchive?: DateAfterCreation;
|
|
1953
|
-
tierToCold?: DateAfterCreation;
|
|
1954
|
-
tierToCool?: DateAfterCreation;
|
|
1955
|
-
tierToHot?: DateAfterCreation;
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
|
-
// @public
|
|
1959
|
-
export interface MetricSpecification {
|
|
1960
|
-
aggregationType?: string;
|
|
1961
|
-
category?: string;
|
|
1962
|
-
dimensions?: Dimension[];
|
|
1963
|
-
displayDescription?: string;
|
|
1964
|
-
displayName?: string;
|
|
1965
|
-
fillGapWithZero?: boolean;
|
|
1966
|
-
name?: string;
|
|
1967
|
-
resourceIdDimensionNameOverride?: string;
|
|
1968
|
-
unit?: string;
|
|
1969
|
-
}
|
|
1970
|
-
|
|
1971
|
-
// @public
|
|
1972
|
-
export type MigrationName = string;
|
|
1973
|
-
|
|
1974
|
-
// @public
|
|
1975
|
-
export type MigrationState = string;
|
|
1976
|
-
|
|
1977
|
-
// @public
|
|
1978
|
-
export type MigrationStatus = string;
|
|
1979
|
-
|
|
1980
|
-
// @public
|
|
1981
|
-
export type MinimumTlsVersion = string;
|
|
1982
|
-
|
|
1983
|
-
// @public
|
|
1984
|
-
export interface Multichannel {
|
|
1985
|
-
enabled?: boolean;
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
// @public
|
|
1989
|
-
export type Name = string;
|
|
1990
|
-
|
|
1991
|
-
// @public
|
|
1992
|
-
export interface NetworkRuleSet {
|
|
1993
|
-
bypass?: Bypass;
|
|
1994
|
-
defaultAction: DefaultAction;
|
|
1995
|
-
ipRules?: IPRule[];
|
|
1996
|
-
resourceAccessRules?: ResourceAccessRule[];
|
|
1997
|
-
virtualNetworkRules?: VirtualNetworkRule[];
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
// @public
|
|
2001
|
-
export interface NetworkSecurityPerimeter {
|
|
2002
|
-
id?: string;
|
|
2003
|
-
location?: string;
|
|
2004
|
-
perimeterGuid?: string;
|
|
2005
|
-
}
|
|
2006
|
-
|
|
2007
|
-
// @public
|
|
2008
|
-
export interface NetworkSecurityPerimeterConfiguration extends ProxyResourceAutoGenerated {
|
|
2009
|
-
readonly networkSecurityPerimeter?: NetworkSecurityPerimeter;
|
|
2010
|
-
readonly profile?: NetworkSecurityPerimeterConfigurationPropertiesProfile;
|
|
2011
|
-
readonly provisioningIssues?: ProvisioningIssue[];
|
|
2012
|
-
readonly provisioningState?: NetworkSecurityPerimeterConfigurationProvisioningState;
|
|
2013
|
-
readonly resourceAssociation?: NetworkSecurityPerimeterConfigurationPropertiesResourceAssociation;
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
|
-
// @public
|
|
2017
|
-
export interface NetworkSecurityPerimeterConfigurationList {
|
|
2018
|
-
nextLink?: string;
|
|
2019
|
-
readonly value?: NetworkSecurityPerimeterConfiguration[];
|
|
2020
|
-
}
|
|
2021
|
-
|
|
2022
|
-
// @public
|
|
2023
|
-
export interface NetworkSecurityPerimeterConfigurationPropertiesProfile {
|
|
2024
|
-
accessRules?: NspAccessRule[];
|
|
2025
|
-
accessRulesVersion?: number;
|
|
2026
|
-
diagnosticSettingsVersion?: number;
|
|
2027
|
-
enabledLogCategories?: string[];
|
|
2028
|
-
name?: string;
|
|
2029
|
-
}
|
|
2030
|
-
|
|
2031
|
-
// @public
|
|
2032
|
-
export interface NetworkSecurityPerimeterConfigurationPropertiesResourceAssociation {
|
|
2033
|
-
accessMode?: ResourceAssociationAccessMode;
|
|
2034
|
-
name?: string;
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
// @public
|
|
2038
|
-
export type NetworkSecurityPerimeterConfigurationProvisioningState = string;
|
|
2039
|
-
|
|
2040
|
-
// @public
|
|
2041
|
-
export interface NetworkSecurityPerimeterConfigurations {
|
|
2042
|
-
beginReconcile(resourceGroupName: string, accountName: string, networkSecurityPerimeterConfigurationName: string, options?: NetworkSecurityPerimeterConfigurationsReconcileOptionalParams): Promise<SimplePollerLike<OperationState<NetworkSecurityPerimeterConfigurationsReconcileResponse>, NetworkSecurityPerimeterConfigurationsReconcileResponse>>;
|
|
2043
|
-
beginReconcileAndWait(resourceGroupName: string, accountName: string, networkSecurityPerimeterConfigurationName: string, options?: NetworkSecurityPerimeterConfigurationsReconcileOptionalParams): Promise<NetworkSecurityPerimeterConfigurationsReconcileResponse>;
|
|
2044
|
-
get(resourceGroupName: string, accountName: string, networkSecurityPerimeterConfigurationName: string, options?: NetworkSecurityPerimeterConfigurationsGetOptionalParams): Promise<NetworkSecurityPerimeterConfigurationsGetResponse>;
|
|
2045
|
-
list(resourceGroupName: string, accountName: string, options?: NetworkSecurityPerimeterConfigurationsListOptionalParams): PagedAsyncIterableIterator<NetworkSecurityPerimeterConfiguration>;
|
|
2046
|
-
}
|
|
2047
|
-
|
|
2048
|
-
// @public
|
|
2049
|
-
export interface NetworkSecurityPerimeterConfigurationsGetOptionalParams extends coreClient.OperationOptions {
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
// @public
|
|
2053
|
-
export type NetworkSecurityPerimeterConfigurationsGetResponse = NetworkSecurityPerimeterConfiguration;
|
|
2054
|
-
|
|
2055
|
-
// @public
|
|
2056
|
-
export interface NetworkSecurityPerimeterConfigurationsListOptionalParams extends coreClient.OperationOptions {
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
// @public
|
|
2060
|
-
export type NetworkSecurityPerimeterConfigurationsListResponse = NetworkSecurityPerimeterConfigurationList;
|
|
2061
|
-
|
|
2062
|
-
// @public
|
|
2063
|
-
export interface NetworkSecurityPerimeterConfigurationsReconcileHeaders {
|
|
2064
|
-
// (undocumented)
|
|
2065
|
-
location?: string;
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
|
-
// @public
|
|
2069
|
-
export interface NetworkSecurityPerimeterConfigurationsReconcileOptionalParams extends coreClient.OperationOptions {
|
|
2070
|
-
resumeFrom?: string;
|
|
2071
|
-
updateIntervalInMs?: number;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
// @public
|
|
2075
|
-
export type NetworkSecurityPerimeterConfigurationsReconcileResponse = NetworkSecurityPerimeterConfigurationsReconcileHeaders;
|
|
2076
|
-
|
|
2077
|
-
// @public
|
|
2078
|
-
export interface NspAccessRule {
|
|
2079
|
-
name?: string;
|
|
2080
|
-
readonly properties?: NspAccessRuleProperties;
|
|
2081
|
-
}
|
|
2082
|
-
|
|
2083
|
-
// @public
|
|
2084
|
-
export type NspAccessRuleDirection = string;
|
|
2085
|
-
|
|
2086
|
-
// @public
|
|
2087
|
-
export interface NspAccessRuleProperties {
|
|
2088
|
-
addressPrefixes?: string[];
|
|
2089
|
-
direction?: NspAccessRuleDirection;
|
|
2090
|
-
readonly fullyQualifiedDomainNames?: string[];
|
|
2091
|
-
readonly networkSecurityPerimeters?: NetworkSecurityPerimeter[];
|
|
2092
|
-
subscriptions?: NspAccessRulePropertiesSubscriptionsItem[];
|
|
2093
|
-
}
|
|
2094
|
-
|
|
2095
|
-
// @public
|
|
2096
|
-
export interface NspAccessRulePropertiesSubscriptionsItem {
|
|
2097
|
-
id?: string;
|
|
2098
|
-
}
|
|
2099
|
-
|
|
2100
|
-
// @public
|
|
2101
|
-
export interface ObjectReplicationPolicies {
|
|
2102
|
-
value?: ObjectReplicationPolicy[];
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
|
-
// @public
|
|
2106
|
-
export interface ObjectReplicationPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2107
|
-
}
|
|
2108
|
-
|
|
2109
|
-
// @public
|
|
2110
|
-
export type ObjectReplicationPoliciesCreateOrUpdateResponse = ObjectReplicationPolicy;
|
|
2111
|
-
|
|
2112
|
-
// @public
|
|
2113
|
-
export interface ObjectReplicationPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2114
|
-
}
|
|
2115
|
-
|
|
2116
|
-
// @public
|
|
2117
|
-
export interface ObjectReplicationPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
2118
|
-
}
|
|
2119
|
-
|
|
2120
|
-
// @public
|
|
2121
|
-
export type ObjectReplicationPoliciesGetResponse = ObjectReplicationPolicy;
|
|
2122
|
-
|
|
2123
|
-
// @public
|
|
2124
|
-
export interface ObjectReplicationPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
// @public
|
|
2128
|
-
export type ObjectReplicationPoliciesListResponse = ObjectReplicationPolicies;
|
|
2129
|
-
|
|
2130
|
-
// @public
|
|
2131
|
-
export interface ObjectReplicationPoliciesOperations {
|
|
2132
|
-
createOrUpdate(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, properties: ObjectReplicationPolicy, options?: ObjectReplicationPoliciesCreateOrUpdateOptionalParams): Promise<ObjectReplicationPoliciesCreateOrUpdateResponse>;
|
|
2133
|
-
delete(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesDeleteOptionalParams): Promise<void>;
|
|
2134
|
-
get(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesGetOptionalParams): Promise<ObjectReplicationPoliciesGetResponse>;
|
|
2135
|
-
list(resourceGroupName: string, accountName: string, options?: ObjectReplicationPoliciesListOptionalParams): PagedAsyncIterableIterator<ObjectReplicationPolicy>;
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
// @public
|
|
2139
|
-
export interface ObjectReplicationPolicy extends Resource {
|
|
2140
|
-
destinationAccount?: string;
|
|
2141
|
-
readonly enabledTime?: Date;
|
|
2142
|
-
metrics?: ObjectReplicationPolicyPropertiesMetrics;
|
|
2143
|
-
readonly policyId?: string;
|
|
2144
|
-
rules?: ObjectReplicationPolicyRule[];
|
|
2145
|
-
sourceAccount?: string;
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
// @public
|
|
2149
|
-
export interface ObjectReplicationPolicyFilter {
|
|
2150
|
-
minCreationTime?: string;
|
|
2151
|
-
prefixMatch?: string[];
|
|
2152
|
-
}
|
|
2153
|
-
|
|
2154
|
-
// @public
|
|
2155
|
-
export interface ObjectReplicationPolicyPropertiesMetrics {
|
|
2156
|
-
enabled?: boolean;
|
|
2157
|
-
}
|
|
2158
|
-
|
|
2159
|
-
// @public
|
|
2160
|
-
export interface ObjectReplicationPolicyRule {
|
|
2161
|
-
destinationContainer: string;
|
|
2162
|
-
filters?: ObjectReplicationPolicyFilter;
|
|
2163
|
-
ruleId?: string;
|
|
2164
|
-
sourceContainer: string;
|
|
2165
|
-
}
|
|
2166
|
-
|
|
2167
|
-
// @public
|
|
2168
|
-
export type ObjectType = string;
|
|
2169
|
-
|
|
2170
|
-
// @public
|
|
2171
|
-
export interface Operation {
|
|
2172
|
-
display?: OperationDisplay;
|
|
2173
|
-
name?: string;
|
|
2174
|
-
origin?: string;
|
|
2175
|
-
serviceSpecification?: ServiceSpecification;
|
|
2176
|
-
}
|
|
2177
|
-
|
|
2178
|
-
// @public
|
|
2179
|
-
export interface OperationDisplay {
|
|
2180
|
-
description?: string;
|
|
2181
|
-
operation?: string;
|
|
2182
|
-
provider?: string;
|
|
2183
|
-
resource?: string;
|
|
2184
|
-
}
|
|
2185
|
-
|
|
2186
|
-
// @public
|
|
2187
|
-
export interface OperationListResult {
|
|
2188
|
-
value?: Operation[];
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
// @public
|
|
2192
|
-
export interface Operations {
|
|
2193
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
// @public
|
|
2197
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
2198
|
-
}
|
|
2199
|
-
|
|
2200
|
-
// @public
|
|
2201
|
-
export type OperationsListResponse = OperationListResult;
|
|
2202
|
-
|
|
2203
|
-
// @public
|
|
2204
|
-
export type Permissions = string;
|
|
2205
|
-
|
|
2206
|
-
// @public (undocumented)
|
|
2207
|
-
export interface PermissionScope {
|
|
2208
|
-
permissions: string;
|
|
2209
|
-
resourceName: string;
|
|
2210
|
-
service: string;
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
|
-
// @public
|
|
2214
|
-
export type PostFailoverRedundancy = string;
|
|
2215
|
-
|
|
2216
|
-
// @public
|
|
2217
|
-
export type PostPlannedFailoverRedundancy = string;
|
|
2218
|
-
|
|
2219
|
-
// @public
|
|
2220
|
-
export interface PrivateEndpoint {
|
|
2221
|
-
readonly id?: string;
|
|
2222
|
-
}
|
|
2223
|
-
|
|
2224
|
-
// @public
|
|
2225
|
-
export interface PrivateEndpointConnection extends Resource {
|
|
2226
|
-
privateEndpoint?: PrivateEndpoint;
|
|
2227
|
-
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
2228
|
-
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
2229
|
-
}
|
|
2230
|
-
|
|
2231
|
-
// @public
|
|
2232
|
-
export interface PrivateEndpointConnectionListResult {
|
|
2233
|
-
value?: PrivateEndpointConnection[];
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
// @public
|
|
2237
|
-
export type PrivateEndpointConnectionProvisioningState = string;
|
|
2238
|
-
|
|
2239
|
-
// @public
|
|
2240
|
-
export interface PrivateEndpointConnections {
|
|
2241
|
-
delete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
2242
|
-
get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
2243
|
-
list(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
2244
|
-
put(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsPutOptionalParams): Promise<PrivateEndpointConnectionsPutResponse>;
|
|
2245
|
-
}
|
|
2246
|
-
|
|
2247
|
-
// @public
|
|
2248
|
-
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2249
|
-
}
|
|
2250
|
-
|
|
2251
|
-
// @public
|
|
2252
|
-
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
2253
|
-
}
|
|
2254
|
-
|
|
2255
|
-
// @public
|
|
2256
|
-
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
2257
|
-
|
|
2258
|
-
// @public
|
|
2259
|
-
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
2260
|
-
}
|
|
2261
|
-
|
|
2262
|
-
// @public
|
|
2263
|
-
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
2264
|
-
|
|
2265
|
-
// @public
|
|
2266
|
-
export interface PrivateEndpointConnectionsPutOptionalParams extends coreClient.OperationOptions {
|
|
2267
|
-
}
|
|
2268
|
-
|
|
2269
|
-
// @public
|
|
2270
|
-
export type PrivateEndpointConnectionsPutResponse = PrivateEndpointConnection;
|
|
2271
|
-
|
|
2272
|
-
// @public
|
|
2273
|
-
export type PrivateEndpointServiceConnectionStatus = string;
|
|
2274
|
-
|
|
2275
|
-
// @public
|
|
2276
|
-
export interface PrivateLinkResource extends Resource {
|
|
2277
|
-
readonly groupId?: string;
|
|
2278
|
-
readonly requiredMembers?: string[];
|
|
2279
|
-
requiredZoneNames?: string[];
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
|
-
// @public
|
|
2283
|
-
export interface PrivateLinkResourceListResult {
|
|
2284
|
-
value?: PrivateLinkResource[];
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
// @public
|
|
2288
|
-
export interface PrivateLinkResources {
|
|
2289
|
-
listByStorageAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListByStorageAccountOptionalParams): Promise<PrivateLinkResourcesListByStorageAccountResponse>;
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
// @public
|
|
2293
|
-
export interface PrivateLinkResourcesListByStorageAccountOptionalParams extends coreClient.OperationOptions {
|
|
2294
|
-
}
|
|
2295
|
-
|
|
2296
|
-
// @public
|
|
2297
|
-
export type PrivateLinkResourcesListByStorageAccountResponse = PrivateLinkResourceListResult;
|
|
2298
|
-
|
|
2299
|
-
// @public
|
|
2300
|
-
export interface PrivateLinkServiceConnectionState {
|
|
2301
|
-
actionRequired?: string;
|
|
2302
|
-
description?: string;
|
|
2303
|
-
status?: PrivateEndpointServiceConnectionStatus;
|
|
2304
|
-
}
|
|
2305
|
-
|
|
2306
|
-
// @public
|
|
2307
|
-
export interface ProtectedAppendWritesHistory {
|
|
2308
|
-
allowProtectedAppendWritesAll?: boolean;
|
|
2309
|
-
readonly timestamp?: Date;
|
|
2310
|
-
}
|
|
2311
|
-
|
|
2312
|
-
// @public
|
|
2313
|
-
export interface ProtocolSettings {
|
|
2314
|
-
smb?: SmbSetting;
|
|
2315
|
-
}
|
|
2316
|
-
|
|
2317
|
-
// @public
|
|
2318
|
-
export interface ProvisioningIssue {
|
|
2319
|
-
name?: string;
|
|
2320
|
-
readonly properties?: ProvisioningIssueProperties;
|
|
2321
|
-
}
|
|
2322
|
-
|
|
2323
|
-
// @public
|
|
2324
|
-
export interface ProvisioningIssueProperties {
|
|
2325
|
-
description?: string;
|
|
2326
|
-
issueType?: IssueType;
|
|
2327
|
-
severity?: Severity;
|
|
2328
|
-
}
|
|
2329
|
-
|
|
2330
|
-
// @public
|
|
2331
|
-
export type ProvisioningState = "Creating" | "ResolvingDNS" | "Succeeded" | "ValidateSubscriptionQuotaBegin" | "ValidateSubscriptionQuotaEnd" | "Accepted" | "Deleting" | "Canceled" | "Failed";
|
|
2332
|
-
|
|
2333
|
-
// @public
|
|
2334
|
-
export interface ProxyResource extends Resource {
|
|
2335
|
-
}
|
|
2336
|
-
|
|
2337
|
-
// @public
|
|
2338
|
-
export interface ProxyResourceAutoGenerated extends ResourceAutoGenerated {
|
|
2339
|
-
}
|
|
2340
|
-
|
|
2341
|
-
// @public
|
|
2342
|
-
export type PublicAccess = "Container" | "Blob" | "None";
|
|
2343
|
-
|
|
2344
|
-
// @public
|
|
2345
|
-
export type PublicNetworkAccess = string;
|
|
2346
|
-
|
|
2347
|
-
// @public
|
|
2348
|
-
export interface Queue {
|
|
2349
|
-
create(resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueCreateOptionalParams): Promise<QueueCreateResponse>;
|
|
2350
|
-
delete(resourceGroupName: string, accountName: string, queueName: string, options?: QueueDeleteOptionalParams): Promise<void>;
|
|
2351
|
-
get(resourceGroupName: string, accountName: string, queueName: string, options?: QueueGetOptionalParams): Promise<QueueGetResponse>;
|
|
2352
|
-
list(resourceGroupName: string, accountName: string, options?: QueueListOptionalParams): PagedAsyncIterableIterator<ListQueue>;
|
|
2353
|
-
update(resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueUpdateOptionalParams): Promise<QueueUpdateResponse>;
|
|
2354
|
-
}
|
|
2355
|
-
|
|
2356
|
-
// @public
|
|
2357
|
-
export interface QueueCreateOptionalParams extends coreClient.OperationOptions {
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
// @public
|
|
2361
|
-
export type QueueCreateResponse = StorageQueue;
|
|
2362
|
-
|
|
2363
|
-
// @public
|
|
2364
|
-
export interface QueueDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2365
|
-
}
|
|
2366
|
-
|
|
2367
|
-
// @public
|
|
2368
|
-
export interface QueueGetOptionalParams extends coreClient.OperationOptions {
|
|
2369
|
-
}
|
|
2370
|
-
|
|
2371
|
-
// @public
|
|
2372
|
-
export type QueueGetResponse = StorageQueue;
|
|
2373
|
-
|
|
2374
|
-
// @public
|
|
2375
|
-
export interface QueueListNextOptionalParams extends coreClient.OperationOptions {
|
|
2376
|
-
}
|
|
2377
|
-
|
|
2378
|
-
// @public
|
|
2379
|
-
export type QueueListNextResponse = ListQueueResource;
|
|
2380
|
-
|
|
2381
|
-
// @public
|
|
2382
|
-
export interface QueueListOptionalParams extends coreClient.OperationOptions {
|
|
2383
|
-
filter?: string;
|
|
2384
|
-
maxpagesize?: string;
|
|
2385
|
-
}
|
|
2386
|
-
|
|
2387
|
-
// @public
|
|
2388
|
-
export type QueueListResponse = ListQueueResource;
|
|
2389
|
-
|
|
2390
|
-
// @public
|
|
2391
|
-
export interface QueueServiceProperties extends Resource {
|
|
2392
|
-
cors?: CorsRules;
|
|
2393
|
-
}
|
|
2394
|
-
|
|
2395
|
-
// @public
|
|
2396
|
-
export interface QueueServices {
|
|
2397
|
-
getServiceProperties(resourceGroupName: string, accountName: string, options?: QueueServicesGetServicePropertiesOptionalParams): Promise<QueueServicesGetServicePropertiesResponse>;
|
|
2398
|
-
list(resourceGroupName: string, accountName: string, options?: QueueServicesListOptionalParams): Promise<QueueServicesListResponse>;
|
|
2399
|
-
setServiceProperties(resourceGroupName: string, accountName: string, parameters: QueueServiceProperties, options?: QueueServicesSetServicePropertiesOptionalParams): Promise<QueueServicesSetServicePropertiesResponse>;
|
|
2400
|
-
}
|
|
2401
|
-
|
|
2402
|
-
// @public
|
|
2403
|
-
export interface QueueServicesGetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
2404
|
-
}
|
|
2405
|
-
|
|
2406
|
-
// @public
|
|
2407
|
-
export type QueueServicesGetServicePropertiesResponse = QueueServiceProperties;
|
|
2408
|
-
|
|
2409
|
-
// @public
|
|
2410
|
-
export interface QueueServicesListOptionalParams extends coreClient.OperationOptions {
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
// @public
|
|
2414
|
-
export type QueueServicesListResponse = ListQueueServices;
|
|
2415
|
-
|
|
2416
|
-
// @public
|
|
2417
|
-
export interface QueueServicesSetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
2418
|
-
}
|
|
2419
|
-
|
|
2420
|
-
// @public
|
|
2421
|
-
export type QueueServicesSetServicePropertiesResponse = QueueServiceProperties;
|
|
2422
|
-
|
|
2423
|
-
// @public
|
|
2424
|
-
export interface QueueUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2425
|
-
}
|
|
2426
|
-
|
|
2427
|
-
// @public
|
|
2428
|
-
export type QueueUpdateResponse = StorageQueue;
|
|
2429
|
-
|
|
2430
|
-
// @public
|
|
2431
|
-
export type Reason = "AccountNameInvalid" | "AlreadyExists";
|
|
2432
|
-
|
|
2433
|
-
// @public
|
|
2434
|
-
export type ReasonCode = string;
|
|
2435
|
-
|
|
2436
|
-
// @public
|
|
2437
|
-
export interface Resource {
|
|
2438
|
-
readonly id?: string;
|
|
2439
|
-
readonly name?: string;
|
|
2440
|
-
readonly type?: string;
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
|
-
// @public
|
|
2444
|
-
export interface ResourceAccessRule {
|
|
2445
|
-
resourceId?: string;
|
|
2446
|
-
tenantId?: string;
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
// @public
|
|
2450
|
-
export type ResourceAssociationAccessMode = string;
|
|
2451
|
-
|
|
2452
|
-
// @public
|
|
2453
|
-
export interface ResourceAutoGenerated {
|
|
2454
|
-
readonly id?: string;
|
|
2455
|
-
readonly name?: string;
|
|
2456
|
-
readonly systemData?: SystemData;
|
|
2457
|
-
readonly type?: string;
|
|
2458
|
-
}
|
|
2459
|
-
|
|
2460
|
-
// @public
|
|
2461
|
-
export interface RestorePolicyProperties {
|
|
2462
|
-
days?: number;
|
|
2463
|
-
enabled: boolean;
|
|
2464
|
-
readonly lastEnabledTime?: Date;
|
|
2465
|
-
readonly minRestoreTime?: Date;
|
|
2466
|
-
}
|
|
2467
|
-
|
|
2468
|
-
// @public
|
|
2469
|
-
export interface Restriction {
|
|
2470
|
-
reasonCode?: ReasonCode;
|
|
2471
|
-
readonly type?: string;
|
|
2472
|
-
readonly values?: string[];
|
|
2473
|
-
}
|
|
2474
|
-
|
|
2475
|
-
// @public
|
|
2476
|
-
export type RootSquashType = string;
|
|
2477
|
-
|
|
2478
|
-
// @public
|
|
2479
|
-
export type RoutingChoice = string;
|
|
2480
|
-
|
|
2481
|
-
// @public
|
|
2482
|
-
export interface RoutingPreference {
|
|
2483
|
-
publishInternetEndpoints?: boolean;
|
|
2484
|
-
publishMicrosoftEndpoints?: boolean;
|
|
2485
|
-
routingChoice?: RoutingChoice;
|
|
2486
|
-
}
|
|
2487
|
-
|
|
2488
|
-
// @public
|
|
2489
|
-
export type RuleType = string;
|
|
2490
|
-
|
|
2491
|
-
// @public
|
|
2492
|
-
export type RunResult = string;
|
|
2493
|
-
|
|
2494
|
-
// @public
|
|
2495
|
-
export type RunStatusEnum = string;
|
|
2496
|
-
|
|
2497
|
-
// @public
|
|
2498
|
-
export interface SasPolicy {
|
|
2499
|
-
expirationAction: ExpirationAction;
|
|
2500
|
-
sasExpirationPeriod: string;
|
|
2501
|
-
}
|
|
2502
|
-
|
|
2503
|
-
// @public
|
|
2504
|
-
export type Schedule = string;
|
|
2505
|
-
|
|
2506
|
-
// @public
|
|
2507
|
-
export type Services = string;
|
|
2508
|
-
|
|
2509
|
-
// @public
|
|
2510
|
-
export interface ServiceSasParameters {
|
|
2511
|
-
cacheControl?: string;
|
|
2512
|
-
canonicalizedResource: string;
|
|
2513
|
-
contentDisposition?: string;
|
|
2514
|
-
contentEncoding?: string;
|
|
2515
|
-
contentLanguage?: string;
|
|
2516
|
-
contentType?: string;
|
|
2517
|
-
identifier?: string;
|
|
2518
|
-
iPAddressOrRange?: string;
|
|
2519
|
-
keyToSign?: string;
|
|
2520
|
-
partitionKeyEnd?: string;
|
|
2521
|
-
partitionKeyStart?: string;
|
|
2522
|
-
permissions?: Permissions;
|
|
2523
|
-
protocols?: HttpProtocol;
|
|
2524
|
-
resource?: SignedResource;
|
|
2525
|
-
rowKeyEnd?: string;
|
|
2526
|
-
rowKeyStart?: string;
|
|
2527
|
-
sharedAccessExpiryTime?: Date;
|
|
2528
|
-
sharedAccessStartTime?: Date;
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
|
-
// @public
|
|
2532
|
-
export interface ServiceSpecification {
|
|
2533
|
-
metricSpecifications?: MetricSpecification[];
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
// @public
|
|
2537
|
-
export type Severity = string;
|
|
2538
|
-
|
|
2539
|
-
// @public
|
|
2540
|
-
export type ShareAccessTier = string;
|
|
2541
|
-
|
|
2542
|
-
// @public (undocumented)
|
|
2543
|
-
export interface SignedIdentifier {
|
|
2544
|
-
accessPolicy?: AccessPolicy;
|
|
2545
|
-
id?: string;
|
|
2546
|
-
}
|
|
2547
|
-
|
|
2548
|
-
// @public
|
|
2549
|
-
export type SignedResource = string;
|
|
2550
|
-
|
|
2551
|
-
// @public
|
|
2552
|
-
export type SignedResourceTypes = string;
|
|
2553
|
-
|
|
2554
|
-
// @public
|
|
2555
|
-
export interface Sku {
|
|
2556
|
-
name: SkuName;
|
|
2557
|
-
readonly tier?: SkuTier;
|
|
2558
|
-
}
|
|
2559
|
-
|
|
2560
|
-
// @public
|
|
2561
|
-
export interface SKUCapability {
|
|
2562
|
-
readonly name?: string;
|
|
2563
|
-
readonly value?: string;
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
|
-
// @public
|
|
2567
|
-
export type SkuConversionStatus = string;
|
|
2568
|
-
|
|
2569
|
-
// @public
|
|
2570
|
-
export interface SkuInformation {
|
|
2571
|
-
readonly capabilities?: SKUCapability[];
|
|
2572
|
-
readonly kind?: Kind;
|
|
2573
|
-
readonly locations?: string[];
|
|
2574
|
-
name: SkuName;
|
|
2575
|
-
readonly resourceType?: string;
|
|
2576
|
-
restrictions?: Restriction[];
|
|
2577
|
-
readonly tier?: SkuTier;
|
|
2578
|
-
}
|
|
2579
|
-
|
|
2580
|
-
// @public
|
|
2581
|
-
export type SkuName = string;
|
|
2582
|
-
|
|
2583
|
-
// @public
|
|
2584
|
-
export interface Skus {
|
|
2585
|
-
list(options?: SkusListOptionalParams): PagedAsyncIterableIterator<SkuInformation>;
|
|
2586
|
-
}
|
|
2587
|
-
|
|
2588
|
-
// @public
|
|
2589
|
-
export interface SkusListOptionalParams extends coreClient.OperationOptions {
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
|
-
// @public
|
|
2593
|
-
export type SkusListResponse = StorageSkuListResult;
|
|
2594
|
-
|
|
2595
|
-
// @public
|
|
2596
|
-
export type SkuTier = "Standard" | "Premium";
|
|
2597
|
-
|
|
2598
|
-
// @public
|
|
2599
|
-
export interface SmbSetting {
|
|
2600
|
-
authenticationMethods?: string;
|
|
2601
|
-
channelEncryption?: string;
|
|
2602
|
-
kerberosTicketEncryption?: string;
|
|
2603
|
-
multichannel?: Multichannel;
|
|
2604
|
-
versions?: string;
|
|
2605
|
-
}
|
|
2606
|
-
|
|
2607
|
-
// @public (undocumented)
|
|
2608
|
-
export interface SshPublicKey {
|
|
2609
|
-
description?: string;
|
|
2610
|
-
key?: string;
|
|
2611
|
-
}
|
|
2612
|
-
|
|
2613
|
-
// @public
|
|
2614
|
-
export type State = string;
|
|
2615
|
-
|
|
2616
|
-
// @public
|
|
2617
|
-
export interface StorageAccount extends TrackedResource {
|
|
2618
|
-
readonly accessTier?: AccessTier;
|
|
2619
|
-
readonly accountMigrationInProgress?: boolean;
|
|
2620
|
-
allowBlobPublicAccess?: boolean;
|
|
2621
|
-
allowCrossTenantReplication?: boolean;
|
|
2622
|
-
allowedCopyScope?: AllowedCopyScope;
|
|
2623
|
-
allowSharedKeyAccess?: boolean;
|
|
2624
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
2625
|
-
readonly blobRestoreStatus?: BlobRestoreStatus;
|
|
2626
|
-
readonly creationTime?: Date;
|
|
2627
|
-
readonly customDomain?: CustomDomain;
|
|
2628
|
-
defaultToOAuthAuthentication?: boolean;
|
|
2629
|
-
dnsEndpointType?: DnsEndpointType;
|
|
2630
|
-
enableExtendedGroups?: boolean;
|
|
2631
|
-
enableHttpsTrafficOnly?: boolean;
|
|
2632
|
-
enableNfsV3?: boolean;
|
|
2633
|
-
readonly encryption?: Encryption;
|
|
2634
|
-
extendedLocation?: ExtendedLocation;
|
|
2635
|
-
readonly failoverInProgress?: boolean;
|
|
2636
|
-
readonly geoReplicationStats?: GeoReplicationStats;
|
|
2637
|
-
identity?: Identity;
|
|
2638
|
-
immutableStorageWithVersioning?: ImmutableStorageAccount;
|
|
2639
|
-
isHnsEnabled?: boolean;
|
|
2640
|
-
isLocalUserEnabled?: boolean;
|
|
2641
|
-
isSftpEnabled?: boolean;
|
|
2642
|
-
readonly isSkuConversionBlocked?: boolean;
|
|
2643
|
-
readonly keyCreationTime?: KeyCreationTime;
|
|
2644
|
-
readonly keyPolicy?: KeyPolicy;
|
|
2645
|
-
readonly kind?: Kind;
|
|
2646
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
2647
|
-
readonly lastGeoFailoverTime?: Date;
|
|
2648
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
2649
|
-
readonly networkRuleSet?: NetworkRuleSet;
|
|
2650
|
-
readonly primaryEndpoints?: Endpoints;
|
|
2651
|
-
readonly primaryLocation?: string;
|
|
2652
|
-
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
2653
|
-
readonly provisioningState?: ProvisioningState;
|
|
2654
|
-
publicNetworkAccess?: PublicNetworkAccess;
|
|
2655
|
-
routingPreference?: RoutingPreference;
|
|
2656
|
-
readonly sasPolicy?: SasPolicy;
|
|
2657
|
-
readonly secondaryEndpoints?: Endpoints;
|
|
2658
|
-
readonly secondaryLocation?: string;
|
|
2659
|
-
readonly sku?: Sku;
|
|
2660
|
-
readonly statusOfPrimary?: AccountStatus;
|
|
2661
|
-
readonly statusOfSecondary?: AccountStatus;
|
|
2662
|
-
storageAccountSkuConversionStatus?: StorageAccountSkuConversionStatus;
|
|
2663
|
-
}
|
|
2664
|
-
|
|
2665
|
-
// @public
|
|
2666
|
-
export interface StorageAccountCheckNameAvailabilityParameters {
|
|
2667
|
-
name: string;
|
|
2668
|
-
type: "Microsoft.Storage/storageAccounts";
|
|
2669
|
-
}
|
|
2670
|
-
|
|
2671
|
-
// @public
|
|
2672
|
-
export interface StorageAccountCreateParameters {
|
|
2673
|
-
accessTier?: AccessTier;
|
|
2674
|
-
allowBlobPublicAccess?: boolean;
|
|
2675
|
-
allowCrossTenantReplication?: boolean;
|
|
2676
|
-
allowedCopyScope?: AllowedCopyScope;
|
|
2677
|
-
allowSharedKeyAccess?: boolean;
|
|
2678
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
2679
|
-
customDomain?: CustomDomain;
|
|
2680
|
-
defaultToOAuthAuthentication?: boolean;
|
|
2681
|
-
dnsEndpointType?: DnsEndpointType;
|
|
2682
|
-
enableExtendedGroups?: boolean;
|
|
2683
|
-
enableHttpsTrafficOnly?: boolean;
|
|
2684
|
-
enableNfsV3?: boolean;
|
|
2685
|
-
encryption?: Encryption;
|
|
2686
|
-
extendedLocation?: ExtendedLocation;
|
|
2687
|
-
identity?: Identity;
|
|
2688
|
-
immutableStorageWithVersioning?: ImmutableStorageAccount;
|
|
2689
|
-
isHnsEnabled?: boolean;
|
|
2690
|
-
isLocalUserEnabled?: boolean;
|
|
2691
|
-
isSftpEnabled?: boolean;
|
|
2692
|
-
keyPolicy?: KeyPolicy;
|
|
2693
|
-
kind: Kind;
|
|
2694
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
2695
|
-
location: string;
|
|
2696
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
2697
|
-
networkRuleSet?: NetworkRuleSet;
|
|
2698
|
-
publicNetworkAccess?: PublicNetworkAccess;
|
|
2699
|
-
routingPreference?: RoutingPreference;
|
|
2700
|
-
sasPolicy?: SasPolicy;
|
|
2701
|
-
sku: Sku;
|
|
2702
|
-
tags?: {
|
|
2703
|
-
[propertyName: string]: string;
|
|
2704
|
-
};
|
|
2705
|
-
}
|
|
2706
|
-
|
|
2707
|
-
// @public
|
|
2708
|
-
export type StorageAccountExpand = "geoReplicationStats" | "blobRestoreStatus";
|
|
2709
|
-
|
|
2710
|
-
// @public
|
|
2711
|
-
export interface StorageAccountInternetEndpoints {
|
|
2712
|
-
readonly blob?: string;
|
|
2713
|
-
readonly dfs?: string;
|
|
2714
|
-
readonly file?: string;
|
|
2715
|
-
readonly web?: string;
|
|
2716
|
-
}
|
|
2717
|
-
|
|
2718
|
-
// @public
|
|
2719
|
-
export interface StorageAccountKey {
|
|
2720
|
-
readonly creationTime?: Date;
|
|
2721
|
-
readonly keyName?: string;
|
|
2722
|
-
readonly permissions?: KeyPermission;
|
|
2723
|
-
readonly value?: string;
|
|
2724
|
-
}
|
|
2725
|
-
|
|
2726
|
-
// @public
|
|
2727
|
-
export interface StorageAccountListKeysResult {
|
|
2728
|
-
readonly keys?: StorageAccountKey[];
|
|
2729
|
-
}
|
|
2730
|
-
|
|
2731
|
-
// @public
|
|
2732
|
-
export interface StorageAccountListResult {
|
|
2733
|
-
readonly nextLink?: string;
|
|
2734
|
-
readonly value?: StorageAccount[];
|
|
2735
|
-
}
|
|
2736
|
-
|
|
2737
|
-
// @public
|
|
2738
|
-
export interface StorageAccountMicrosoftEndpoints {
|
|
2739
|
-
readonly blob?: string;
|
|
2740
|
-
readonly dfs?: string;
|
|
2741
|
-
readonly file?: string;
|
|
2742
|
-
readonly queue?: string;
|
|
2743
|
-
readonly table?: string;
|
|
2744
|
-
readonly web?: string;
|
|
2745
|
-
}
|
|
2746
|
-
|
|
2747
|
-
// @public
|
|
2748
|
-
export interface StorageAccountMigration {
|
|
2749
|
-
readonly id?: string;
|
|
2750
|
-
readonly migrationFailedDetailedReason?: string;
|
|
2751
|
-
readonly migrationFailedReason?: string;
|
|
2752
|
-
readonly migrationStatus?: MigrationStatus;
|
|
2753
|
-
name?: string;
|
|
2754
|
-
targetSkuName: SkuName;
|
|
2755
|
-
type?: string;
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
|
-
// @public
|
|
2759
|
-
export interface StorageAccountRegenerateKeyParameters {
|
|
2760
|
-
keyName: string;
|
|
2761
|
-
}
|
|
2762
|
-
|
|
2763
|
-
// @public
|
|
2764
|
-
export interface StorageAccounts {
|
|
2765
|
-
beginAbortHierarchicalNamespaceMigration(resourceGroupName: string, accountName: string, options?: StorageAccountsAbortHierarchicalNamespaceMigrationOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
2766
|
-
beginAbortHierarchicalNamespaceMigrationAndWait(resourceGroupName: string, accountName: string, options?: StorageAccountsAbortHierarchicalNamespaceMigrationOptionalParams): Promise<void>;
|
|
2767
|
-
beginCreate(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<SimplePollerLike<OperationState<StorageAccountsCreateResponse>, StorageAccountsCreateResponse>>;
|
|
2768
|
-
beginCreateAndWait(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<StorageAccountsCreateResponse>;
|
|
2769
|
-
beginCustomerInitiatedMigration(resourceGroupName: string, accountName: string, parameters: StorageAccountMigration, options?: StorageAccountsCustomerInitiatedMigrationOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
2770
|
-
beginCustomerInitiatedMigrationAndWait(resourceGroupName: string, accountName: string, parameters: StorageAccountMigration, options?: StorageAccountsCustomerInitiatedMigrationOptionalParams): Promise<void>;
|
|
2771
|
-
beginFailover(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
2772
|
-
beginFailoverAndWait(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<void>;
|
|
2773
|
-
beginHierarchicalNamespaceMigration(resourceGroupName: string, accountName: string, requestType: string, options?: StorageAccountsHierarchicalNamespaceMigrationOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
2774
|
-
beginHierarchicalNamespaceMigrationAndWait(resourceGroupName: string, accountName: string, requestType: string, options?: StorageAccountsHierarchicalNamespaceMigrationOptionalParams): Promise<void>;
|
|
2775
|
-
beginRestoreBlobRanges(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<SimplePollerLike<OperationState<StorageAccountsRestoreBlobRangesResponse>, StorageAccountsRestoreBlobRangesResponse>>;
|
|
2776
|
-
beginRestoreBlobRangesAndWait(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<StorageAccountsRestoreBlobRangesResponse>;
|
|
2777
|
-
checkNameAvailability(accountName: StorageAccountCheckNameAvailabilityParameters, options?: StorageAccountsCheckNameAvailabilityOptionalParams): Promise<StorageAccountsCheckNameAvailabilityResponse>;
|
|
2778
|
-
delete(resourceGroupName: string, accountName: string, options?: StorageAccountsDeleteOptionalParams): Promise<void>;
|
|
2779
|
-
getCustomerInitiatedMigration(resourceGroupName: string, accountName: string, migrationName: MigrationName, options?: StorageAccountsGetCustomerInitiatedMigrationOptionalParams): Promise<StorageAccountsGetCustomerInitiatedMigrationResponse>;
|
|
2780
|
-
getProperties(resourceGroupName: string, accountName: string, options?: StorageAccountsGetPropertiesOptionalParams): Promise<StorageAccountsGetPropertiesResponse>;
|
|
2781
|
-
list(options?: StorageAccountsListOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
2782
|
-
listAccountSAS(resourceGroupName: string, accountName: string, parameters: AccountSasParameters, options?: StorageAccountsListAccountSASOptionalParams): Promise<StorageAccountsListAccountSASResponse>;
|
|
2783
|
-
listByResourceGroup(resourceGroupName: string, options?: StorageAccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
2784
|
-
listKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsListKeysOptionalParams): Promise<StorageAccountsListKeysResponse>;
|
|
2785
|
-
listServiceSAS(resourceGroupName: string, accountName: string, parameters: ServiceSasParameters, options?: StorageAccountsListServiceSASOptionalParams): Promise<StorageAccountsListServiceSASResponse>;
|
|
2786
|
-
regenerateKey(resourceGroupName: string, accountName: string, regenerateKey: StorageAccountRegenerateKeyParameters, options?: StorageAccountsRegenerateKeyOptionalParams): Promise<StorageAccountsRegenerateKeyResponse>;
|
|
2787
|
-
revokeUserDelegationKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsRevokeUserDelegationKeysOptionalParams): Promise<void>;
|
|
2788
|
-
update(resourceGroupName: string, accountName: string, parameters: StorageAccountUpdateParameters, options?: StorageAccountsUpdateOptionalParams): Promise<StorageAccountsUpdateResponse>;
|
|
2789
|
-
}
|
|
2790
|
-
|
|
2791
|
-
// @public
|
|
2792
|
-
export interface StorageAccountsAbortHierarchicalNamespaceMigrationOptionalParams extends coreClient.OperationOptions {
|
|
2793
|
-
resumeFrom?: string;
|
|
2794
|
-
updateIntervalInMs?: number;
|
|
2795
|
-
}
|
|
2796
|
-
|
|
2797
|
-
// @public
|
|
2798
|
-
export interface StorageAccountsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
2799
|
-
}
|
|
2800
|
-
|
|
2801
|
-
// @public
|
|
2802
|
-
export type StorageAccountsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
|
|
2803
|
-
|
|
2804
|
-
// @public
|
|
2805
|
-
export interface StorageAccountsCreateOptionalParams extends coreClient.OperationOptions {
|
|
2806
|
-
resumeFrom?: string;
|
|
2807
|
-
updateIntervalInMs?: number;
|
|
2808
|
-
}
|
|
2809
|
-
|
|
2810
|
-
// @public
|
|
2811
|
-
export type StorageAccountsCreateResponse = StorageAccount;
|
|
2812
|
-
|
|
2813
|
-
// @public
|
|
2814
|
-
export interface StorageAccountsCustomerInitiatedMigrationHeaders {
|
|
2815
|
-
// (undocumented)
|
|
2816
|
-
location?: string;
|
|
2817
|
-
}
|
|
2818
|
-
|
|
2819
|
-
// @public
|
|
2820
|
-
export interface StorageAccountsCustomerInitiatedMigrationOptionalParams extends coreClient.OperationOptions {
|
|
2821
|
-
resumeFrom?: string;
|
|
2822
|
-
updateIntervalInMs?: number;
|
|
2823
|
-
}
|
|
2824
|
-
|
|
2825
|
-
// @public
|
|
2826
|
-
export interface StorageAccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
// @public
|
|
2830
|
-
export interface StorageAccountsFailoverOptionalParams extends coreClient.OperationOptions {
|
|
2831
|
-
resumeFrom?: string;
|
|
2832
|
-
updateIntervalInMs?: number;
|
|
2833
|
-
}
|
|
2834
|
-
|
|
2835
|
-
// @public
|
|
2836
|
-
export interface StorageAccountsGetCustomerInitiatedMigrationOptionalParams extends coreClient.OperationOptions {
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
// @public
|
|
2840
|
-
export type StorageAccountsGetCustomerInitiatedMigrationResponse = StorageAccountMigration;
|
|
2841
|
-
|
|
2842
|
-
// @public
|
|
2843
|
-
export interface StorageAccountsGetPropertiesOptionalParams extends coreClient.OperationOptions {
|
|
2844
|
-
expand?: StorageAccountExpand;
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
// @public
|
|
2848
|
-
export type StorageAccountsGetPropertiesResponse = StorageAccount;
|
|
2849
|
-
|
|
2850
|
-
// @public
|
|
2851
|
-
export interface StorageAccountsHierarchicalNamespaceMigrationOptionalParams extends coreClient.OperationOptions {
|
|
2852
|
-
resumeFrom?: string;
|
|
2853
|
-
updateIntervalInMs?: number;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
// @public
|
|
2857
|
-
export interface StorageAccountSkuConversionStatus {
|
|
2858
|
-
readonly endTime?: string;
|
|
2859
|
-
readonly skuConversionStatus?: SkuConversionStatus;
|
|
2860
|
-
readonly startTime?: string;
|
|
2861
|
-
targetSkuName?: SkuName;
|
|
2862
|
-
}
|
|
2863
|
-
|
|
2864
|
-
// @public
|
|
2865
|
-
export interface StorageAccountsListAccountSASOptionalParams extends coreClient.OperationOptions {
|
|
2866
|
-
}
|
|
2867
|
-
|
|
2868
|
-
// @public
|
|
2869
|
-
export type StorageAccountsListAccountSASResponse = ListAccountSasResponse;
|
|
2870
|
-
|
|
2871
|
-
// @public
|
|
2872
|
-
export interface StorageAccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2873
|
-
}
|
|
2874
|
-
|
|
2875
|
-
// @public
|
|
2876
|
-
export type StorageAccountsListByResourceGroupNextResponse = StorageAccountListResult;
|
|
2877
|
-
|
|
2878
|
-
// @public
|
|
2879
|
-
export interface StorageAccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2880
|
-
}
|
|
2881
|
-
|
|
2882
|
-
// @public
|
|
2883
|
-
export type StorageAccountsListByResourceGroupResponse = StorageAccountListResult;
|
|
2884
|
-
|
|
2885
|
-
// @public
|
|
2886
|
-
export interface StorageAccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
2887
|
-
}
|
|
2888
|
-
|
|
2889
|
-
// @public
|
|
2890
|
-
export type StorageAccountsListKeysResponse = StorageAccountListKeysResult;
|
|
2891
|
-
|
|
2892
|
-
// @public
|
|
2893
|
-
export interface StorageAccountsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
|
-
// @public
|
|
2897
|
-
export type StorageAccountsListNextResponse = StorageAccountListResult;
|
|
2898
|
-
|
|
2899
|
-
// @public
|
|
2900
|
-
export interface StorageAccountsListOptionalParams extends coreClient.OperationOptions {
|
|
2901
|
-
}
|
|
2902
|
-
|
|
2903
|
-
// @public
|
|
2904
|
-
export type StorageAccountsListResponse = StorageAccountListResult;
|
|
2905
|
-
|
|
2906
|
-
// @public
|
|
2907
|
-
export interface StorageAccountsListServiceSASOptionalParams extends coreClient.OperationOptions {
|
|
2908
|
-
}
|
|
2909
|
-
|
|
2910
|
-
// @public
|
|
2911
|
-
export type StorageAccountsListServiceSASResponse = ListServiceSasResponse;
|
|
2912
|
-
|
|
2913
|
-
// @public
|
|
2914
|
-
export interface StorageAccountsRegenerateKeyOptionalParams extends coreClient.OperationOptions {
|
|
2915
|
-
}
|
|
2916
|
-
|
|
2917
|
-
// @public
|
|
2918
|
-
export type StorageAccountsRegenerateKeyResponse = StorageAccountListKeysResult;
|
|
2919
|
-
|
|
2920
|
-
// @public
|
|
2921
|
-
export interface StorageAccountsRestoreBlobRangesOptionalParams extends coreClient.OperationOptions {
|
|
2922
|
-
resumeFrom?: string;
|
|
2923
|
-
updateIntervalInMs?: number;
|
|
2924
|
-
}
|
|
2925
|
-
|
|
2926
|
-
// @public
|
|
2927
|
-
export type StorageAccountsRestoreBlobRangesResponse = BlobRestoreStatus;
|
|
2928
|
-
|
|
2929
|
-
// @public
|
|
2930
|
-
export interface StorageAccountsRevokeUserDelegationKeysOptionalParams extends coreClient.OperationOptions {
|
|
2931
|
-
}
|
|
2932
|
-
|
|
2933
|
-
// @public
|
|
2934
|
-
export interface StorageAccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2935
|
-
}
|
|
2936
|
-
|
|
2937
|
-
// @public
|
|
2938
|
-
export type StorageAccountsUpdateResponse = StorageAccount;
|
|
2939
|
-
|
|
2940
|
-
// @public
|
|
2941
|
-
export interface StorageAccountUpdateParameters {
|
|
2942
|
-
accessTier?: AccessTier;
|
|
2943
|
-
allowBlobPublicAccess?: boolean;
|
|
2944
|
-
allowCrossTenantReplication?: boolean;
|
|
2945
|
-
allowedCopyScope?: AllowedCopyScope;
|
|
2946
|
-
allowSharedKeyAccess?: boolean;
|
|
2947
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
2948
|
-
customDomain?: CustomDomain;
|
|
2949
|
-
defaultToOAuthAuthentication?: boolean;
|
|
2950
|
-
dnsEndpointType?: DnsEndpointType;
|
|
2951
|
-
enableExtendedGroups?: boolean;
|
|
2952
|
-
enableHttpsTrafficOnly?: boolean;
|
|
2953
|
-
encryption?: Encryption;
|
|
2954
|
-
identity?: Identity;
|
|
2955
|
-
immutableStorageWithVersioning?: ImmutableStorageAccount;
|
|
2956
|
-
isLocalUserEnabled?: boolean;
|
|
2957
|
-
isSftpEnabled?: boolean;
|
|
2958
|
-
keyPolicy?: KeyPolicy;
|
|
2959
|
-
kind?: Kind;
|
|
2960
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
2961
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
2962
|
-
networkRuleSet?: NetworkRuleSet;
|
|
2963
|
-
publicNetworkAccess?: PublicNetworkAccess;
|
|
2964
|
-
routingPreference?: RoutingPreference;
|
|
2965
|
-
sasPolicy?: SasPolicy;
|
|
2966
|
-
sku?: Sku;
|
|
2967
|
-
tags?: {
|
|
2968
|
-
[propertyName: string]: string;
|
|
2969
|
-
};
|
|
2970
|
-
}
|
|
2971
|
-
|
|
2972
|
-
// @public (undocumented)
|
|
2973
|
-
export class StorageManagementClient extends coreClient.ServiceClient {
|
|
2974
|
-
// (undocumented)
|
|
2975
|
-
$host: string;
|
|
2976
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageManagementClientOptionalParams);
|
|
2977
|
-
// (undocumented)
|
|
2978
|
-
apiVersion: string;
|
|
2979
|
-
// (undocumented)
|
|
2980
|
-
blobContainers: BlobContainers;
|
|
2981
|
-
// (undocumented)
|
|
2982
|
-
blobInventoryPolicies: BlobInventoryPolicies;
|
|
2983
|
-
// (undocumented)
|
|
2984
|
-
blobServices: BlobServices;
|
|
2985
|
-
// (undocumented)
|
|
2986
|
-
deletedAccounts: DeletedAccounts;
|
|
2987
|
-
// (undocumented)
|
|
2988
|
-
encryptionScopes: EncryptionScopes;
|
|
2989
|
-
// (undocumented)
|
|
2990
|
-
fileServices: FileServices;
|
|
2991
|
-
// (undocumented)
|
|
2992
|
-
fileShares: FileShares;
|
|
2993
|
-
// (undocumented)
|
|
2994
|
-
localUsersOperations: LocalUsersOperations;
|
|
2995
|
-
// (undocumented)
|
|
2996
|
-
managementPolicies: ManagementPolicies;
|
|
2997
|
-
// (undocumented)
|
|
2998
|
-
networkSecurityPerimeterConfigurations: NetworkSecurityPerimeterConfigurations;
|
|
2999
|
-
// (undocumented)
|
|
3000
|
-
objectReplicationPoliciesOperations: ObjectReplicationPoliciesOperations;
|
|
3001
|
-
// (undocumented)
|
|
3002
|
-
operations: Operations;
|
|
3003
|
-
// (undocumented)
|
|
3004
|
-
privateEndpointConnections: PrivateEndpointConnections;
|
|
3005
|
-
// (undocumented)
|
|
3006
|
-
privateLinkResources: PrivateLinkResources;
|
|
3007
|
-
// (undocumented)
|
|
3008
|
-
queue: Queue;
|
|
3009
|
-
// (undocumented)
|
|
3010
|
-
queueServices: QueueServices;
|
|
3011
|
-
// (undocumented)
|
|
3012
|
-
skus: Skus;
|
|
3013
|
-
// (undocumented)
|
|
3014
|
-
storageAccounts: StorageAccounts;
|
|
3015
|
-
// (undocumented)
|
|
3016
|
-
storageTaskAssignmentInstancesReport: StorageTaskAssignmentInstancesReport;
|
|
3017
|
-
// (undocumented)
|
|
3018
|
-
storageTaskAssignments: StorageTaskAssignments;
|
|
3019
|
-
// (undocumented)
|
|
3020
|
-
storageTaskAssignmentsInstancesReport: StorageTaskAssignmentsInstancesReport;
|
|
3021
|
-
// (undocumented)
|
|
3022
|
-
subscriptionId: string;
|
|
3023
|
-
// (undocumented)
|
|
3024
|
-
tableOperations: TableOperations;
|
|
3025
|
-
// (undocumented)
|
|
3026
|
-
tableServices: TableServices;
|
|
3027
|
-
// (undocumented)
|
|
3028
|
-
usages: Usages;
|
|
3029
|
-
}
|
|
3030
|
-
|
|
3031
|
-
// @public
|
|
3032
|
-
export interface StorageManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
3033
|
-
$host?: string;
|
|
3034
|
-
apiVersion?: string;
|
|
3035
|
-
endpoint?: string;
|
|
3036
|
-
}
|
|
3037
|
-
|
|
3038
|
-
// @public (undocumented)
|
|
3039
|
-
export interface StorageQueue extends Resource {
|
|
3040
|
-
readonly approximateMessageCount?: number;
|
|
3041
|
-
metadata?: {
|
|
3042
|
-
[propertyName: string]: string;
|
|
3043
|
-
};
|
|
3044
|
-
}
|
|
3045
|
-
|
|
3046
|
-
// @public
|
|
3047
|
-
export interface StorageSkuListResult {
|
|
3048
|
-
readonly value?: SkuInformation[];
|
|
3049
|
-
}
|
|
3050
|
-
|
|
3051
|
-
// @public
|
|
3052
|
-
export interface StorageTaskAssignment extends Resource {
|
|
3053
|
-
properties: StorageTaskAssignmentProperties;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
|
-
// @public
|
|
3057
|
-
export interface StorageTaskAssignmentExecutionContext {
|
|
3058
|
-
target?: ExecutionTarget;
|
|
3059
|
-
trigger: ExecutionTrigger;
|
|
3060
|
-
}
|
|
3061
|
-
|
|
3062
|
-
// @public
|
|
3063
|
-
export interface StorageTaskAssignmentInstancesReport {
|
|
3064
|
-
list(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, options?: StorageTaskAssignmentInstancesReportListOptionalParams): PagedAsyncIterableIterator<StorageTaskReportInstance>;
|
|
3065
|
-
}
|
|
3066
|
-
|
|
3067
|
-
// @public
|
|
3068
|
-
export interface StorageTaskAssignmentInstancesReportListNextOptionalParams extends coreClient.OperationOptions {
|
|
3069
|
-
}
|
|
3070
|
-
|
|
3071
|
-
// @public
|
|
3072
|
-
export type StorageTaskAssignmentInstancesReportListNextResponse = StorageTaskReportSummary;
|
|
3073
|
-
|
|
3074
|
-
// @public
|
|
3075
|
-
export interface StorageTaskAssignmentInstancesReportListOptionalParams extends coreClient.OperationOptions {
|
|
3076
|
-
filter?: string;
|
|
3077
|
-
maxpagesize?: number;
|
|
3078
|
-
}
|
|
3079
|
-
|
|
3080
|
-
// @public
|
|
3081
|
-
export type StorageTaskAssignmentInstancesReportListResponse = StorageTaskReportSummary;
|
|
3082
|
-
|
|
3083
|
-
// @public
|
|
3084
|
-
export interface StorageTaskAssignmentProperties {
|
|
3085
|
-
description: string;
|
|
3086
|
-
enabled: boolean;
|
|
3087
|
-
executionContext: StorageTaskAssignmentExecutionContext;
|
|
3088
|
-
readonly provisioningState?: ProvisioningState;
|
|
3089
|
-
report: StorageTaskAssignmentReport;
|
|
3090
|
-
runStatus?: StorageTaskReportProperties;
|
|
3091
|
-
taskId: string;
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
// @public
|
|
3095
|
-
export interface StorageTaskAssignmentReport {
|
|
3096
|
-
prefix: string;
|
|
3097
|
-
}
|
|
3098
|
-
|
|
3099
|
-
// @public
|
|
3100
|
-
export interface StorageTaskAssignments {
|
|
3101
|
-
beginCreate(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, parameters: StorageTaskAssignment, options?: StorageTaskAssignmentsCreateOptionalParams): Promise<SimplePollerLike<OperationState<StorageTaskAssignmentsCreateResponse>, StorageTaskAssignmentsCreateResponse>>;
|
|
3102
|
-
beginCreateAndWait(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, parameters: StorageTaskAssignment, options?: StorageTaskAssignmentsCreateOptionalParams): Promise<StorageTaskAssignmentsCreateResponse>;
|
|
3103
|
-
beginDelete(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, options?: StorageTaskAssignmentsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<StorageTaskAssignmentsDeleteResponse>, StorageTaskAssignmentsDeleteResponse>>;
|
|
3104
|
-
beginDeleteAndWait(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, options?: StorageTaskAssignmentsDeleteOptionalParams): Promise<StorageTaskAssignmentsDeleteResponse>;
|
|
3105
|
-
beginUpdate(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, parameters: StorageTaskAssignmentUpdateParameters, options?: StorageTaskAssignmentsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<StorageTaskAssignmentsUpdateResponse>, StorageTaskAssignmentsUpdateResponse>>;
|
|
3106
|
-
beginUpdateAndWait(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, parameters: StorageTaskAssignmentUpdateParameters, options?: StorageTaskAssignmentsUpdateOptionalParams): Promise<StorageTaskAssignmentsUpdateResponse>;
|
|
3107
|
-
get(resourceGroupName: string, accountName: string, storageTaskAssignmentName: string, options?: StorageTaskAssignmentsGetOptionalParams): Promise<StorageTaskAssignmentsGetResponse>;
|
|
3108
|
-
list(resourceGroupName: string, accountName: string, options?: StorageTaskAssignmentsListOptionalParams): PagedAsyncIterableIterator<StorageTaskAssignment>;
|
|
3109
|
-
}
|
|
3110
|
-
|
|
3111
|
-
// @public
|
|
3112
|
-
export interface StorageTaskAssignmentsCreateHeaders {
|
|
3113
|
-
// (undocumented)
|
|
3114
|
-
location?: string;
|
|
3115
|
-
}
|
|
3116
|
-
|
|
3117
|
-
// @public
|
|
3118
|
-
export interface StorageTaskAssignmentsCreateOptionalParams extends coreClient.OperationOptions {
|
|
3119
|
-
resumeFrom?: string;
|
|
3120
|
-
updateIntervalInMs?: number;
|
|
3121
|
-
}
|
|
3122
|
-
|
|
3123
|
-
// @public
|
|
3124
|
-
export type StorageTaskAssignmentsCreateResponse = StorageTaskAssignment;
|
|
3125
|
-
|
|
3126
|
-
// @public
|
|
3127
|
-
export interface StorageTaskAssignmentsDeleteHeaders {
|
|
3128
|
-
// (undocumented)
|
|
3129
|
-
location?: string;
|
|
3130
|
-
}
|
|
3131
|
-
|
|
3132
|
-
// @public
|
|
3133
|
-
export interface StorageTaskAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
3134
|
-
resumeFrom?: string;
|
|
3135
|
-
updateIntervalInMs?: number;
|
|
3136
|
-
}
|
|
3137
|
-
|
|
3138
|
-
// @public
|
|
3139
|
-
export type StorageTaskAssignmentsDeleteResponse = StorageTaskAssignmentsDeleteHeaders;
|
|
3140
|
-
|
|
3141
|
-
// @public
|
|
3142
|
-
export interface StorageTaskAssignmentsGetOptionalParams extends coreClient.OperationOptions {
|
|
3143
|
-
}
|
|
3144
|
-
|
|
3145
|
-
// @public
|
|
3146
|
-
export type StorageTaskAssignmentsGetResponse = StorageTaskAssignment;
|
|
3147
|
-
|
|
3148
|
-
// @public
|
|
3149
|
-
export interface StorageTaskAssignmentsInstancesReport {
|
|
3150
|
-
list(resourceGroupName: string, accountName: string, options?: StorageTaskAssignmentsInstancesReportListOptionalParams): PagedAsyncIterableIterator<StorageTaskReportInstance>;
|
|
3151
|
-
}
|
|
3152
|
-
|
|
3153
|
-
// @public
|
|
3154
|
-
export interface StorageTaskAssignmentsInstancesReportListNextOptionalParams extends coreClient.OperationOptions {
|
|
3155
|
-
}
|
|
3156
|
-
|
|
3157
|
-
// @public
|
|
3158
|
-
export type StorageTaskAssignmentsInstancesReportListNextResponse = StorageTaskReportSummary;
|
|
3159
|
-
|
|
3160
|
-
// @public
|
|
3161
|
-
export interface StorageTaskAssignmentsInstancesReportListOptionalParams extends coreClient.OperationOptions {
|
|
3162
|
-
filter?: string;
|
|
3163
|
-
maxpagesize?: number;
|
|
3164
|
-
}
|
|
3165
|
-
|
|
3166
|
-
// @public
|
|
3167
|
-
export type StorageTaskAssignmentsInstancesReportListResponse = StorageTaskReportSummary;
|
|
3168
|
-
|
|
3169
|
-
// @public
|
|
3170
|
-
export interface StorageTaskAssignmentsList {
|
|
3171
|
-
readonly nextLink?: string;
|
|
3172
|
-
readonly value?: StorageTaskAssignment[];
|
|
3173
|
-
}
|
|
3174
|
-
|
|
3175
|
-
// @public
|
|
3176
|
-
export interface StorageTaskAssignmentsListNextOptionalParams extends coreClient.OperationOptions {
|
|
3177
|
-
}
|
|
3178
|
-
|
|
3179
|
-
// @public
|
|
3180
|
-
export type StorageTaskAssignmentsListNextResponse = StorageTaskAssignmentsList;
|
|
3181
|
-
|
|
3182
|
-
// @public
|
|
3183
|
-
export interface StorageTaskAssignmentsListOptionalParams extends coreClient.OperationOptions {
|
|
3184
|
-
maxpagesize?: number;
|
|
3185
|
-
}
|
|
3186
|
-
|
|
3187
|
-
// @public
|
|
3188
|
-
export type StorageTaskAssignmentsListResponse = StorageTaskAssignmentsList;
|
|
3189
|
-
|
|
3190
|
-
// @public
|
|
3191
|
-
export interface StorageTaskAssignmentsUpdateHeaders {
|
|
3192
|
-
// (undocumented)
|
|
3193
|
-
location?: string;
|
|
3194
|
-
}
|
|
3195
|
-
|
|
3196
|
-
// @public
|
|
3197
|
-
export interface StorageTaskAssignmentsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
3198
|
-
resumeFrom?: string;
|
|
3199
|
-
updateIntervalInMs?: number;
|
|
3200
|
-
}
|
|
3201
|
-
|
|
3202
|
-
// @public
|
|
3203
|
-
export type StorageTaskAssignmentsUpdateResponse = StorageTaskAssignment;
|
|
3204
|
-
|
|
3205
|
-
// @public
|
|
3206
|
-
export interface StorageTaskAssignmentUpdateExecutionContext {
|
|
3207
|
-
target?: ExecutionTarget;
|
|
3208
|
-
trigger?: ExecutionTriggerUpdate;
|
|
3209
|
-
}
|
|
3210
|
-
|
|
3211
|
-
// @public
|
|
3212
|
-
export interface StorageTaskAssignmentUpdateParameters {
|
|
3213
|
-
properties?: StorageTaskAssignmentUpdateProperties;
|
|
3214
|
-
}
|
|
3215
|
-
|
|
3216
|
-
// @public
|
|
3217
|
-
export interface StorageTaskAssignmentUpdateProperties {
|
|
3218
|
-
description?: string;
|
|
3219
|
-
enabled?: boolean;
|
|
3220
|
-
executionContext?: StorageTaskAssignmentUpdateExecutionContext;
|
|
3221
|
-
readonly provisioningState?: ProvisioningState;
|
|
3222
|
-
report?: StorageTaskAssignmentUpdateReport;
|
|
3223
|
-
runStatus?: StorageTaskReportProperties;
|
|
3224
|
-
readonly taskId?: string;
|
|
3225
|
-
}
|
|
3226
|
-
|
|
3227
|
-
// @public
|
|
3228
|
-
export interface StorageTaskAssignmentUpdateReport {
|
|
3229
|
-
prefix?: string;
|
|
3230
|
-
}
|
|
3231
|
-
|
|
3232
|
-
// @public
|
|
3233
|
-
export interface StorageTaskReportInstance extends ProxyResource {
|
|
3234
|
-
properties?: StorageTaskReportProperties;
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
|
-
// @public
|
|
3238
|
-
export interface StorageTaskReportProperties {
|
|
3239
|
-
readonly finishTime?: string;
|
|
3240
|
-
readonly objectFailedCount?: string;
|
|
3241
|
-
readonly objectsOperatedOnCount?: string;
|
|
3242
|
-
readonly objectsSucceededCount?: string;
|
|
3243
|
-
readonly objectsTargetedCount?: string;
|
|
3244
|
-
readonly runResult?: RunResult;
|
|
3245
|
-
readonly runStatusEnum?: RunStatusEnum;
|
|
3246
|
-
readonly runStatusError?: string;
|
|
3247
|
-
readonly startTime?: string;
|
|
3248
|
-
readonly storageAccountId?: string;
|
|
3249
|
-
readonly summaryReportPath?: string;
|
|
3250
|
-
readonly taskAssignmentId?: string;
|
|
3251
|
-
readonly taskId?: string;
|
|
3252
|
-
readonly taskVersion?: string;
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
// @public
|
|
3256
|
-
export interface StorageTaskReportSummary {
|
|
3257
|
-
readonly nextLink?: string;
|
|
3258
|
-
readonly value?: StorageTaskReportInstance[];
|
|
3259
|
-
}
|
|
3260
|
-
|
|
3261
|
-
// @public
|
|
3262
|
-
export interface SystemData {
|
|
3263
|
-
createdAt?: Date;
|
|
3264
|
-
createdBy?: string;
|
|
3265
|
-
createdByType?: CreatedByType;
|
|
3266
|
-
lastModifiedAt?: Date;
|
|
3267
|
-
lastModifiedBy?: string;
|
|
3268
|
-
lastModifiedByType?: CreatedByType;
|
|
3269
|
-
}
|
|
3270
|
-
|
|
3271
|
-
// @public
|
|
3272
|
-
export interface Table extends Resource {
|
|
3273
|
-
signedIdentifiers?: TableSignedIdentifier[];
|
|
3274
|
-
readonly tableName?: string;
|
|
3275
|
-
}
|
|
3276
|
-
|
|
3277
|
-
// @public
|
|
3278
|
-
export interface TableAccessPolicy {
|
|
3279
|
-
expiryTime?: Date;
|
|
3280
|
-
permission: string;
|
|
3281
|
-
startTime?: Date;
|
|
3282
|
-
}
|
|
3283
|
-
|
|
3284
|
-
// @public
|
|
3285
|
-
export interface TableCreateOptionalParams extends coreClient.OperationOptions {
|
|
3286
|
-
parameters?: Table;
|
|
3287
|
-
}
|
|
3288
|
-
|
|
3289
|
-
// @public
|
|
3290
|
-
export type TableCreateResponse = Table;
|
|
3291
|
-
|
|
3292
|
-
// @public
|
|
3293
|
-
export interface TableDeleteOptionalParams extends coreClient.OperationOptions {
|
|
3294
|
-
}
|
|
3295
|
-
|
|
3296
|
-
// @public
|
|
3297
|
-
export interface TableGetOptionalParams extends coreClient.OperationOptions {
|
|
3298
|
-
}
|
|
3299
|
-
|
|
3300
|
-
// @public
|
|
3301
|
-
export type TableGetResponse = Table;
|
|
3302
|
-
|
|
3303
|
-
// @public
|
|
3304
|
-
export interface TableListNextOptionalParams extends coreClient.OperationOptions {
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
// @public
|
|
3308
|
-
export type TableListNextResponse = ListTableResource;
|
|
3309
|
-
|
|
3310
|
-
// @public
|
|
3311
|
-
export interface TableListOptionalParams extends coreClient.OperationOptions {
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
|
-
// @public
|
|
3315
|
-
export type TableListResponse = ListTableResource;
|
|
3316
|
-
|
|
3317
|
-
// @public
|
|
3318
|
-
export interface TableOperations {
|
|
3319
|
-
create(resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams): Promise<TableCreateResponse>;
|
|
3320
|
-
delete(resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams): Promise<void>;
|
|
3321
|
-
get(resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams): Promise<TableGetResponse>;
|
|
3322
|
-
list(resourceGroupName: string, accountName: string, options?: TableListOptionalParams): PagedAsyncIterableIterator<Table>;
|
|
3323
|
-
update(resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams): Promise<TableUpdateResponse>;
|
|
3324
|
-
}
|
|
3325
|
-
|
|
3326
|
-
// @public
|
|
3327
|
-
export interface TableServiceProperties extends Resource {
|
|
3328
|
-
cors?: CorsRules;
|
|
3329
|
-
}
|
|
3330
|
-
|
|
3331
|
-
// @public
|
|
3332
|
-
export interface TableServices {
|
|
3333
|
-
getServiceProperties(resourceGroupName: string, accountName: string, options?: TableServicesGetServicePropertiesOptionalParams): Promise<TableServicesGetServicePropertiesResponse>;
|
|
3334
|
-
list(resourceGroupName: string, accountName: string, options?: TableServicesListOptionalParams): Promise<TableServicesListResponse>;
|
|
3335
|
-
setServiceProperties(resourceGroupName: string, accountName: string, parameters: TableServiceProperties, options?: TableServicesSetServicePropertiesOptionalParams): Promise<TableServicesSetServicePropertiesResponse>;
|
|
3336
|
-
}
|
|
3337
|
-
|
|
3338
|
-
// @public
|
|
3339
|
-
export interface TableServicesGetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
3340
|
-
}
|
|
3341
|
-
|
|
3342
|
-
// @public
|
|
3343
|
-
export type TableServicesGetServicePropertiesResponse = TableServiceProperties;
|
|
3344
|
-
|
|
3345
|
-
// @public
|
|
3346
|
-
export interface TableServicesListOptionalParams extends coreClient.OperationOptions {
|
|
3347
|
-
}
|
|
3348
|
-
|
|
3349
|
-
// @public
|
|
3350
|
-
export type TableServicesListResponse = ListTableServices;
|
|
3351
|
-
|
|
3352
|
-
// @public
|
|
3353
|
-
export interface TableServicesSetServicePropertiesOptionalParams extends coreClient.OperationOptions {
|
|
3354
|
-
}
|
|
3355
|
-
|
|
3356
|
-
// @public
|
|
3357
|
-
export type TableServicesSetServicePropertiesResponse = TableServiceProperties;
|
|
3358
|
-
|
|
3359
|
-
// @public
|
|
3360
|
-
export interface TableSignedIdentifier {
|
|
3361
|
-
accessPolicy?: TableAccessPolicy;
|
|
3362
|
-
id: string;
|
|
3363
|
-
}
|
|
3364
|
-
|
|
3365
|
-
// @public
|
|
3366
|
-
export interface TableUpdateOptionalParams extends coreClient.OperationOptions {
|
|
3367
|
-
parameters?: Table;
|
|
3368
|
-
}
|
|
3369
|
-
|
|
3370
|
-
// @public
|
|
3371
|
-
export type TableUpdateResponse = Table;
|
|
3372
|
-
|
|
3373
|
-
// @public
|
|
3374
|
-
export interface TagFilter {
|
|
3375
|
-
name: string;
|
|
3376
|
-
op: string;
|
|
3377
|
-
value: string;
|
|
3378
|
-
}
|
|
3379
|
-
|
|
3380
|
-
// @public
|
|
3381
|
-
export interface TagProperty {
|
|
3382
|
-
readonly objectIdentifier?: string;
|
|
3383
|
-
readonly tag?: string;
|
|
3384
|
-
readonly tenantId?: string;
|
|
3385
|
-
readonly timestamp?: Date;
|
|
3386
|
-
readonly upn?: string;
|
|
3387
|
-
}
|
|
3388
|
-
|
|
3389
|
-
// @public
|
|
3390
|
-
export interface TrackedResource extends Resource {
|
|
3391
|
-
location: string;
|
|
3392
|
-
tags?: {
|
|
3393
|
-
[propertyName: string]: string;
|
|
3394
|
-
};
|
|
3395
|
-
}
|
|
3396
|
-
|
|
3397
|
-
// @public
|
|
3398
|
-
export interface TriggerParameters {
|
|
3399
|
-
endBy?: Date;
|
|
3400
|
-
interval?: number;
|
|
3401
|
-
intervalUnit?: "Days";
|
|
3402
|
-
startFrom?: Date;
|
|
3403
|
-
startOn?: Date;
|
|
3404
|
-
}
|
|
3405
|
-
|
|
3406
|
-
// @public
|
|
3407
|
-
export interface TriggerParametersUpdate {
|
|
3408
|
-
endBy?: Date;
|
|
3409
|
-
interval?: number;
|
|
3410
|
-
intervalUnit?: "Days";
|
|
3411
|
-
startFrom?: Date;
|
|
3412
|
-
startOn?: Date;
|
|
3413
|
-
}
|
|
3414
|
-
|
|
3415
|
-
// @public
|
|
3416
|
-
export type TriggerType = "RunOnce" | "OnSchedule";
|
|
3417
|
-
|
|
3418
|
-
// @public
|
|
3419
|
-
export interface UpdateHistoryProperty {
|
|
3420
|
-
allowProtectedAppendWrites?: boolean;
|
|
3421
|
-
allowProtectedAppendWritesAll?: boolean;
|
|
3422
|
-
readonly immutabilityPeriodSinceCreationInDays?: number;
|
|
3423
|
-
readonly objectIdentifier?: string;
|
|
3424
|
-
readonly tenantId?: string;
|
|
3425
|
-
readonly timestamp?: Date;
|
|
3426
|
-
readonly update?: ImmutabilityPolicyUpdateType;
|
|
3427
|
-
readonly upn?: string;
|
|
3428
|
-
}
|
|
3429
|
-
|
|
3430
|
-
// @public
|
|
3431
|
-
export interface Usage {
|
|
3432
|
-
readonly currentValue?: number;
|
|
3433
|
-
readonly limit?: number;
|
|
3434
|
-
readonly name?: UsageName;
|
|
3435
|
-
readonly unit?: UsageUnit;
|
|
3436
|
-
}
|
|
3437
|
-
|
|
3438
|
-
// @public
|
|
3439
|
-
export interface UsageListResult {
|
|
3440
|
-
value?: Usage[];
|
|
3441
|
-
}
|
|
3442
|
-
|
|
3443
|
-
// @public
|
|
3444
|
-
export interface UsageName {
|
|
3445
|
-
readonly localizedValue?: string;
|
|
3446
|
-
readonly value?: string;
|
|
3447
|
-
}
|
|
3448
|
-
|
|
3449
|
-
// @public
|
|
3450
|
-
export interface Usages {
|
|
3451
|
-
listByLocation(location: string, options?: UsagesListByLocationOptionalParams): PagedAsyncIterableIterator<Usage>;
|
|
3452
|
-
}
|
|
3453
|
-
|
|
3454
|
-
// @public
|
|
3455
|
-
export interface UsagesListByLocationOptionalParams extends coreClient.OperationOptions {
|
|
3456
|
-
}
|
|
3457
|
-
|
|
3458
|
-
// @public
|
|
3459
|
-
export type UsagesListByLocationResponse = UsageListResult;
|
|
3460
|
-
|
|
3461
|
-
// @public
|
|
3462
|
-
export type UsageUnit = "Count" | "Bytes" | "Seconds" | "Percent" | "CountsPerSecond" | "BytesPerSecond";
|
|
3463
|
-
|
|
3464
|
-
// @public
|
|
3465
|
-
export interface UserAssignedIdentity {
|
|
3466
|
-
readonly clientId?: string;
|
|
3467
|
-
readonly principalId?: string;
|
|
3468
|
-
}
|
|
3469
|
-
|
|
3470
|
-
// @public
|
|
3471
|
-
export interface VirtualNetworkRule {
|
|
3472
|
-
action?: "Allow";
|
|
3473
|
-
state?: State;
|
|
3474
|
-
virtualNetworkResourceId: string;
|
|
3475
|
-
}
|
|
3476
|
-
|
|
3477
|
-
// (No @packageDocumentation comment for this package)
|
|
3478
|
-
|
|
3479
|
-
```
|