@azure/arm-storage-profile-2020-09-01-hybrid 2.1.1-alpha.20250618.1 → 2.1.1-alpha.20250717.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,1339 +1,1339 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-storage-profile-2020-09-01-hybrid"
|
|
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
import { PollerLike } from '@azure/core-lro';
|
|
11
|
-
import { PollOperationState } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export type AccessTier = "Hot" | "Cool";
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export interface AccountSasParameters {
|
|
18
|
-
iPAddressOrRange?: string;
|
|
19
|
-
keyToSign?: string;
|
|
20
|
-
permissions: Permissions;
|
|
21
|
-
protocols?: HttpProtocol;
|
|
22
|
-
resourceTypes: SignedResourceTypes;
|
|
23
|
-
services: Services;
|
|
24
|
-
sharedAccessExpiryTime: Date;
|
|
25
|
-
sharedAccessStartTime?: Date;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export type AccountStatus = "available" | "unavailable";
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export interface ActiveDirectoryProperties {
|
|
33
|
-
azureStorageSid: string;
|
|
34
|
-
domainGuid: string;
|
|
35
|
-
domainName: string;
|
|
36
|
-
domainSid: string;
|
|
37
|
-
forestName: string;
|
|
38
|
-
netBiosDomainName: string;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// @public
|
|
42
|
-
export interface AzureFilesIdentityBasedAuthentication {
|
|
43
|
-
activeDirectoryProperties?: ActiveDirectoryProperties;
|
|
44
|
-
directoryServiceOptions: DirectoryServiceOptions;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// @public
|
|
48
|
-
export interface BlobInventoryPolicies {
|
|
49
|
-
createOrUpdate(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, properties: BlobInventoryPolicy, options?: BlobInventoryPoliciesCreateOrUpdateOptionalParams): Promise<BlobInventoryPoliciesCreateOrUpdateResponse>;
|
|
50
|
-
delete(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesDeleteOptionalParams): Promise<void>;
|
|
51
|
-
get(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesGetOptionalParams): Promise<BlobInventoryPoliciesGetResponse>;
|
|
52
|
-
list(resourceGroupName: string, accountName: string, options?: BlobInventoryPoliciesListOptionalParams): PagedAsyncIterableIterator<BlobInventoryPolicy>;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// @public
|
|
56
|
-
export interface BlobInventoryPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export type BlobInventoryPoliciesCreateOrUpdateResponse = BlobInventoryPolicy;
|
|
61
|
-
|
|
62
|
-
// @public
|
|
63
|
-
export interface BlobInventoryPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export interface BlobInventoryPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export type BlobInventoryPoliciesGetResponse = BlobInventoryPolicy;
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface BlobInventoryPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export type BlobInventoryPoliciesListResponse = ListBlobInventoryPolicy;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface BlobInventoryPolicy extends Resource {
|
|
82
|
-
readonly lastModifiedTime?: Date;
|
|
83
|
-
policy?: BlobInventoryPolicySchema;
|
|
84
|
-
readonly systemData?: SystemData;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
// @public
|
|
88
|
-
export interface BlobInventoryPolicyDefinition {
|
|
89
|
-
filters: BlobInventoryPolicyFilter;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// @public
|
|
93
|
-
export interface BlobInventoryPolicyFilter {
|
|
94
|
-
blobTypes: string[];
|
|
95
|
-
includeBlobVersions?: boolean;
|
|
96
|
-
includeSnapshots?: boolean;
|
|
97
|
-
prefixMatch?: string[];
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export type BlobInventoryPolicyName = string;
|
|
102
|
-
|
|
103
|
-
// @public
|
|
104
|
-
export interface BlobInventoryPolicyRule {
|
|
105
|
-
definition: BlobInventoryPolicyDefinition;
|
|
106
|
-
enabled: boolean;
|
|
107
|
-
name: string;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// @public
|
|
111
|
-
export interface BlobInventoryPolicySchema {
|
|
112
|
-
destination: string;
|
|
113
|
-
enabled: boolean;
|
|
114
|
-
rules: BlobInventoryPolicyRule[];
|
|
115
|
-
type: InventoryRuleType;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export interface BlobRestoreParameters {
|
|
120
|
-
blobRanges: BlobRestoreRange[];
|
|
121
|
-
timeToRestore: Date;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
export type BlobRestoreProgressStatus = string;
|
|
126
|
-
|
|
127
|
-
// @public
|
|
128
|
-
export interface BlobRestoreRange {
|
|
129
|
-
endRange: string;
|
|
130
|
-
startRange: string;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export interface BlobRestoreStatus {
|
|
135
|
-
readonly failureReason?: string;
|
|
136
|
-
readonly parameters?: BlobRestoreParameters;
|
|
137
|
-
readonly restoreId?: string;
|
|
138
|
-
readonly status?: BlobRestoreProgressStatus;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
// @public
|
|
142
|
-
export type Bypass = string;
|
|
143
|
-
|
|
144
|
-
// @public
|
|
145
|
-
export interface CheckNameAvailabilityResult {
|
|
146
|
-
readonly message?: string;
|
|
147
|
-
readonly nameAvailable?: boolean;
|
|
148
|
-
readonly reason?: Reason;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// @public
|
|
152
|
-
export type CreatedByType = string;
|
|
153
|
-
|
|
154
|
-
// @public
|
|
155
|
-
export interface CustomDomain {
|
|
156
|
-
name: string;
|
|
157
|
-
useSubDomainName?: boolean;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export interface DateAfterCreation {
|
|
162
|
-
daysAfterCreationGreaterThan: number;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
// @public
|
|
166
|
-
export interface DateAfterModification {
|
|
167
|
-
daysAfterLastAccessTimeGreaterThan?: number;
|
|
168
|
-
daysAfterModificationGreaterThan?: number;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// @public
|
|
172
|
-
export type DefaultAction = "Allow" | "Deny";
|
|
173
|
-
|
|
174
|
-
// @public
|
|
175
|
-
export interface Dimension {
|
|
176
|
-
displayName?: string;
|
|
177
|
-
name?: string;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export type DirectoryServiceOptions = string;
|
|
182
|
-
|
|
183
|
-
// @public
|
|
184
|
-
export interface Encryption {
|
|
185
|
-
keySource: KeySource;
|
|
186
|
-
keyVaultProperties?: KeyVaultProperties;
|
|
187
|
-
requireInfrastructureEncryption?: boolean;
|
|
188
|
-
services?: EncryptionServices;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
// @public
|
|
192
|
-
export interface EncryptionScope extends Resource {
|
|
193
|
-
readonly creationTime?: Date;
|
|
194
|
-
keyVaultProperties?: EncryptionScopeKeyVaultProperties;
|
|
195
|
-
readonly lastModifiedTime?: Date;
|
|
196
|
-
source?: EncryptionScopeSource;
|
|
197
|
-
state?: EncryptionScopeState;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
// @public
|
|
201
|
-
export interface EncryptionScopeKeyVaultProperties {
|
|
202
|
-
keyUri?: string;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
// @public
|
|
206
|
-
export interface EncryptionScopeListResult {
|
|
207
|
-
readonly nextLink?: string;
|
|
208
|
-
readonly value?: EncryptionScope[];
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// @public
|
|
212
|
-
export interface EncryptionScopes {
|
|
213
|
-
get(resourceGroupName: string, accountName: string, encryptionScopeName: string, options?: EncryptionScopesGetOptionalParams): Promise<EncryptionScopesGetResponse>;
|
|
214
|
-
list(resourceGroupName: string, accountName: string, options?: EncryptionScopesListOptionalParams): PagedAsyncIterableIterator<EncryptionScope>;
|
|
215
|
-
patch(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPatchOptionalParams): Promise<EncryptionScopesPatchResponse>;
|
|
216
|
-
put(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPutOptionalParams): Promise<EncryptionScopesPutResponse>;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// @public
|
|
220
|
-
export interface EncryptionScopesGetOptionalParams extends coreClient.OperationOptions {
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// @public
|
|
224
|
-
export type EncryptionScopesGetResponse = EncryptionScope;
|
|
225
|
-
|
|
226
|
-
// @public
|
|
227
|
-
export interface EncryptionScopesListNextOptionalParams extends coreClient.OperationOptions {
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
// @public
|
|
231
|
-
export type EncryptionScopesListNextResponse = EncryptionScopeListResult;
|
|
232
|
-
|
|
233
|
-
// @public
|
|
234
|
-
export interface EncryptionScopesListOptionalParams extends coreClient.OperationOptions {
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// @public
|
|
238
|
-
export type EncryptionScopesListResponse = EncryptionScopeListResult;
|
|
239
|
-
|
|
240
|
-
// @public
|
|
241
|
-
export type EncryptionScopeSource = string;
|
|
242
|
-
|
|
243
|
-
// @public
|
|
244
|
-
export interface EncryptionScopesPatchOptionalParams extends coreClient.OperationOptions {
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
// @public
|
|
248
|
-
export type EncryptionScopesPatchResponse = EncryptionScope;
|
|
249
|
-
|
|
250
|
-
// @public
|
|
251
|
-
export interface EncryptionScopesPutOptionalParams extends coreClient.OperationOptions {
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
// @public
|
|
255
|
-
export type EncryptionScopesPutResponse = EncryptionScope;
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export type EncryptionScopeState = string;
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export interface EncryptionService {
|
|
262
|
-
enabled?: boolean;
|
|
263
|
-
keyType?: KeyType;
|
|
264
|
-
readonly lastEnabledTime?: Date;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
// @public
|
|
268
|
-
export interface EncryptionServices {
|
|
269
|
-
blob?: EncryptionService;
|
|
270
|
-
file?: EncryptionService;
|
|
271
|
-
queue?: EncryptionService;
|
|
272
|
-
table?: EncryptionService;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
// @public
|
|
276
|
-
export interface Endpoints {
|
|
277
|
-
readonly blob?: string;
|
|
278
|
-
readonly dfs?: string;
|
|
279
|
-
readonly file?: string;
|
|
280
|
-
internetEndpoints?: StorageAccountInternetEndpoints;
|
|
281
|
-
microsoftEndpoints?: StorageAccountMicrosoftEndpoints;
|
|
282
|
-
readonly queue?: string;
|
|
283
|
-
readonly table?: string;
|
|
284
|
-
readonly web?: string;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
// @public
|
|
288
|
-
export interface ErrorResponse {
|
|
289
|
-
error?: ErrorResponseBody;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// @public
|
|
293
|
-
export interface ErrorResponseBody {
|
|
294
|
-
code?: string;
|
|
295
|
-
message?: string;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export interface GeoReplicationStats {
|
|
300
|
-
readonly canFailover?: boolean;
|
|
301
|
-
readonly lastSyncTime?: Date;
|
|
302
|
-
readonly status?: GeoReplicationStatus;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export type GeoReplicationStatus = string;
|
|
307
|
-
|
|
308
|
-
// @public
|
|
309
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
310
|
-
|
|
311
|
-
// @public
|
|
312
|
-
export type HttpProtocol = "https,http" | "https";
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export interface Identity {
|
|
316
|
-
readonly principalId?: string;
|
|
317
|
-
readonly tenantId?: string;
|
|
318
|
-
type: "SystemAssigned";
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
// @public
|
|
322
|
-
export type InventoryRuleType = string;
|
|
323
|
-
|
|
324
|
-
// @public
|
|
325
|
-
export interface IPRule {
|
|
326
|
-
action?: "Allow";
|
|
327
|
-
iPAddressOrRange: string;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
// @public
|
|
331
|
-
export type KeyPermission = "Read" | "Full";
|
|
332
|
-
|
|
333
|
-
// @public
|
|
334
|
-
export type KeySource = string;
|
|
335
|
-
|
|
336
|
-
// @public
|
|
337
|
-
export type KeyType = string;
|
|
338
|
-
|
|
339
|
-
// @public
|
|
340
|
-
export interface KeyVaultProperties {
|
|
341
|
-
readonly currentVersionedKeyIdentifier?: string;
|
|
342
|
-
keyName?: string;
|
|
343
|
-
keyVaultUri?: string;
|
|
344
|
-
keyVersion?: string;
|
|
345
|
-
readonly lastKeyRotationTimestamp?: Date;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
// @public
|
|
349
|
-
export type Kind = string;
|
|
350
|
-
|
|
351
|
-
// @public
|
|
352
|
-
export enum KnownBlobInventoryPolicyName {
|
|
353
|
-
Default = "default"
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// @public
|
|
357
|
-
export enum KnownBlobRestoreProgressStatus {
|
|
358
|
-
Complete = "Complete",
|
|
359
|
-
Failed = "Failed",
|
|
360
|
-
InProgress = "InProgress"
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
// @public
|
|
364
|
-
export enum KnownBypass {
|
|
365
|
-
AzureServices = "AzureServices",
|
|
366
|
-
Logging = "Logging",
|
|
367
|
-
Metrics = "Metrics",
|
|
368
|
-
None = "None"
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
// @public
|
|
372
|
-
export enum KnownCreatedByType {
|
|
373
|
-
Application = "Application",
|
|
374
|
-
Key = "Key",
|
|
375
|
-
ManagedIdentity = "ManagedIdentity",
|
|
376
|
-
User = "User"
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
// @public
|
|
380
|
-
export enum KnownDirectoryServiceOptions {
|
|
381
|
-
Aadds = "AADDS",
|
|
382
|
-
AD = "AD",
|
|
383
|
-
None = "None"
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
// @public
|
|
387
|
-
export enum KnownEncryptionScopeSource {
|
|
388
|
-
MicrosoftKeyVault = "Microsoft.KeyVault",
|
|
389
|
-
MicrosoftStorage = "Microsoft.Storage"
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
// @public
|
|
393
|
-
export enum KnownEncryptionScopeState {
|
|
394
|
-
Disabled = "Disabled",
|
|
395
|
-
Enabled = "Enabled"
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
// @public
|
|
399
|
-
export enum KnownGeoReplicationStatus {
|
|
400
|
-
Bootstrap = "Bootstrap",
|
|
401
|
-
Live = "Live",
|
|
402
|
-
Unavailable = "Unavailable"
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
// @public
|
|
406
|
-
export enum KnownInventoryRuleType {
|
|
407
|
-
Inventory = "Inventory"
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
// @public
|
|
411
|
-
export enum KnownKeySource {
|
|
412
|
-
MicrosoftKeyvault = "Microsoft.Keyvault",
|
|
413
|
-
MicrosoftStorage = "Microsoft.Storage"
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
// @public
|
|
417
|
-
export enum KnownKeyType {
|
|
418
|
-
Account = "Account",
|
|
419
|
-
Service = "Service"
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
// @public
|
|
423
|
-
export enum KnownKind {
|
|
424
|
-
BlobStorage = "BlobStorage",
|
|
425
|
-
BlockBlobStorage = "BlockBlobStorage",
|
|
426
|
-
FileStorage = "FileStorage",
|
|
427
|
-
Storage = "Storage",
|
|
428
|
-
StorageV2 = "StorageV2"
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
// @public
|
|
432
|
-
export enum KnownLargeFileSharesState {
|
|
433
|
-
Disabled = "Disabled",
|
|
434
|
-
Enabled = "Enabled"
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
// @public
|
|
438
|
-
export enum KnownManagementPolicyName {
|
|
439
|
-
Default = "default"
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// @public
|
|
443
|
-
export enum KnownMinimumTlsVersion {
|
|
444
|
-
TLS10 = "TLS1_0",
|
|
445
|
-
TLS11 = "TLS1_1",
|
|
446
|
-
TLS12 = "TLS1_2"
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
// @public
|
|
450
|
-
export enum KnownPermissions {
|
|
451
|
-
// (undocumented)
|
|
452
|
-
A = "a",
|
|
453
|
-
// (undocumented)
|
|
454
|
-
C = "c",
|
|
455
|
-
// (undocumented)
|
|
456
|
-
D = "d",
|
|
457
|
-
// (undocumented)
|
|
458
|
-
L = "l",
|
|
459
|
-
// (undocumented)
|
|
460
|
-
P = "p",
|
|
461
|
-
// (undocumented)
|
|
462
|
-
R = "r",
|
|
463
|
-
// (undocumented)
|
|
464
|
-
U = "u",
|
|
465
|
-
// (undocumented)
|
|
466
|
-
W = "w"
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
// @public
|
|
470
|
-
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
471
|
-
Creating = "Creating",
|
|
472
|
-
Deleting = "Deleting",
|
|
473
|
-
Failed = "Failed",
|
|
474
|
-
Succeeded = "Succeeded"
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
// @public
|
|
478
|
-
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
479
|
-
Approved = "Approved",
|
|
480
|
-
Pending = "Pending",
|
|
481
|
-
Rejected = "Rejected"
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
// @public
|
|
485
|
-
export enum KnownReasonCode {
|
|
486
|
-
NotAvailableForSubscription = "NotAvailableForSubscription",
|
|
487
|
-
QuotaId = "QuotaId"
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
// @public
|
|
491
|
-
export enum KnownRoutingChoice {
|
|
492
|
-
InternetRouting = "InternetRouting",
|
|
493
|
-
MicrosoftRouting = "MicrosoftRouting"
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
// @public
|
|
497
|
-
export enum KnownRuleType {
|
|
498
|
-
Lifecycle = "Lifecycle"
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
// @public
|
|
502
|
-
export enum KnownServices {
|
|
503
|
-
// (undocumented)
|
|
504
|
-
B = "b",
|
|
505
|
-
// (undocumented)
|
|
506
|
-
F = "f",
|
|
507
|
-
// (undocumented)
|
|
508
|
-
Q = "q",
|
|
509
|
-
// (undocumented)
|
|
510
|
-
T = "t"
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
// @public
|
|
514
|
-
export enum KnownSignedResource {
|
|
515
|
-
// (undocumented)
|
|
516
|
-
B = "b",
|
|
517
|
-
// (undocumented)
|
|
518
|
-
C = "c",
|
|
519
|
-
// (undocumented)
|
|
520
|
-
F = "f",
|
|
521
|
-
// (undocumented)
|
|
522
|
-
S = "s"
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
// @public
|
|
526
|
-
export enum KnownSignedResourceTypes {
|
|
527
|
-
// (undocumented)
|
|
528
|
-
C = "c",
|
|
529
|
-
// (undocumented)
|
|
530
|
-
O = "o",
|
|
531
|
-
// (undocumented)
|
|
532
|
-
S = "s"
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
// @public
|
|
536
|
-
export enum KnownSkuName {
|
|
537
|
-
PremiumLRS = "Premium_LRS",
|
|
538
|
-
PremiumZRS = "Premium_ZRS",
|
|
539
|
-
StandardGRS = "Standard_GRS",
|
|
540
|
-
StandardGzrs = "Standard_GZRS",
|
|
541
|
-
StandardLRS = "Standard_LRS",
|
|
542
|
-
StandardRagrs = "Standard_RAGRS",
|
|
543
|
-
StandardRagzrs = "Standard_RAGZRS",
|
|
544
|
-
StandardZRS = "Standard_ZRS"
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
// @public
|
|
548
|
-
export type LargeFileSharesState = string;
|
|
549
|
-
|
|
550
|
-
// @public
|
|
551
|
-
export interface ListAccountSasResponse {
|
|
552
|
-
readonly accountSasToken?: string;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
// @public
|
|
556
|
-
export interface ListBlobInventoryPolicy {
|
|
557
|
-
readonly value?: BlobInventoryPolicy[];
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
// @public
|
|
561
|
-
export interface ListServiceSasResponse {
|
|
562
|
-
readonly serviceSasToken?: string;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
// @public
|
|
566
|
-
export interface ManagementPolicies {
|
|
567
|
-
createOrUpdate(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, properties: ManagementPolicy, options?: ManagementPoliciesCreateOrUpdateOptionalParams): Promise<ManagementPoliciesCreateOrUpdateResponse>;
|
|
568
|
-
delete(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesDeleteOptionalParams): Promise<void>;
|
|
569
|
-
get(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesGetOptionalParams): Promise<ManagementPoliciesGetResponse>;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
// @public
|
|
573
|
-
export interface ManagementPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
// @public
|
|
577
|
-
export type ManagementPoliciesCreateOrUpdateResponse = ManagementPolicy;
|
|
578
|
-
|
|
579
|
-
// @public
|
|
580
|
-
export interface ManagementPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
// @public
|
|
584
|
-
export interface ManagementPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
// @public
|
|
588
|
-
export type ManagementPoliciesGetResponse = ManagementPolicy;
|
|
589
|
-
|
|
590
|
-
// @public
|
|
591
|
-
export interface ManagementPolicy extends Resource {
|
|
592
|
-
readonly lastModifiedTime?: Date;
|
|
593
|
-
policy?: ManagementPolicySchema;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
// @public
|
|
597
|
-
export interface ManagementPolicyAction {
|
|
598
|
-
baseBlob?: ManagementPolicyBaseBlob;
|
|
599
|
-
snapshot?: ManagementPolicySnapShot;
|
|
600
|
-
version?: ManagementPolicyVersion;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
// @public
|
|
604
|
-
export interface ManagementPolicyBaseBlob {
|
|
605
|
-
delete?: DateAfterModification;
|
|
606
|
-
enableAutoTierToHotFromCool?: boolean;
|
|
607
|
-
tierToArchive?: DateAfterModification;
|
|
608
|
-
tierToCool?: DateAfterModification;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
// @public
|
|
612
|
-
export interface ManagementPolicyDefinition {
|
|
613
|
-
actions: ManagementPolicyAction;
|
|
614
|
-
filters?: ManagementPolicyFilter;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
// @public
|
|
618
|
-
export interface ManagementPolicyFilter {
|
|
619
|
-
blobIndexMatch?: TagFilter[];
|
|
620
|
-
blobTypes: string[];
|
|
621
|
-
prefixMatch?: string[];
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
// @public
|
|
625
|
-
export type ManagementPolicyName = string;
|
|
626
|
-
|
|
627
|
-
// @public
|
|
628
|
-
export interface ManagementPolicyRule {
|
|
629
|
-
definition: ManagementPolicyDefinition;
|
|
630
|
-
enabled?: boolean;
|
|
631
|
-
name: string;
|
|
632
|
-
type: RuleType;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
// @public
|
|
636
|
-
export interface ManagementPolicySchema {
|
|
637
|
-
rules: ManagementPolicyRule[];
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
// @public
|
|
641
|
-
export interface ManagementPolicySnapShot {
|
|
642
|
-
delete?: DateAfterCreation;
|
|
643
|
-
tierToArchive?: DateAfterCreation;
|
|
644
|
-
tierToCool?: DateAfterCreation;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
// @public
|
|
648
|
-
export interface ManagementPolicyVersion {
|
|
649
|
-
delete?: DateAfterCreation;
|
|
650
|
-
tierToArchive?: DateAfterCreation;
|
|
651
|
-
tierToCool?: DateAfterCreation;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
// @public
|
|
655
|
-
export interface MetricSpecification {
|
|
656
|
-
aggregationType?: string;
|
|
657
|
-
category?: string;
|
|
658
|
-
dimensions?: Dimension[];
|
|
659
|
-
displayDescription?: string;
|
|
660
|
-
displayName?: string;
|
|
661
|
-
fillGapWithZero?: boolean;
|
|
662
|
-
name?: string;
|
|
663
|
-
resourceIdDimensionNameOverride?: string;
|
|
664
|
-
unit?: string;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
// @public
|
|
668
|
-
export type MinimumTlsVersion = string;
|
|
669
|
-
|
|
670
|
-
// @public
|
|
671
|
-
export interface NetworkRuleSet {
|
|
672
|
-
bypass?: Bypass;
|
|
673
|
-
defaultAction: DefaultAction;
|
|
674
|
-
ipRules?: IPRule[];
|
|
675
|
-
virtualNetworkRules?: VirtualNetworkRule[];
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
// @public
|
|
679
|
-
export interface ObjectReplicationPolicies {
|
|
680
|
-
value?: ObjectReplicationPolicy[];
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
// @public
|
|
684
|
-
export interface ObjectReplicationPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
// @public
|
|
688
|
-
export type ObjectReplicationPoliciesCreateOrUpdateResponse = ObjectReplicationPolicy;
|
|
689
|
-
|
|
690
|
-
// @public
|
|
691
|
-
export interface ObjectReplicationPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
// @public
|
|
695
|
-
export interface ObjectReplicationPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
// @public
|
|
699
|
-
export type ObjectReplicationPoliciesGetResponse = ObjectReplicationPolicy;
|
|
700
|
-
|
|
701
|
-
// @public
|
|
702
|
-
export interface ObjectReplicationPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
// @public
|
|
706
|
-
export type ObjectReplicationPoliciesListResponse = ObjectReplicationPolicies;
|
|
707
|
-
|
|
708
|
-
// @public
|
|
709
|
-
export interface ObjectReplicationPoliciesOperations {
|
|
710
|
-
createOrUpdate(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, properties: ObjectReplicationPolicy, options?: ObjectReplicationPoliciesCreateOrUpdateOptionalParams): Promise<ObjectReplicationPoliciesCreateOrUpdateResponse>;
|
|
711
|
-
delete(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesDeleteOptionalParams): Promise<void>;
|
|
712
|
-
get(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesGetOptionalParams): Promise<ObjectReplicationPoliciesGetResponse>;
|
|
713
|
-
list(resourceGroupName: string, accountName: string, options?: ObjectReplicationPoliciesListOptionalParams): PagedAsyncIterableIterator<ObjectReplicationPolicy>;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
// @public
|
|
717
|
-
export interface ObjectReplicationPolicy extends Resource {
|
|
718
|
-
destinationAccount?: string;
|
|
719
|
-
readonly enabledTime?: Date;
|
|
720
|
-
readonly policyId?: string;
|
|
721
|
-
rules?: ObjectReplicationPolicyRule[];
|
|
722
|
-
sourceAccount?: string;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
// @public
|
|
726
|
-
export interface ObjectReplicationPolicyFilter {
|
|
727
|
-
minCreationTime?: string;
|
|
728
|
-
prefixMatch?: string[];
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
// @public
|
|
732
|
-
export interface ObjectReplicationPolicyRule {
|
|
733
|
-
destinationContainer: string;
|
|
734
|
-
filters?: ObjectReplicationPolicyFilter;
|
|
735
|
-
ruleId?: string;
|
|
736
|
-
sourceContainer: string;
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
// @public
|
|
740
|
-
export interface Operation {
|
|
741
|
-
display?: OperationDisplay;
|
|
742
|
-
name?: string;
|
|
743
|
-
origin?: string;
|
|
744
|
-
serviceSpecification?: ServiceSpecification;
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
// @public
|
|
748
|
-
export interface OperationDisplay {
|
|
749
|
-
description?: string;
|
|
750
|
-
operation?: string;
|
|
751
|
-
provider?: string;
|
|
752
|
-
resource?: string;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
// @public
|
|
756
|
-
export interface OperationListResult {
|
|
757
|
-
value?: Operation[];
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
// @public
|
|
761
|
-
export interface Operations {
|
|
762
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
// @public
|
|
766
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
// @public
|
|
770
|
-
export type OperationsListResponse = OperationListResult;
|
|
771
|
-
|
|
772
|
-
// @public
|
|
773
|
-
export type Permissions = string;
|
|
774
|
-
|
|
775
|
-
// @public
|
|
776
|
-
export interface PrivateEndpoint {
|
|
777
|
-
readonly id?: string;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
// @public
|
|
781
|
-
export interface PrivateEndpointConnection extends Resource {
|
|
782
|
-
privateEndpoint?: PrivateEndpoint;
|
|
783
|
-
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
784
|
-
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
// @public
|
|
788
|
-
export interface PrivateEndpointConnectionListResult {
|
|
789
|
-
value?: PrivateEndpointConnection[];
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
// @public
|
|
793
|
-
export type PrivateEndpointConnectionProvisioningState = string;
|
|
794
|
-
|
|
795
|
-
// @public
|
|
796
|
-
export interface PrivateEndpointConnections {
|
|
797
|
-
delete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
798
|
-
get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
799
|
-
list(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
800
|
-
put(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsPutOptionalParams): Promise<PrivateEndpointConnectionsPutResponse>;
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
// @public
|
|
804
|
-
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
// @public
|
|
808
|
-
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
// @public
|
|
812
|
-
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
813
|
-
|
|
814
|
-
// @public
|
|
815
|
-
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
// @public
|
|
819
|
-
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
820
|
-
|
|
821
|
-
// @public
|
|
822
|
-
export interface PrivateEndpointConnectionsPutOptionalParams extends coreClient.OperationOptions {
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
// @public
|
|
826
|
-
export type PrivateEndpointConnectionsPutResponse = PrivateEndpointConnection;
|
|
827
|
-
|
|
828
|
-
// @public
|
|
829
|
-
export type PrivateEndpointServiceConnectionStatus = string;
|
|
830
|
-
|
|
831
|
-
// @public
|
|
832
|
-
export interface PrivateLinkResource extends Resource {
|
|
833
|
-
readonly groupId?: string;
|
|
834
|
-
readonly requiredMembers?: string[];
|
|
835
|
-
requiredZoneNames?: string[];
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
// @public
|
|
839
|
-
export interface PrivateLinkResourceListResult {
|
|
840
|
-
value?: PrivateLinkResource[];
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
// @public
|
|
844
|
-
export interface PrivateLinkResources {
|
|
845
|
-
listByStorageAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListByStorageAccountOptionalParams): Promise<PrivateLinkResourcesListByStorageAccountResponse>;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
// @public
|
|
849
|
-
export interface PrivateLinkResourcesListByStorageAccountOptionalParams extends coreClient.OperationOptions {
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export type PrivateLinkResourcesListByStorageAccountResponse = PrivateLinkResourceListResult;
|
|
854
|
-
|
|
855
|
-
// @public
|
|
856
|
-
export interface PrivateLinkServiceConnectionState {
|
|
857
|
-
actionRequired?: string;
|
|
858
|
-
description?: string;
|
|
859
|
-
status?: PrivateEndpointServiceConnectionStatus;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
// @public
|
|
863
|
-
export type ProvisioningState = "Creating" | "ResolvingDNS" | "Succeeded";
|
|
864
|
-
|
|
865
|
-
// @public
|
|
866
|
-
export type Reason = "AccountNameInvalid" | "AlreadyExists";
|
|
867
|
-
|
|
868
|
-
// @public
|
|
869
|
-
export type ReasonCode = string;
|
|
870
|
-
|
|
871
|
-
// @public
|
|
872
|
-
export interface Resource {
|
|
873
|
-
readonly id?: string;
|
|
874
|
-
readonly name?: string;
|
|
875
|
-
readonly type?: string;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
// @public
|
|
879
|
-
export interface Restriction {
|
|
880
|
-
reasonCode?: ReasonCode;
|
|
881
|
-
readonly type?: string;
|
|
882
|
-
readonly values?: string[];
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
// @public
|
|
886
|
-
export type RoutingChoice = string;
|
|
887
|
-
|
|
888
|
-
// @public
|
|
889
|
-
export interface RoutingPreference {
|
|
890
|
-
publishInternetEndpoints?: boolean;
|
|
891
|
-
publishMicrosoftEndpoints?: boolean;
|
|
892
|
-
routingChoice?: RoutingChoice;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
// @public
|
|
896
|
-
export type RuleType = string;
|
|
897
|
-
|
|
898
|
-
// @public
|
|
899
|
-
export type Services = string;
|
|
900
|
-
|
|
901
|
-
// @public
|
|
902
|
-
export interface ServiceSasParameters {
|
|
903
|
-
cacheControl?: string;
|
|
904
|
-
canonicalizedResource: string;
|
|
905
|
-
contentDisposition?: string;
|
|
906
|
-
contentEncoding?: string;
|
|
907
|
-
contentLanguage?: string;
|
|
908
|
-
contentType?: string;
|
|
909
|
-
identifier?: string;
|
|
910
|
-
iPAddressOrRange?: string;
|
|
911
|
-
keyToSign?: string;
|
|
912
|
-
partitionKeyEnd?: string;
|
|
913
|
-
partitionKeyStart?: string;
|
|
914
|
-
permissions?: Permissions;
|
|
915
|
-
protocols?: HttpProtocol;
|
|
916
|
-
resource?: SignedResource;
|
|
917
|
-
rowKeyEnd?: string;
|
|
918
|
-
rowKeyStart?: string;
|
|
919
|
-
sharedAccessExpiryTime?: Date;
|
|
920
|
-
sharedAccessStartTime?: Date;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
// @public
|
|
924
|
-
export interface ServiceSpecification {
|
|
925
|
-
metricSpecifications?: MetricSpecification[];
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
// @public
|
|
929
|
-
export type SignedResource = string;
|
|
930
|
-
|
|
931
|
-
// @public
|
|
932
|
-
export type SignedResourceTypes = string;
|
|
933
|
-
|
|
934
|
-
// @public
|
|
935
|
-
export interface Sku {
|
|
936
|
-
name: SkuName;
|
|
937
|
-
readonly tier?: SkuTier;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
// @public
|
|
941
|
-
export interface SKUCapability {
|
|
942
|
-
readonly name?: string;
|
|
943
|
-
readonly value?: string;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
// @public
|
|
947
|
-
export interface SkuInformation {
|
|
948
|
-
readonly capabilities?: SKUCapability[];
|
|
949
|
-
readonly kind?: Kind;
|
|
950
|
-
readonly locations?: string[];
|
|
951
|
-
name: SkuName;
|
|
952
|
-
readonly resourceType?: string;
|
|
953
|
-
restrictions?: Restriction[];
|
|
954
|
-
readonly tier?: SkuTier;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
// @public
|
|
958
|
-
export type SkuName = string;
|
|
959
|
-
|
|
960
|
-
// @public
|
|
961
|
-
export interface Skus {
|
|
962
|
-
list(options?: SkusListOptionalParams): PagedAsyncIterableIterator<SkuInformation>;
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
// @public
|
|
966
|
-
export interface SkusListOptionalParams extends coreClient.OperationOptions {
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
// @public
|
|
970
|
-
export type SkusListResponse = StorageSkuListResult;
|
|
971
|
-
|
|
972
|
-
// @public
|
|
973
|
-
export type SkuTier = "Standard" | "Premium";
|
|
974
|
-
|
|
975
|
-
// @public
|
|
976
|
-
export type State = "provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted";
|
|
977
|
-
|
|
978
|
-
// @public
|
|
979
|
-
export interface StorageAccount extends TrackedResource {
|
|
980
|
-
readonly accessTier?: AccessTier;
|
|
981
|
-
allowBlobPublicAccess?: boolean;
|
|
982
|
-
allowSharedKeyAccess?: boolean;
|
|
983
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
984
|
-
readonly blobRestoreStatus?: BlobRestoreStatus;
|
|
985
|
-
readonly creationTime?: Date;
|
|
986
|
-
readonly customDomain?: CustomDomain;
|
|
987
|
-
enableHttpsTrafficOnly?: boolean;
|
|
988
|
-
readonly encryption?: Encryption;
|
|
989
|
-
readonly failoverInProgress?: boolean;
|
|
990
|
-
readonly geoReplicationStats?: GeoReplicationStats;
|
|
991
|
-
identity?: Identity;
|
|
992
|
-
isHnsEnabled?: boolean;
|
|
993
|
-
readonly kind?: Kind;
|
|
994
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
995
|
-
readonly lastGeoFailoverTime?: Date;
|
|
996
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
997
|
-
readonly networkRuleSet?: NetworkRuleSet;
|
|
998
|
-
readonly primaryEndpoints?: Endpoints;
|
|
999
|
-
readonly primaryLocation?: string;
|
|
1000
|
-
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
1001
|
-
readonly provisioningState?: ProvisioningState;
|
|
1002
|
-
routingPreference?: RoutingPreference;
|
|
1003
|
-
readonly secondaryEndpoints?: Endpoints;
|
|
1004
|
-
readonly secondaryLocation?: string;
|
|
1005
|
-
readonly sku?: Sku;
|
|
1006
|
-
readonly statusOfPrimary?: AccountStatus;
|
|
1007
|
-
readonly statusOfSecondary?: AccountStatus;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
// @public
|
|
1011
|
-
export interface StorageAccountCheckNameAvailabilityParameters {
|
|
1012
|
-
name: string;
|
|
1013
|
-
type: "Microsoft.Storage/storageAccounts";
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
// @public
|
|
1017
|
-
export interface StorageAccountCreateParameters {
|
|
1018
|
-
accessTier?: AccessTier;
|
|
1019
|
-
allowBlobPublicAccess?: boolean;
|
|
1020
|
-
allowSharedKeyAccess?: boolean;
|
|
1021
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
1022
|
-
customDomain?: CustomDomain;
|
|
1023
|
-
enableHttpsTrafficOnly?: boolean;
|
|
1024
|
-
encryption?: Encryption;
|
|
1025
|
-
identity?: Identity;
|
|
1026
|
-
isHnsEnabled?: boolean;
|
|
1027
|
-
kind: Kind;
|
|
1028
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
1029
|
-
location: string;
|
|
1030
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
1031
|
-
networkRuleSet?: NetworkRuleSet;
|
|
1032
|
-
routingPreference?: RoutingPreference;
|
|
1033
|
-
sku: Sku;
|
|
1034
|
-
tags?: {
|
|
1035
|
-
[propertyName: string]: string;
|
|
1036
|
-
};
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
// @public
|
|
1040
|
-
export type StorageAccountExpand = "geoReplicationStats" | "blobRestoreStatus";
|
|
1041
|
-
|
|
1042
|
-
// @public
|
|
1043
|
-
export interface StorageAccountInternetEndpoints {
|
|
1044
|
-
readonly blob?: string;
|
|
1045
|
-
readonly dfs?: string;
|
|
1046
|
-
readonly file?: string;
|
|
1047
|
-
readonly web?: string;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
// @public
|
|
1051
|
-
export interface StorageAccountKey {
|
|
1052
|
-
readonly keyName?: string;
|
|
1053
|
-
readonly permissions?: KeyPermission;
|
|
1054
|
-
readonly value?: string;
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
// @public
|
|
1058
|
-
export interface StorageAccountListKeysResult {
|
|
1059
|
-
readonly keys?: StorageAccountKey[];
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
// @public
|
|
1063
|
-
export interface StorageAccountListResult {
|
|
1064
|
-
readonly nextLink?: string;
|
|
1065
|
-
readonly value?: StorageAccount[];
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
// @public
|
|
1069
|
-
export interface StorageAccountMicrosoftEndpoints {
|
|
1070
|
-
readonly blob?: string;
|
|
1071
|
-
readonly dfs?: string;
|
|
1072
|
-
readonly file?: string;
|
|
1073
|
-
readonly queue?: string;
|
|
1074
|
-
readonly table?: string;
|
|
1075
|
-
readonly web?: string;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
// @public
|
|
1079
|
-
export interface StorageAccountRegenerateKeyParameters {
|
|
1080
|
-
keyName: string;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
// @public
|
|
1084
|
-
export interface StorageAccounts {
|
|
1085
|
-
beginCreate(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountsCreateResponse>, StorageAccountsCreateResponse>>;
|
|
1086
|
-
beginCreateAndWait(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<StorageAccountsCreateResponse>;
|
|
1087
|
-
beginFailover(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1088
|
-
beginFailoverAndWait(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<void>;
|
|
1089
|
-
beginRestoreBlobRanges(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountsRestoreBlobRangesResponse>, StorageAccountsRestoreBlobRangesResponse>>;
|
|
1090
|
-
beginRestoreBlobRangesAndWait(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<StorageAccountsRestoreBlobRangesResponse>;
|
|
1091
|
-
checkNameAvailability(accountName: StorageAccountCheckNameAvailabilityParameters, options?: StorageAccountsCheckNameAvailabilityOptionalParams): Promise<StorageAccountsCheckNameAvailabilityResponse>;
|
|
1092
|
-
delete(resourceGroupName: string, accountName: string, options?: StorageAccountsDeleteOptionalParams): Promise<void>;
|
|
1093
|
-
getProperties(resourceGroupName: string, accountName: string, options?: StorageAccountsGetPropertiesOptionalParams): Promise<StorageAccountsGetPropertiesResponse>;
|
|
1094
|
-
list(options?: StorageAccountsListOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
1095
|
-
listAccountSAS(resourceGroupName: string, accountName: string, parameters: AccountSasParameters, options?: StorageAccountsListAccountSASOptionalParams): Promise<StorageAccountsListAccountSASResponse>;
|
|
1096
|
-
listByResourceGroup(resourceGroupName: string, options?: StorageAccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
1097
|
-
listKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsListKeysOptionalParams): Promise<StorageAccountsListKeysResponse>;
|
|
1098
|
-
listServiceSAS(resourceGroupName: string, accountName: string, parameters: ServiceSasParameters, options?: StorageAccountsListServiceSASOptionalParams): Promise<StorageAccountsListServiceSASResponse>;
|
|
1099
|
-
regenerateKey(resourceGroupName: string, accountName: string, regenerateKey: StorageAccountRegenerateKeyParameters, options?: StorageAccountsRegenerateKeyOptionalParams): Promise<StorageAccountsRegenerateKeyResponse>;
|
|
1100
|
-
revokeUserDelegationKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsRevokeUserDelegationKeysOptionalParams): Promise<void>;
|
|
1101
|
-
update(resourceGroupName: string, accountName: string, parameters: StorageAccountUpdateParameters, options?: StorageAccountsUpdateOptionalParams): Promise<StorageAccountsUpdateResponse>;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
// @public
|
|
1105
|
-
export interface StorageAccountsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
// @public
|
|
1109
|
-
export type StorageAccountsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
|
|
1110
|
-
|
|
1111
|
-
// @public
|
|
1112
|
-
export interface StorageAccountsCreateOptionalParams extends coreClient.OperationOptions {
|
|
1113
|
-
resumeFrom?: string;
|
|
1114
|
-
updateIntervalInMs?: number;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
// @public
|
|
1118
|
-
export type StorageAccountsCreateResponse = StorageAccount;
|
|
1119
|
-
|
|
1120
|
-
// @public
|
|
1121
|
-
export interface StorageAccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
// @public
|
|
1125
|
-
export interface StorageAccountsFailoverOptionalParams extends coreClient.OperationOptions {
|
|
1126
|
-
resumeFrom?: string;
|
|
1127
|
-
updateIntervalInMs?: number;
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
// @public
|
|
1131
|
-
export interface StorageAccountsGetPropertiesOptionalParams extends coreClient.OperationOptions {
|
|
1132
|
-
expand?: StorageAccountExpand;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
// @public
|
|
1136
|
-
export type StorageAccountsGetPropertiesResponse = StorageAccount;
|
|
1137
|
-
|
|
1138
|
-
// @public
|
|
1139
|
-
export interface StorageAccountsListAccountSASOptionalParams extends coreClient.OperationOptions {
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
// @public
|
|
1143
|
-
export type StorageAccountsListAccountSASResponse = ListAccountSasResponse;
|
|
1144
|
-
|
|
1145
|
-
// @public
|
|
1146
|
-
export interface StorageAccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
// @public
|
|
1150
|
-
export type StorageAccountsListByResourceGroupResponse = StorageAccountListResult;
|
|
1151
|
-
|
|
1152
|
-
// @public
|
|
1153
|
-
export interface StorageAccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1156
|
-
// @public
|
|
1157
|
-
export type StorageAccountsListKeysResponse = StorageAccountListKeysResult;
|
|
1158
|
-
|
|
1159
|
-
// @public
|
|
1160
|
-
export interface StorageAccountsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
// @public
|
|
1164
|
-
export type StorageAccountsListNextResponse = StorageAccountListResult;
|
|
1165
|
-
|
|
1166
|
-
// @public
|
|
1167
|
-
export interface StorageAccountsListOptionalParams extends coreClient.OperationOptions {
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
// @public
|
|
1171
|
-
export type StorageAccountsListResponse = StorageAccountListResult;
|
|
1172
|
-
|
|
1173
|
-
// @public
|
|
1174
|
-
export interface StorageAccountsListServiceSASOptionalParams extends coreClient.OperationOptions {
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
// @public
|
|
1178
|
-
export type StorageAccountsListServiceSASResponse = ListServiceSasResponse;
|
|
1179
|
-
|
|
1180
|
-
// @public
|
|
1181
|
-
export interface StorageAccountsRegenerateKeyOptionalParams extends coreClient.OperationOptions {
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
// @public
|
|
1185
|
-
export type StorageAccountsRegenerateKeyResponse = StorageAccountListKeysResult;
|
|
1186
|
-
|
|
1187
|
-
// @public
|
|
1188
|
-
export interface StorageAccountsRestoreBlobRangesOptionalParams extends coreClient.OperationOptions {
|
|
1189
|
-
resumeFrom?: string;
|
|
1190
|
-
updateIntervalInMs?: number;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
// @public
|
|
1194
|
-
export type StorageAccountsRestoreBlobRangesResponse = BlobRestoreStatus;
|
|
1195
|
-
|
|
1196
|
-
// @public
|
|
1197
|
-
export interface StorageAccountsRevokeUserDelegationKeysOptionalParams extends coreClient.OperationOptions {
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
// @public
|
|
1201
|
-
export interface StorageAccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
// @public
|
|
1205
|
-
export type StorageAccountsUpdateResponse = StorageAccount;
|
|
1206
|
-
|
|
1207
|
-
// @public
|
|
1208
|
-
export interface StorageAccountUpdateParameters {
|
|
1209
|
-
accessTier?: AccessTier;
|
|
1210
|
-
allowBlobPublicAccess?: boolean;
|
|
1211
|
-
allowSharedKeyAccess?: boolean;
|
|
1212
|
-
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
1213
|
-
customDomain?: CustomDomain;
|
|
1214
|
-
enableHttpsTrafficOnly?: boolean;
|
|
1215
|
-
encryption?: Encryption;
|
|
1216
|
-
identity?: Identity;
|
|
1217
|
-
kind?: Kind;
|
|
1218
|
-
largeFileSharesState?: LargeFileSharesState;
|
|
1219
|
-
minimumTlsVersion?: MinimumTlsVersion;
|
|
1220
|
-
networkRuleSet?: NetworkRuleSet;
|
|
1221
|
-
routingPreference?: RoutingPreference;
|
|
1222
|
-
sku?: Sku;
|
|
1223
|
-
tags?: {
|
|
1224
|
-
[propertyName: string]: string;
|
|
1225
|
-
};
|
|
1226
|
-
}
|
|
1227
|
-
|
|
1228
|
-
// @public (undocumented)
|
|
1229
|
-
export class StorageManagementClient extends coreClient.ServiceClient {
|
|
1230
|
-
// (undocumented)
|
|
1231
|
-
$host: string;
|
|
1232
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageManagementClientOptionalParams);
|
|
1233
|
-
// (undocumented)
|
|
1234
|
-
apiVersion: string;
|
|
1235
|
-
// (undocumented)
|
|
1236
|
-
blobInventoryPolicies: BlobInventoryPolicies;
|
|
1237
|
-
// (undocumented)
|
|
1238
|
-
encryptionScopes: EncryptionScopes;
|
|
1239
|
-
// (undocumented)
|
|
1240
|
-
managementPolicies: ManagementPolicies;
|
|
1241
|
-
// (undocumented)
|
|
1242
|
-
objectReplicationPoliciesOperations: ObjectReplicationPoliciesOperations;
|
|
1243
|
-
// (undocumented)
|
|
1244
|
-
operations: Operations;
|
|
1245
|
-
// (undocumented)
|
|
1246
|
-
privateEndpointConnections: PrivateEndpointConnections;
|
|
1247
|
-
// (undocumented)
|
|
1248
|
-
privateLinkResources: PrivateLinkResources;
|
|
1249
|
-
// (undocumented)
|
|
1250
|
-
skus: Skus;
|
|
1251
|
-
// (undocumented)
|
|
1252
|
-
storageAccounts: StorageAccounts;
|
|
1253
|
-
// (undocumented)
|
|
1254
|
-
subscriptionId: string;
|
|
1255
|
-
// (undocumented)
|
|
1256
|
-
usages: Usages;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
// @public
|
|
1260
|
-
export interface StorageManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
1261
|
-
$host?: string;
|
|
1262
|
-
apiVersion?: string;
|
|
1263
|
-
endpoint?: string;
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
// @public
|
|
1267
|
-
export interface StorageSkuListResult {
|
|
1268
|
-
readonly value?: SkuInformation[];
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
// @public
|
|
1272
|
-
export interface SystemData {
|
|
1273
|
-
createdAt?: Date;
|
|
1274
|
-
createdBy?: string;
|
|
1275
|
-
createdByType?: CreatedByType;
|
|
1276
|
-
lastModifiedAt?: Date;
|
|
1277
|
-
lastModifiedBy?: string;
|
|
1278
|
-
lastModifiedByType?: CreatedByType;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
// @public
|
|
1282
|
-
export interface TagFilter {
|
|
1283
|
-
name: string;
|
|
1284
|
-
op: string;
|
|
1285
|
-
value: string;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
// @public
|
|
1289
|
-
export interface TrackedResource extends Resource {
|
|
1290
|
-
location: string;
|
|
1291
|
-
tags?: {
|
|
1292
|
-
[propertyName: string]: string;
|
|
1293
|
-
};
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
// @public
|
|
1297
|
-
export interface Usage {
|
|
1298
|
-
readonly currentValue?: number;
|
|
1299
|
-
readonly limit?: number;
|
|
1300
|
-
readonly name?: UsageName;
|
|
1301
|
-
readonly unit?: UsageUnit;
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
// @public
|
|
1305
|
-
export interface UsageListResult {
|
|
1306
|
-
value?: Usage[];
|
|
1307
|
-
}
|
|
1308
|
-
|
|
1309
|
-
// @public
|
|
1310
|
-
export interface UsageName {
|
|
1311
|
-
readonly localizedValue?: string;
|
|
1312
|
-
readonly value?: string;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
// @public
|
|
1316
|
-
export interface Usages {
|
|
1317
|
-
listByLocation(location: string, options?: UsagesListByLocationOptionalParams): PagedAsyncIterableIterator<Usage>;
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
// @public
|
|
1321
|
-
export interface UsagesListByLocationOptionalParams extends coreClient.OperationOptions {
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
// @public
|
|
1325
|
-
export type UsagesListByLocationResponse = UsageListResult;
|
|
1326
|
-
|
|
1327
|
-
// @public
|
|
1328
|
-
export type UsageUnit = "Count" | "Bytes" | "Seconds" | "Percent" | "CountsPerSecond" | "BytesPerSecond";
|
|
1329
|
-
|
|
1330
|
-
// @public
|
|
1331
|
-
export interface VirtualNetworkRule {
|
|
1332
|
-
action?: "Allow";
|
|
1333
|
-
state?: State;
|
|
1334
|
-
virtualNetworkResourceId: string;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
// (No @packageDocumentation comment for this package)
|
|
1338
|
-
|
|
1339
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-storage-profile-2020-09-01-hybrid"
|
|
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
import { PollerLike } from '@azure/core-lro';
|
|
11
|
+
import { PollOperationState } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export type AccessTier = "Hot" | "Cool";
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export interface AccountSasParameters {
|
|
18
|
+
iPAddressOrRange?: string;
|
|
19
|
+
keyToSign?: string;
|
|
20
|
+
permissions: Permissions;
|
|
21
|
+
protocols?: HttpProtocol;
|
|
22
|
+
resourceTypes: SignedResourceTypes;
|
|
23
|
+
services: Services;
|
|
24
|
+
sharedAccessExpiryTime: Date;
|
|
25
|
+
sharedAccessStartTime?: Date;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export type AccountStatus = "available" | "unavailable";
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export interface ActiveDirectoryProperties {
|
|
33
|
+
azureStorageSid: string;
|
|
34
|
+
domainGuid: string;
|
|
35
|
+
domainName: string;
|
|
36
|
+
domainSid: string;
|
|
37
|
+
forestName: string;
|
|
38
|
+
netBiosDomainName: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// @public
|
|
42
|
+
export interface AzureFilesIdentityBasedAuthentication {
|
|
43
|
+
activeDirectoryProperties?: ActiveDirectoryProperties;
|
|
44
|
+
directoryServiceOptions: DirectoryServiceOptions;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public
|
|
48
|
+
export interface BlobInventoryPolicies {
|
|
49
|
+
createOrUpdate(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, properties: BlobInventoryPolicy, options?: BlobInventoryPoliciesCreateOrUpdateOptionalParams): Promise<BlobInventoryPoliciesCreateOrUpdateResponse>;
|
|
50
|
+
delete(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesDeleteOptionalParams): Promise<void>;
|
|
51
|
+
get(resourceGroupName: string, accountName: string, blobInventoryPolicyName: BlobInventoryPolicyName, options?: BlobInventoryPoliciesGetOptionalParams): Promise<BlobInventoryPoliciesGetResponse>;
|
|
52
|
+
list(resourceGroupName: string, accountName: string, options?: BlobInventoryPoliciesListOptionalParams): PagedAsyncIterableIterator<BlobInventoryPolicy>;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// @public
|
|
56
|
+
export interface BlobInventoryPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// @public
|
|
60
|
+
export type BlobInventoryPoliciesCreateOrUpdateResponse = BlobInventoryPolicy;
|
|
61
|
+
|
|
62
|
+
// @public
|
|
63
|
+
export interface BlobInventoryPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export interface BlobInventoryPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export type BlobInventoryPoliciesGetResponse = BlobInventoryPolicy;
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface BlobInventoryPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export type BlobInventoryPoliciesListResponse = ListBlobInventoryPolicy;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface BlobInventoryPolicy extends Resource {
|
|
82
|
+
readonly lastModifiedTime?: Date;
|
|
83
|
+
policy?: BlobInventoryPolicySchema;
|
|
84
|
+
readonly systemData?: SystemData;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// @public
|
|
88
|
+
export interface BlobInventoryPolicyDefinition {
|
|
89
|
+
filters: BlobInventoryPolicyFilter;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// @public
|
|
93
|
+
export interface BlobInventoryPolicyFilter {
|
|
94
|
+
blobTypes: string[];
|
|
95
|
+
includeBlobVersions?: boolean;
|
|
96
|
+
includeSnapshots?: boolean;
|
|
97
|
+
prefixMatch?: string[];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export type BlobInventoryPolicyName = string;
|
|
102
|
+
|
|
103
|
+
// @public
|
|
104
|
+
export interface BlobInventoryPolicyRule {
|
|
105
|
+
definition: BlobInventoryPolicyDefinition;
|
|
106
|
+
enabled: boolean;
|
|
107
|
+
name: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// @public
|
|
111
|
+
export interface BlobInventoryPolicySchema {
|
|
112
|
+
destination: string;
|
|
113
|
+
enabled: boolean;
|
|
114
|
+
rules: BlobInventoryPolicyRule[];
|
|
115
|
+
type: InventoryRuleType;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export interface BlobRestoreParameters {
|
|
120
|
+
blobRanges: BlobRestoreRange[];
|
|
121
|
+
timeToRestore: Date;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @public
|
|
125
|
+
export type BlobRestoreProgressStatus = string;
|
|
126
|
+
|
|
127
|
+
// @public
|
|
128
|
+
export interface BlobRestoreRange {
|
|
129
|
+
endRange: string;
|
|
130
|
+
startRange: string;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export interface BlobRestoreStatus {
|
|
135
|
+
readonly failureReason?: string;
|
|
136
|
+
readonly parameters?: BlobRestoreParameters;
|
|
137
|
+
readonly restoreId?: string;
|
|
138
|
+
readonly status?: BlobRestoreProgressStatus;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// @public
|
|
142
|
+
export type Bypass = string;
|
|
143
|
+
|
|
144
|
+
// @public
|
|
145
|
+
export interface CheckNameAvailabilityResult {
|
|
146
|
+
readonly message?: string;
|
|
147
|
+
readonly nameAvailable?: boolean;
|
|
148
|
+
readonly reason?: Reason;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// @public
|
|
152
|
+
export type CreatedByType = string;
|
|
153
|
+
|
|
154
|
+
// @public
|
|
155
|
+
export interface CustomDomain {
|
|
156
|
+
name: string;
|
|
157
|
+
useSubDomainName?: boolean;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export interface DateAfterCreation {
|
|
162
|
+
daysAfterCreationGreaterThan: number;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// @public
|
|
166
|
+
export interface DateAfterModification {
|
|
167
|
+
daysAfterLastAccessTimeGreaterThan?: number;
|
|
168
|
+
daysAfterModificationGreaterThan?: number;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// @public
|
|
172
|
+
export type DefaultAction = "Allow" | "Deny";
|
|
173
|
+
|
|
174
|
+
// @public
|
|
175
|
+
export interface Dimension {
|
|
176
|
+
displayName?: string;
|
|
177
|
+
name?: string;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export type DirectoryServiceOptions = string;
|
|
182
|
+
|
|
183
|
+
// @public
|
|
184
|
+
export interface Encryption {
|
|
185
|
+
keySource: KeySource;
|
|
186
|
+
keyVaultProperties?: KeyVaultProperties;
|
|
187
|
+
requireInfrastructureEncryption?: boolean;
|
|
188
|
+
services?: EncryptionServices;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// @public
|
|
192
|
+
export interface EncryptionScope extends Resource {
|
|
193
|
+
readonly creationTime?: Date;
|
|
194
|
+
keyVaultProperties?: EncryptionScopeKeyVaultProperties;
|
|
195
|
+
readonly lastModifiedTime?: Date;
|
|
196
|
+
source?: EncryptionScopeSource;
|
|
197
|
+
state?: EncryptionScopeState;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// @public
|
|
201
|
+
export interface EncryptionScopeKeyVaultProperties {
|
|
202
|
+
keyUri?: string;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
// @public
|
|
206
|
+
export interface EncryptionScopeListResult {
|
|
207
|
+
readonly nextLink?: string;
|
|
208
|
+
readonly value?: EncryptionScope[];
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// @public
|
|
212
|
+
export interface EncryptionScopes {
|
|
213
|
+
get(resourceGroupName: string, accountName: string, encryptionScopeName: string, options?: EncryptionScopesGetOptionalParams): Promise<EncryptionScopesGetResponse>;
|
|
214
|
+
list(resourceGroupName: string, accountName: string, options?: EncryptionScopesListOptionalParams): PagedAsyncIterableIterator<EncryptionScope>;
|
|
215
|
+
patch(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPatchOptionalParams): Promise<EncryptionScopesPatchResponse>;
|
|
216
|
+
put(resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPutOptionalParams): Promise<EncryptionScopesPutResponse>;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// @public
|
|
220
|
+
export interface EncryptionScopesGetOptionalParams extends coreClient.OperationOptions {
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// @public
|
|
224
|
+
export type EncryptionScopesGetResponse = EncryptionScope;
|
|
225
|
+
|
|
226
|
+
// @public
|
|
227
|
+
export interface EncryptionScopesListNextOptionalParams extends coreClient.OperationOptions {
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// @public
|
|
231
|
+
export type EncryptionScopesListNextResponse = EncryptionScopeListResult;
|
|
232
|
+
|
|
233
|
+
// @public
|
|
234
|
+
export interface EncryptionScopesListOptionalParams extends coreClient.OperationOptions {
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// @public
|
|
238
|
+
export type EncryptionScopesListResponse = EncryptionScopeListResult;
|
|
239
|
+
|
|
240
|
+
// @public
|
|
241
|
+
export type EncryptionScopeSource = string;
|
|
242
|
+
|
|
243
|
+
// @public
|
|
244
|
+
export interface EncryptionScopesPatchOptionalParams extends coreClient.OperationOptions {
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
// @public
|
|
248
|
+
export type EncryptionScopesPatchResponse = EncryptionScope;
|
|
249
|
+
|
|
250
|
+
// @public
|
|
251
|
+
export interface EncryptionScopesPutOptionalParams extends coreClient.OperationOptions {
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// @public
|
|
255
|
+
export type EncryptionScopesPutResponse = EncryptionScope;
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export type EncryptionScopeState = string;
|
|
259
|
+
|
|
260
|
+
// @public
|
|
261
|
+
export interface EncryptionService {
|
|
262
|
+
enabled?: boolean;
|
|
263
|
+
keyType?: KeyType;
|
|
264
|
+
readonly lastEnabledTime?: Date;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
// @public
|
|
268
|
+
export interface EncryptionServices {
|
|
269
|
+
blob?: EncryptionService;
|
|
270
|
+
file?: EncryptionService;
|
|
271
|
+
queue?: EncryptionService;
|
|
272
|
+
table?: EncryptionService;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
// @public
|
|
276
|
+
export interface Endpoints {
|
|
277
|
+
readonly blob?: string;
|
|
278
|
+
readonly dfs?: string;
|
|
279
|
+
readonly file?: string;
|
|
280
|
+
internetEndpoints?: StorageAccountInternetEndpoints;
|
|
281
|
+
microsoftEndpoints?: StorageAccountMicrosoftEndpoints;
|
|
282
|
+
readonly queue?: string;
|
|
283
|
+
readonly table?: string;
|
|
284
|
+
readonly web?: string;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export interface ErrorResponse {
|
|
289
|
+
error?: ErrorResponseBody;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// @public
|
|
293
|
+
export interface ErrorResponseBody {
|
|
294
|
+
code?: string;
|
|
295
|
+
message?: string;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// @public
|
|
299
|
+
export interface GeoReplicationStats {
|
|
300
|
+
readonly canFailover?: boolean;
|
|
301
|
+
readonly lastSyncTime?: Date;
|
|
302
|
+
readonly status?: GeoReplicationStatus;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export type GeoReplicationStatus = string;
|
|
307
|
+
|
|
308
|
+
// @public
|
|
309
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
310
|
+
|
|
311
|
+
// @public
|
|
312
|
+
export type HttpProtocol = "https,http" | "https";
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export interface Identity {
|
|
316
|
+
readonly principalId?: string;
|
|
317
|
+
readonly tenantId?: string;
|
|
318
|
+
type: "SystemAssigned";
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
// @public
|
|
322
|
+
export type InventoryRuleType = string;
|
|
323
|
+
|
|
324
|
+
// @public
|
|
325
|
+
export interface IPRule {
|
|
326
|
+
action?: "Allow";
|
|
327
|
+
iPAddressOrRange: string;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// @public
|
|
331
|
+
export type KeyPermission = "Read" | "Full";
|
|
332
|
+
|
|
333
|
+
// @public
|
|
334
|
+
export type KeySource = string;
|
|
335
|
+
|
|
336
|
+
// @public
|
|
337
|
+
export type KeyType = string;
|
|
338
|
+
|
|
339
|
+
// @public
|
|
340
|
+
export interface KeyVaultProperties {
|
|
341
|
+
readonly currentVersionedKeyIdentifier?: string;
|
|
342
|
+
keyName?: string;
|
|
343
|
+
keyVaultUri?: string;
|
|
344
|
+
keyVersion?: string;
|
|
345
|
+
readonly lastKeyRotationTimestamp?: Date;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
// @public
|
|
349
|
+
export type Kind = string;
|
|
350
|
+
|
|
351
|
+
// @public
|
|
352
|
+
export enum KnownBlobInventoryPolicyName {
|
|
353
|
+
Default = "default"
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// @public
|
|
357
|
+
export enum KnownBlobRestoreProgressStatus {
|
|
358
|
+
Complete = "Complete",
|
|
359
|
+
Failed = "Failed",
|
|
360
|
+
InProgress = "InProgress"
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// @public
|
|
364
|
+
export enum KnownBypass {
|
|
365
|
+
AzureServices = "AzureServices",
|
|
366
|
+
Logging = "Logging",
|
|
367
|
+
Metrics = "Metrics",
|
|
368
|
+
None = "None"
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
// @public
|
|
372
|
+
export enum KnownCreatedByType {
|
|
373
|
+
Application = "Application",
|
|
374
|
+
Key = "Key",
|
|
375
|
+
ManagedIdentity = "ManagedIdentity",
|
|
376
|
+
User = "User"
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
// @public
|
|
380
|
+
export enum KnownDirectoryServiceOptions {
|
|
381
|
+
Aadds = "AADDS",
|
|
382
|
+
AD = "AD",
|
|
383
|
+
None = "None"
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
// @public
|
|
387
|
+
export enum KnownEncryptionScopeSource {
|
|
388
|
+
MicrosoftKeyVault = "Microsoft.KeyVault",
|
|
389
|
+
MicrosoftStorage = "Microsoft.Storage"
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// @public
|
|
393
|
+
export enum KnownEncryptionScopeState {
|
|
394
|
+
Disabled = "Disabled",
|
|
395
|
+
Enabled = "Enabled"
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
// @public
|
|
399
|
+
export enum KnownGeoReplicationStatus {
|
|
400
|
+
Bootstrap = "Bootstrap",
|
|
401
|
+
Live = "Live",
|
|
402
|
+
Unavailable = "Unavailable"
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
// @public
|
|
406
|
+
export enum KnownInventoryRuleType {
|
|
407
|
+
Inventory = "Inventory"
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
// @public
|
|
411
|
+
export enum KnownKeySource {
|
|
412
|
+
MicrosoftKeyvault = "Microsoft.Keyvault",
|
|
413
|
+
MicrosoftStorage = "Microsoft.Storage"
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// @public
|
|
417
|
+
export enum KnownKeyType {
|
|
418
|
+
Account = "Account",
|
|
419
|
+
Service = "Service"
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
// @public
|
|
423
|
+
export enum KnownKind {
|
|
424
|
+
BlobStorage = "BlobStorage",
|
|
425
|
+
BlockBlobStorage = "BlockBlobStorage",
|
|
426
|
+
FileStorage = "FileStorage",
|
|
427
|
+
Storage = "Storage",
|
|
428
|
+
StorageV2 = "StorageV2"
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
// @public
|
|
432
|
+
export enum KnownLargeFileSharesState {
|
|
433
|
+
Disabled = "Disabled",
|
|
434
|
+
Enabled = "Enabled"
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
// @public
|
|
438
|
+
export enum KnownManagementPolicyName {
|
|
439
|
+
Default = "default"
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// @public
|
|
443
|
+
export enum KnownMinimumTlsVersion {
|
|
444
|
+
TLS10 = "TLS1_0",
|
|
445
|
+
TLS11 = "TLS1_1",
|
|
446
|
+
TLS12 = "TLS1_2"
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
// @public
|
|
450
|
+
export enum KnownPermissions {
|
|
451
|
+
// (undocumented)
|
|
452
|
+
A = "a",
|
|
453
|
+
// (undocumented)
|
|
454
|
+
C = "c",
|
|
455
|
+
// (undocumented)
|
|
456
|
+
D = "d",
|
|
457
|
+
// (undocumented)
|
|
458
|
+
L = "l",
|
|
459
|
+
// (undocumented)
|
|
460
|
+
P = "p",
|
|
461
|
+
// (undocumented)
|
|
462
|
+
R = "r",
|
|
463
|
+
// (undocumented)
|
|
464
|
+
U = "u",
|
|
465
|
+
// (undocumented)
|
|
466
|
+
W = "w"
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
// @public
|
|
470
|
+
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
471
|
+
Creating = "Creating",
|
|
472
|
+
Deleting = "Deleting",
|
|
473
|
+
Failed = "Failed",
|
|
474
|
+
Succeeded = "Succeeded"
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// @public
|
|
478
|
+
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
479
|
+
Approved = "Approved",
|
|
480
|
+
Pending = "Pending",
|
|
481
|
+
Rejected = "Rejected"
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
// @public
|
|
485
|
+
export enum KnownReasonCode {
|
|
486
|
+
NotAvailableForSubscription = "NotAvailableForSubscription",
|
|
487
|
+
QuotaId = "QuotaId"
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
// @public
|
|
491
|
+
export enum KnownRoutingChoice {
|
|
492
|
+
InternetRouting = "InternetRouting",
|
|
493
|
+
MicrosoftRouting = "MicrosoftRouting"
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// @public
|
|
497
|
+
export enum KnownRuleType {
|
|
498
|
+
Lifecycle = "Lifecycle"
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
// @public
|
|
502
|
+
export enum KnownServices {
|
|
503
|
+
// (undocumented)
|
|
504
|
+
B = "b",
|
|
505
|
+
// (undocumented)
|
|
506
|
+
F = "f",
|
|
507
|
+
// (undocumented)
|
|
508
|
+
Q = "q",
|
|
509
|
+
// (undocumented)
|
|
510
|
+
T = "t"
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
// @public
|
|
514
|
+
export enum KnownSignedResource {
|
|
515
|
+
// (undocumented)
|
|
516
|
+
B = "b",
|
|
517
|
+
// (undocumented)
|
|
518
|
+
C = "c",
|
|
519
|
+
// (undocumented)
|
|
520
|
+
F = "f",
|
|
521
|
+
// (undocumented)
|
|
522
|
+
S = "s"
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
// @public
|
|
526
|
+
export enum KnownSignedResourceTypes {
|
|
527
|
+
// (undocumented)
|
|
528
|
+
C = "c",
|
|
529
|
+
// (undocumented)
|
|
530
|
+
O = "o",
|
|
531
|
+
// (undocumented)
|
|
532
|
+
S = "s"
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
// @public
|
|
536
|
+
export enum KnownSkuName {
|
|
537
|
+
PremiumLRS = "Premium_LRS",
|
|
538
|
+
PremiumZRS = "Premium_ZRS",
|
|
539
|
+
StandardGRS = "Standard_GRS",
|
|
540
|
+
StandardGzrs = "Standard_GZRS",
|
|
541
|
+
StandardLRS = "Standard_LRS",
|
|
542
|
+
StandardRagrs = "Standard_RAGRS",
|
|
543
|
+
StandardRagzrs = "Standard_RAGZRS",
|
|
544
|
+
StandardZRS = "Standard_ZRS"
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
// @public
|
|
548
|
+
export type LargeFileSharesState = string;
|
|
549
|
+
|
|
550
|
+
// @public
|
|
551
|
+
export interface ListAccountSasResponse {
|
|
552
|
+
readonly accountSasToken?: string;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
// @public
|
|
556
|
+
export interface ListBlobInventoryPolicy {
|
|
557
|
+
readonly value?: BlobInventoryPolicy[];
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
// @public
|
|
561
|
+
export interface ListServiceSasResponse {
|
|
562
|
+
readonly serviceSasToken?: string;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
// @public
|
|
566
|
+
export interface ManagementPolicies {
|
|
567
|
+
createOrUpdate(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, properties: ManagementPolicy, options?: ManagementPoliciesCreateOrUpdateOptionalParams): Promise<ManagementPoliciesCreateOrUpdateResponse>;
|
|
568
|
+
delete(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesDeleteOptionalParams): Promise<void>;
|
|
569
|
+
get(resourceGroupName: string, accountName: string, managementPolicyName: ManagementPolicyName, options?: ManagementPoliciesGetOptionalParams): Promise<ManagementPoliciesGetResponse>;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
// @public
|
|
573
|
+
export interface ManagementPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
// @public
|
|
577
|
+
export type ManagementPoliciesCreateOrUpdateResponse = ManagementPolicy;
|
|
578
|
+
|
|
579
|
+
// @public
|
|
580
|
+
export interface ManagementPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
// @public
|
|
584
|
+
export interface ManagementPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
// @public
|
|
588
|
+
export type ManagementPoliciesGetResponse = ManagementPolicy;
|
|
589
|
+
|
|
590
|
+
// @public
|
|
591
|
+
export interface ManagementPolicy extends Resource {
|
|
592
|
+
readonly lastModifiedTime?: Date;
|
|
593
|
+
policy?: ManagementPolicySchema;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
// @public
|
|
597
|
+
export interface ManagementPolicyAction {
|
|
598
|
+
baseBlob?: ManagementPolicyBaseBlob;
|
|
599
|
+
snapshot?: ManagementPolicySnapShot;
|
|
600
|
+
version?: ManagementPolicyVersion;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
// @public
|
|
604
|
+
export interface ManagementPolicyBaseBlob {
|
|
605
|
+
delete?: DateAfterModification;
|
|
606
|
+
enableAutoTierToHotFromCool?: boolean;
|
|
607
|
+
tierToArchive?: DateAfterModification;
|
|
608
|
+
tierToCool?: DateAfterModification;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
// @public
|
|
612
|
+
export interface ManagementPolicyDefinition {
|
|
613
|
+
actions: ManagementPolicyAction;
|
|
614
|
+
filters?: ManagementPolicyFilter;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
// @public
|
|
618
|
+
export interface ManagementPolicyFilter {
|
|
619
|
+
blobIndexMatch?: TagFilter[];
|
|
620
|
+
blobTypes: string[];
|
|
621
|
+
prefixMatch?: string[];
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
// @public
|
|
625
|
+
export type ManagementPolicyName = string;
|
|
626
|
+
|
|
627
|
+
// @public
|
|
628
|
+
export interface ManagementPolicyRule {
|
|
629
|
+
definition: ManagementPolicyDefinition;
|
|
630
|
+
enabled?: boolean;
|
|
631
|
+
name: string;
|
|
632
|
+
type: RuleType;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
// @public
|
|
636
|
+
export interface ManagementPolicySchema {
|
|
637
|
+
rules: ManagementPolicyRule[];
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
// @public
|
|
641
|
+
export interface ManagementPolicySnapShot {
|
|
642
|
+
delete?: DateAfterCreation;
|
|
643
|
+
tierToArchive?: DateAfterCreation;
|
|
644
|
+
tierToCool?: DateAfterCreation;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
// @public
|
|
648
|
+
export interface ManagementPolicyVersion {
|
|
649
|
+
delete?: DateAfterCreation;
|
|
650
|
+
tierToArchive?: DateAfterCreation;
|
|
651
|
+
tierToCool?: DateAfterCreation;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
// @public
|
|
655
|
+
export interface MetricSpecification {
|
|
656
|
+
aggregationType?: string;
|
|
657
|
+
category?: string;
|
|
658
|
+
dimensions?: Dimension[];
|
|
659
|
+
displayDescription?: string;
|
|
660
|
+
displayName?: string;
|
|
661
|
+
fillGapWithZero?: boolean;
|
|
662
|
+
name?: string;
|
|
663
|
+
resourceIdDimensionNameOverride?: string;
|
|
664
|
+
unit?: string;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
// @public
|
|
668
|
+
export type MinimumTlsVersion = string;
|
|
669
|
+
|
|
670
|
+
// @public
|
|
671
|
+
export interface NetworkRuleSet {
|
|
672
|
+
bypass?: Bypass;
|
|
673
|
+
defaultAction: DefaultAction;
|
|
674
|
+
ipRules?: IPRule[];
|
|
675
|
+
virtualNetworkRules?: VirtualNetworkRule[];
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
// @public
|
|
679
|
+
export interface ObjectReplicationPolicies {
|
|
680
|
+
value?: ObjectReplicationPolicy[];
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
// @public
|
|
684
|
+
export interface ObjectReplicationPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
// @public
|
|
688
|
+
export type ObjectReplicationPoliciesCreateOrUpdateResponse = ObjectReplicationPolicy;
|
|
689
|
+
|
|
690
|
+
// @public
|
|
691
|
+
export interface ObjectReplicationPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
// @public
|
|
695
|
+
export interface ObjectReplicationPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
// @public
|
|
699
|
+
export type ObjectReplicationPoliciesGetResponse = ObjectReplicationPolicy;
|
|
700
|
+
|
|
701
|
+
// @public
|
|
702
|
+
export interface ObjectReplicationPoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
// @public
|
|
706
|
+
export type ObjectReplicationPoliciesListResponse = ObjectReplicationPolicies;
|
|
707
|
+
|
|
708
|
+
// @public
|
|
709
|
+
export interface ObjectReplicationPoliciesOperations {
|
|
710
|
+
createOrUpdate(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, properties: ObjectReplicationPolicy, options?: ObjectReplicationPoliciesCreateOrUpdateOptionalParams): Promise<ObjectReplicationPoliciesCreateOrUpdateResponse>;
|
|
711
|
+
delete(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesDeleteOptionalParams): Promise<void>;
|
|
712
|
+
get(resourceGroupName: string, accountName: string, objectReplicationPolicyId: string, options?: ObjectReplicationPoliciesGetOptionalParams): Promise<ObjectReplicationPoliciesGetResponse>;
|
|
713
|
+
list(resourceGroupName: string, accountName: string, options?: ObjectReplicationPoliciesListOptionalParams): PagedAsyncIterableIterator<ObjectReplicationPolicy>;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
// @public
|
|
717
|
+
export interface ObjectReplicationPolicy extends Resource {
|
|
718
|
+
destinationAccount?: string;
|
|
719
|
+
readonly enabledTime?: Date;
|
|
720
|
+
readonly policyId?: string;
|
|
721
|
+
rules?: ObjectReplicationPolicyRule[];
|
|
722
|
+
sourceAccount?: string;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// @public
|
|
726
|
+
export interface ObjectReplicationPolicyFilter {
|
|
727
|
+
minCreationTime?: string;
|
|
728
|
+
prefixMatch?: string[];
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
// @public
|
|
732
|
+
export interface ObjectReplicationPolicyRule {
|
|
733
|
+
destinationContainer: string;
|
|
734
|
+
filters?: ObjectReplicationPolicyFilter;
|
|
735
|
+
ruleId?: string;
|
|
736
|
+
sourceContainer: string;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
// @public
|
|
740
|
+
export interface Operation {
|
|
741
|
+
display?: OperationDisplay;
|
|
742
|
+
name?: string;
|
|
743
|
+
origin?: string;
|
|
744
|
+
serviceSpecification?: ServiceSpecification;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
// @public
|
|
748
|
+
export interface OperationDisplay {
|
|
749
|
+
description?: string;
|
|
750
|
+
operation?: string;
|
|
751
|
+
provider?: string;
|
|
752
|
+
resource?: string;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
// @public
|
|
756
|
+
export interface OperationListResult {
|
|
757
|
+
value?: Operation[];
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
// @public
|
|
761
|
+
export interface Operations {
|
|
762
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
// @public
|
|
766
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
// @public
|
|
770
|
+
export type OperationsListResponse = OperationListResult;
|
|
771
|
+
|
|
772
|
+
// @public
|
|
773
|
+
export type Permissions = string;
|
|
774
|
+
|
|
775
|
+
// @public
|
|
776
|
+
export interface PrivateEndpoint {
|
|
777
|
+
readonly id?: string;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
// @public
|
|
781
|
+
export interface PrivateEndpointConnection extends Resource {
|
|
782
|
+
privateEndpoint?: PrivateEndpoint;
|
|
783
|
+
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
784
|
+
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
// @public
|
|
788
|
+
export interface PrivateEndpointConnectionListResult {
|
|
789
|
+
value?: PrivateEndpointConnection[];
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
// @public
|
|
793
|
+
export type PrivateEndpointConnectionProvisioningState = string;
|
|
794
|
+
|
|
795
|
+
// @public
|
|
796
|
+
export interface PrivateEndpointConnections {
|
|
797
|
+
delete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
798
|
+
get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
799
|
+
list(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
800
|
+
put(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsPutOptionalParams): Promise<PrivateEndpointConnectionsPutResponse>;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
// @public
|
|
804
|
+
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
// @public
|
|
808
|
+
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
// @public
|
|
812
|
+
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
813
|
+
|
|
814
|
+
// @public
|
|
815
|
+
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
// @public
|
|
819
|
+
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
820
|
+
|
|
821
|
+
// @public
|
|
822
|
+
export interface PrivateEndpointConnectionsPutOptionalParams extends coreClient.OperationOptions {
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
// @public
|
|
826
|
+
export type PrivateEndpointConnectionsPutResponse = PrivateEndpointConnection;
|
|
827
|
+
|
|
828
|
+
// @public
|
|
829
|
+
export type PrivateEndpointServiceConnectionStatus = string;
|
|
830
|
+
|
|
831
|
+
// @public
|
|
832
|
+
export interface PrivateLinkResource extends Resource {
|
|
833
|
+
readonly groupId?: string;
|
|
834
|
+
readonly requiredMembers?: string[];
|
|
835
|
+
requiredZoneNames?: string[];
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
// @public
|
|
839
|
+
export interface PrivateLinkResourceListResult {
|
|
840
|
+
value?: PrivateLinkResource[];
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
// @public
|
|
844
|
+
export interface PrivateLinkResources {
|
|
845
|
+
listByStorageAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListByStorageAccountOptionalParams): Promise<PrivateLinkResourcesListByStorageAccountResponse>;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
// @public
|
|
849
|
+
export interface PrivateLinkResourcesListByStorageAccountOptionalParams extends coreClient.OperationOptions {
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// @public
|
|
853
|
+
export type PrivateLinkResourcesListByStorageAccountResponse = PrivateLinkResourceListResult;
|
|
854
|
+
|
|
855
|
+
// @public
|
|
856
|
+
export interface PrivateLinkServiceConnectionState {
|
|
857
|
+
actionRequired?: string;
|
|
858
|
+
description?: string;
|
|
859
|
+
status?: PrivateEndpointServiceConnectionStatus;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
// @public
|
|
863
|
+
export type ProvisioningState = "Creating" | "ResolvingDNS" | "Succeeded";
|
|
864
|
+
|
|
865
|
+
// @public
|
|
866
|
+
export type Reason = "AccountNameInvalid" | "AlreadyExists";
|
|
867
|
+
|
|
868
|
+
// @public
|
|
869
|
+
export type ReasonCode = string;
|
|
870
|
+
|
|
871
|
+
// @public
|
|
872
|
+
export interface Resource {
|
|
873
|
+
readonly id?: string;
|
|
874
|
+
readonly name?: string;
|
|
875
|
+
readonly type?: string;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
// @public
|
|
879
|
+
export interface Restriction {
|
|
880
|
+
reasonCode?: ReasonCode;
|
|
881
|
+
readonly type?: string;
|
|
882
|
+
readonly values?: string[];
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
// @public
|
|
886
|
+
export type RoutingChoice = string;
|
|
887
|
+
|
|
888
|
+
// @public
|
|
889
|
+
export interface RoutingPreference {
|
|
890
|
+
publishInternetEndpoints?: boolean;
|
|
891
|
+
publishMicrosoftEndpoints?: boolean;
|
|
892
|
+
routingChoice?: RoutingChoice;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
// @public
|
|
896
|
+
export type RuleType = string;
|
|
897
|
+
|
|
898
|
+
// @public
|
|
899
|
+
export type Services = string;
|
|
900
|
+
|
|
901
|
+
// @public
|
|
902
|
+
export interface ServiceSasParameters {
|
|
903
|
+
cacheControl?: string;
|
|
904
|
+
canonicalizedResource: string;
|
|
905
|
+
contentDisposition?: string;
|
|
906
|
+
contentEncoding?: string;
|
|
907
|
+
contentLanguage?: string;
|
|
908
|
+
contentType?: string;
|
|
909
|
+
identifier?: string;
|
|
910
|
+
iPAddressOrRange?: string;
|
|
911
|
+
keyToSign?: string;
|
|
912
|
+
partitionKeyEnd?: string;
|
|
913
|
+
partitionKeyStart?: string;
|
|
914
|
+
permissions?: Permissions;
|
|
915
|
+
protocols?: HttpProtocol;
|
|
916
|
+
resource?: SignedResource;
|
|
917
|
+
rowKeyEnd?: string;
|
|
918
|
+
rowKeyStart?: string;
|
|
919
|
+
sharedAccessExpiryTime?: Date;
|
|
920
|
+
sharedAccessStartTime?: Date;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
// @public
|
|
924
|
+
export interface ServiceSpecification {
|
|
925
|
+
metricSpecifications?: MetricSpecification[];
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
// @public
|
|
929
|
+
export type SignedResource = string;
|
|
930
|
+
|
|
931
|
+
// @public
|
|
932
|
+
export type SignedResourceTypes = string;
|
|
933
|
+
|
|
934
|
+
// @public
|
|
935
|
+
export interface Sku {
|
|
936
|
+
name: SkuName;
|
|
937
|
+
readonly tier?: SkuTier;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
// @public
|
|
941
|
+
export interface SKUCapability {
|
|
942
|
+
readonly name?: string;
|
|
943
|
+
readonly value?: string;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
// @public
|
|
947
|
+
export interface SkuInformation {
|
|
948
|
+
readonly capabilities?: SKUCapability[];
|
|
949
|
+
readonly kind?: Kind;
|
|
950
|
+
readonly locations?: string[];
|
|
951
|
+
name: SkuName;
|
|
952
|
+
readonly resourceType?: string;
|
|
953
|
+
restrictions?: Restriction[];
|
|
954
|
+
readonly tier?: SkuTier;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
// @public
|
|
958
|
+
export type SkuName = string;
|
|
959
|
+
|
|
960
|
+
// @public
|
|
961
|
+
export interface Skus {
|
|
962
|
+
list(options?: SkusListOptionalParams): PagedAsyncIterableIterator<SkuInformation>;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
// @public
|
|
966
|
+
export interface SkusListOptionalParams extends coreClient.OperationOptions {
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
// @public
|
|
970
|
+
export type SkusListResponse = StorageSkuListResult;
|
|
971
|
+
|
|
972
|
+
// @public
|
|
973
|
+
export type SkuTier = "Standard" | "Premium";
|
|
974
|
+
|
|
975
|
+
// @public
|
|
976
|
+
export type State = "provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted";
|
|
977
|
+
|
|
978
|
+
// @public
|
|
979
|
+
export interface StorageAccount extends TrackedResource {
|
|
980
|
+
readonly accessTier?: AccessTier;
|
|
981
|
+
allowBlobPublicAccess?: boolean;
|
|
982
|
+
allowSharedKeyAccess?: boolean;
|
|
983
|
+
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
984
|
+
readonly blobRestoreStatus?: BlobRestoreStatus;
|
|
985
|
+
readonly creationTime?: Date;
|
|
986
|
+
readonly customDomain?: CustomDomain;
|
|
987
|
+
enableHttpsTrafficOnly?: boolean;
|
|
988
|
+
readonly encryption?: Encryption;
|
|
989
|
+
readonly failoverInProgress?: boolean;
|
|
990
|
+
readonly geoReplicationStats?: GeoReplicationStats;
|
|
991
|
+
identity?: Identity;
|
|
992
|
+
isHnsEnabled?: boolean;
|
|
993
|
+
readonly kind?: Kind;
|
|
994
|
+
largeFileSharesState?: LargeFileSharesState;
|
|
995
|
+
readonly lastGeoFailoverTime?: Date;
|
|
996
|
+
minimumTlsVersion?: MinimumTlsVersion;
|
|
997
|
+
readonly networkRuleSet?: NetworkRuleSet;
|
|
998
|
+
readonly primaryEndpoints?: Endpoints;
|
|
999
|
+
readonly primaryLocation?: string;
|
|
1000
|
+
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
1001
|
+
readonly provisioningState?: ProvisioningState;
|
|
1002
|
+
routingPreference?: RoutingPreference;
|
|
1003
|
+
readonly secondaryEndpoints?: Endpoints;
|
|
1004
|
+
readonly secondaryLocation?: string;
|
|
1005
|
+
readonly sku?: Sku;
|
|
1006
|
+
readonly statusOfPrimary?: AccountStatus;
|
|
1007
|
+
readonly statusOfSecondary?: AccountStatus;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
// @public
|
|
1011
|
+
export interface StorageAccountCheckNameAvailabilityParameters {
|
|
1012
|
+
name: string;
|
|
1013
|
+
type: "Microsoft.Storage/storageAccounts";
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
// @public
|
|
1017
|
+
export interface StorageAccountCreateParameters {
|
|
1018
|
+
accessTier?: AccessTier;
|
|
1019
|
+
allowBlobPublicAccess?: boolean;
|
|
1020
|
+
allowSharedKeyAccess?: boolean;
|
|
1021
|
+
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
1022
|
+
customDomain?: CustomDomain;
|
|
1023
|
+
enableHttpsTrafficOnly?: boolean;
|
|
1024
|
+
encryption?: Encryption;
|
|
1025
|
+
identity?: Identity;
|
|
1026
|
+
isHnsEnabled?: boolean;
|
|
1027
|
+
kind: Kind;
|
|
1028
|
+
largeFileSharesState?: LargeFileSharesState;
|
|
1029
|
+
location: string;
|
|
1030
|
+
minimumTlsVersion?: MinimumTlsVersion;
|
|
1031
|
+
networkRuleSet?: NetworkRuleSet;
|
|
1032
|
+
routingPreference?: RoutingPreference;
|
|
1033
|
+
sku: Sku;
|
|
1034
|
+
tags?: {
|
|
1035
|
+
[propertyName: string]: string;
|
|
1036
|
+
};
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
// @public
|
|
1040
|
+
export type StorageAccountExpand = "geoReplicationStats" | "blobRestoreStatus";
|
|
1041
|
+
|
|
1042
|
+
// @public
|
|
1043
|
+
export interface StorageAccountInternetEndpoints {
|
|
1044
|
+
readonly blob?: string;
|
|
1045
|
+
readonly dfs?: string;
|
|
1046
|
+
readonly file?: string;
|
|
1047
|
+
readonly web?: string;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
// @public
|
|
1051
|
+
export interface StorageAccountKey {
|
|
1052
|
+
readonly keyName?: string;
|
|
1053
|
+
readonly permissions?: KeyPermission;
|
|
1054
|
+
readonly value?: string;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
// @public
|
|
1058
|
+
export interface StorageAccountListKeysResult {
|
|
1059
|
+
readonly keys?: StorageAccountKey[];
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
// @public
|
|
1063
|
+
export interface StorageAccountListResult {
|
|
1064
|
+
readonly nextLink?: string;
|
|
1065
|
+
readonly value?: StorageAccount[];
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
// @public
|
|
1069
|
+
export interface StorageAccountMicrosoftEndpoints {
|
|
1070
|
+
readonly blob?: string;
|
|
1071
|
+
readonly dfs?: string;
|
|
1072
|
+
readonly file?: string;
|
|
1073
|
+
readonly queue?: string;
|
|
1074
|
+
readonly table?: string;
|
|
1075
|
+
readonly web?: string;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
// @public
|
|
1079
|
+
export interface StorageAccountRegenerateKeyParameters {
|
|
1080
|
+
keyName: string;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
// @public
|
|
1084
|
+
export interface StorageAccounts {
|
|
1085
|
+
beginCreate(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountsCreateResponse>, StorageAccountsCreateResponse>>;
|
|
1086
|
+
beginCreateAndWait(resourceGroupName: string, accountName: string, parameters: StorageAccountCreateParameters, options?: StorageAccountsCreateOptionalParams): Promise<StorageAccountsCreateResponse>;
|
|
1087
|
+
beginFailover(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1088
|
+
beginFailoverAndWait(resourceGroupName: string, accountName: string, options?: StorageAccountsFailoverOptionalParams): Promise<void>;
|
|
1089
|
+
beginRestoreBlobRanges(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountsRestoreBlobRangesResponse>, StorageAccountsRestoreBlobRangesResponse>>;
|
|
1090
|
+
beginRestoreBlobRangesAndWait(resourceGroupName: string, accountName: string, parameters: BlobRestoreParameters, options?: StorageAccountsRestoreBlobRangesOptionalParams): Promise<StorageAccountsRestoreBlobRangesResponse>;
|
|
1091
|
+
checkNameAvailability(accountName: StorageAccountCheckNameAvailabilityParameters, options?: StorageAccountsCheckNameAvailabilityOptionalParams): Promise<StorageAccountsCheckNameAvailabilityResponse>;
|
|
1092
|
+
delete(resourceGroupName: string, accountName: string, options?: StorageAccountsDeleteOptionalParams): Promise<void>;
|
|
1093
|
+
getProperties(resourceGroupName: string, accountName: string, options?: StorageAccountsGetPropertiesOptionalParams): Promise<StorageAccountsGetPropertiesResponse>;
|
|
1094
|
+
list(options?: StorageAccountsListOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
1095
|
+
listAccountSAS(resourceGroupName: string, accountName: string, parameters: AccountSasParameters, options?: StorageAccountsListAccountSASOptionalParams): Promise<StorageAccountsListAccountSASResponse>;
|
|
1096
|
+
listByResourceGroup(resourceGroupName: string, options?: StorageAccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<StorageAccount>;
|
|
1097
|
+
listKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsListKeysOptionalParams): Promise<StorageAccountsListKeysResponse>;
|
|
1098
|
+
listServiceSAS(resourceGroupName: string, accountName: string, parameters: ServiceSasParameters, options?: StorageAccountsListServiceSASOptionalParams): Promise<StorageAccountsListServiceSASResponse>;
|
|
1099
|
+
regenerateKey(resourceGroupName: string, accountName: string, regenerateKey: StorageAccountRegenerateKeyParameters, options?: StorageAccountsRegenerateKeyOptionalParams): Promise<StorageAccountsRegenerateKeyResponse>;
|
|
1100
|
+
revokeUserDelegationKeys(resourceGroupName: string, accountName: string, options?: StorageAccountsRevokeUserDelegationKeysOptionalParams): Promise<void>;
|
|
1101
|
+
update(resourceGroupName: string, accountName: string, parameters: StorageAccountUpdateParameters, options?: StorageAccountsUpdateOptionalParams): Promise<StorageAccountsUpdateResponse>;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
// @public
|
|
1105
|
+
export interface StorageAccountsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
// @public
|
|
1109
|
+
export type StorageAccountsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
|
|
1110
|
+
|
|
1111
|
+
// @public
|
|
1112
|
+
export interface StorageAccountsCreateOptionalParams extends coreClient.OperationOptions {
|
|
1113
|
+
resumeFrom?: string;
|
|
1114
|
+
updateIntervalInMs?: number;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
// @public
|
|
1118
|
+
export type StorageAccountsCreateResponse = StorageAccount;
|
|
1119
|
+
|
|
1120
|
+
// @public
|
|
1121
|
+
export interface StorageAccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// @public
|
|
1125
|
+
export interface StorageAccountsFailoverOptionalParams extends coreClient.OperationOptions {
|
|
1126
|
+
resumeFrom?: string;
|
|
1127
|
+
updateIntervalInMs?: number;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
// @public
|
|
1131
|
+
export interface StorageAccountsGetPropertiesOptionalParams extends coreClient.OperationOptions {
|
|
1132
|
+
expand?: StorageAccountExpand;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
// @public
|
|
1136
|
+
export type StorageAccountsGetPropertiesResponse = StorageAccount;
|
|
1137
|
+
|
|
1138
|
+
// @public
|
|
1139
|
+
export interface StorageAccountsListAccountSASOptionalParams extends coreClient.OperationOptions {
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
// @public
|
|
1143
|
+
export type StorageAccountsListAccountSASResponse = ListAccountSasResponse;
|
|
1144
|
+
|
|
1145
|
+
// @public
|
|
1146
|
+
export interface StorageAccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
// @public
|
|
1150
|
+
export type StorageAccountsListByResourceGroupResponse = StorageAccountListResult;
|
|
1151
|
+
|
|
1152
|
+
// @public
|
|
1153
|
+
export interface StorageAccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
// @public
|
|
1157
|
+
export type StorageAccountsListKeysResponse = StorageAccountListKeysResult;
|
|
1158
|
+
|
|
1159
|
+
// @public
|
|
1160
|
+
export interface StorageAccountsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
// @public
|
|
1164
|
+
export type StorageAccountsListNextResponse = StorageAccountListResult;
|
|
1165
|
+
|
|
1166
|
+
// @public
|
|
1167
|
+
export interface StorageAccountsListOptionalParams extends coreClient.OperationOptions {
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
// @public
|
|
1171
|
+
export type StorageAccountsListResponse = StorageAccountListResult;
|
|
1172
|
+
|
|
1173
|
+
// @public
|
|
1174
|
+
export interface StorageAccountsListServiceSASOptionalParams extends coreClient.OperationOptions {
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
// @public
|
|
1178
|
+
export type StorageAccountsListServiceSASResponse = ListServiceSasResponse;
|
|
1179
|
+
|
|
1180
|
+
// @public
|
|
1181
|
+
export interface StorageAccountsRegenerateKeyOptionalParams extends coreClient.OperationOptions {
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
// @public
|
|
1185
|
+
export type StorageAccountsRegenerateKeyResponse = StorageAccountListKeysResult;
|
|
1186
|
+
|
|
1187
|
+
// @public
|
|
1188
|
+
export interface StorageAccountsRestoreBlobRangesOptionalParams extends coreClient.OperationOptions {
|
|
1189
|
+
resumeFrom?: string;
|
|
1190
|
+
updateIntervalInMs?: number;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
// @public
|
|
1194
|
+
export type StorageAccountsRestoreBlobRangesResponse = BlobRestoreStatus;
|
|
1195
|
+
|
|
1196
|
+
// @public
|
|
1197
|
+
export interface StorageAccountsRevokeUserDelegationKeysOptionalParams extends coreClient.OperationOptions {
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
// @public
|
|
1201
|
+
export interface StorageAccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
// @public
|
|
1205
|
+
export type StorageAccountsUpdateResponse = StorageAccount;
|
|
1206
|
+
|
|
1207
|
+
// @public
|
|
1208
|
+
export interface StorageAccountUpdateParameters {
|
|
1209
|
+
accessTier?: AccessTier;
|
|
1210
|
+
allowBlobPublicAccess?: boolean;
|
|
1211
|
+
allowSharedKeyAccess?: boolean;
|
|
1212
|
+
azureFilesIdentityBasedAuthentication?: AzureFilesIdentityBasedAuthentication;
|
|
1213
|
+
customDomain?: CustomDomain;
|
|
1214
|
+
enableHttpsTrafficOnly?: boolean;
|
|
1215
|
+
encryption?: Encryption;
|
|
1216
|
+
identity?: Identity;
|
|
1217
|
+
kind?: Kind;
|
|
1218
|
+
largeFileSharesState?: LargeFileSharesState;
|
|
1219
|
+
minimumTlsVersion?: MinimumTlsVersion;
|
|
1220
|
+
networkRuleSet?: NetworkRuleSet;
|
|
1221
|
+
routingPreference?: RoutingPreference;
|
|
1222
|
+
sku?: Sku;
|
|
1223
|
+
tags?: {
|
|
1224
|
+
[propertyName: string]: string;
|
|
1225
|
+
};
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
// @public (undocumented)
|
|
1229
|
+
export class StorageManagementClient extends coreClient.ServiceClient {
|
|
1230
|
+
// (undocumented)
|
|
1231
|
+
$host: string;
|
|
1232
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageManagementClientOptionalParams);
|
|
1233
|
+
// (undocumented)
|
|
1234
|
+
apiVersion: string;
|
|
1235
|
+
// (undocumented)
|
|
1236
|
+
blobInventoryPolicies: BlobInventoryPolicies;
|
|
1237
|
+
// (undocumented)
|
|
1238
|
+
encryptionScopes: EncryptionScopes;
|
|
1239
|
+
// (undocumented)
|
|
1240
|
+
managementPolicies: ManagementPolicies;
|
|
1241
|
+
// (undocumented)
|
|
1242
|
+
objectReplicationPoliciesOperations: ObjectReplicationPoliciesOperations;
|
|
1243
|
+
// (undocumented)
|
|
1244
|
+
operations: Operations;
|
|
1245
|
+
// (undocumented)
|
|
1246
|
+
privateEndpointConnections: PrivateEndpointConnections;
|
|
1247
|
+
// (undocumented)
|
|
1248
|
+
privateLinkResources: PrivateLinkResources;
|
|
1249
|
+
// (undocumented)
|
|
1250
|
+
skus: Skus;
|
|
1251
|
+
// (undocumented)
|
|
1252
|
+
storageAccounts: StorageAccounts;
|
|
1253
|
+
// (undocumented)
|
|
1254
|
+
subscriptionId: string;
|
|
1255
|
+
// (undocumented)
|
|
1256
|
+
usages: Usages;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
// @public
|
|
1260
|
+
export interface StorageManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
1261
|
+
$host?: string;
|
|
1262
|
+
apiVersion?: string;
|
|
1263
|
+
endpoint?: string;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
// @public
|
|
1267
|
+
export interface StorageSkuListResult {
|
|
1268
|
+
readonly value?: SkuInformation[];
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
// @public
|
|
1272
|
+
export interface SystemData {
|
|
1273
|
+
createdAt?: Date;
|
|
1274
|
+
createdBy?: string;
|
|
1275
|
+
createdByType?: CreatedByType;
|
|
1276
|
+
lastModifiedAt?: Date;
|
|
1277
|
+
lastModifiedBy?: string;
|
|
1278
|
+
lastModifiedByType?: CreatedByType;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
// @public
|
|
1282
|
+
export interface TagFilter {
|
|
1283
|
+
name: string;
|
|
1284
|
+
op: string;
|
|
1285
|
+
value: string;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
// @public
|
|
1289
|
+
export interface TrackedResource extends Resource {
|
|
1290
|
+
location: string;
|
|
1291
|
+
tags?: {
|
|
1292
|
+
[propertyName: string]: string;
|
|
1293
|
+
};
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
// @public
|
|
1297
|
+
export interface Usage {
|
|
1298
|
+
readonly currentValue?: number;
|
|
1299
|
+
readonly limit?: number;
|
|
1300
|
+
readonly name?: UsageName;
|
|
1301
|
+
readonly unit?: UsageUnit;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
// @public
|
|
1305
|
+
export interface UsageListResult {
|
|
1306
|
+
value?: Usage[];
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
// @public
|
|
1310
|
+
export interface UsageName {
|
|
1311
|
+
readonly localizedValue?: string;
|
|
1312
|
+
readonly value?: string;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
// @public
|
|
1316
|
+
export interface Usages {
|
|
1317
|
+
listByLocation(location: string, options?: UsagesListByLocationOptionalParams): PagedAsyncIterableIterator<Usage>;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
// @public
|
|
1321
|
+
export interface UsagesListByLocationOptionalParams extends coreClient.OperationOptions {
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
// @public
|
|
1325
|
+
export type UsagesListByLocationResponse = UsageListResult;
|
|
1326
|
+
|
|
1327
|
+
// @public
|
|
1328
|
+
export type UsageUnit = "Count" | "Bytes" | "Seconds" | "Percent" | "CountsPerSecond" | "BytesPerSecond";
|
|
1329
|
+
|
|
1330
|
+
// @public
|
|
1331
|
+
export interface VirtualNetworkRule {
|
|
1332
|
+
action?: "Allow";
|
|
1333
|
+
state?: State;
|
|
1334
|
+
virtualNetworkResourceId: string;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
// (No @packageDocumentation comment for this package)
|
|
1338
|
+
|
|
1339
|
+
```
|