@azure/arm-purestorageblock 1.0.0-alpha.20250703.3 → 1.0.0-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.
- package/package.json +1 -1
- package/review/{arm-purestorageblock-api-avsStorageContainerVolumes.api.md → arm-purestorageblock-api-avsStorageContainerVolumes-node.api.md} +44 -44
- package/review/{arm-purestorageblock-api-avsStorageContainers.api.md → arm-purestorageblock-api-avsStorageContainers-node.api.md} +36 -36
- package/review/{arm-purestorageblock-api-avsVmVolumes.api.md → arm-purestorageblock-api-avsVmVolumes-node.api.md} +44 -44
- package/review/{arm-purestorageblock-api-avsVms.api.md → arm-purestorageblock-api-avsVms-node.api.md} +44 -44
- package/review/{arm-purestorageblock-api.api.md → arm-purestorageblock-api-node.api.md} +27 -27
- package/review/{arm-purestorageblock-api-operations.api.md → arm-purestorageblock-api-operations-node.api.md} +19 -19
- package/review/{arm-purestorageblock-api-reservations.api.md → arm-purestorageblock-api-reservations-node.api.md} +80 -80
- package/review/{arm-purestorageblock-api-storagePools.api.md → arm-purestorageblock-api-storagePools-node.api.md} +112 -112
- package/review/{arm-purestorageblock-models.api.md → arm-purestorageblock-models-node.api.md} +590 -590
- package/review/{arm-purestorageblock.api.md → arm-purestorageblock-node.api.md} +879 -879
package/review/{arm-purestorageblock-models.api.md → arm-purestorageblock-models-node.api.md}
RENAMED
|
@@ -1,590 +1,590 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-purestorageblock"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
// @public
|
|
8
|
-
export type ActionType = string;
|
|
9
|
-
|
|
10
|
-
// @public
|
|
11
|
-
export interface Address {
|
|
12
|
-
addressLine1: string;
|
|
13
|
-
addressLine2?: string;
|
|
14
|
-
city: string;
|
|
15
|
-
country: string;
|
|
16
|
-
postalCode: string;
|
|
17
|
-
state: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// @public
|
|
21
|
-
export interface Alert {
|
|
22
|
-
level: AlertLevel;
|
|
23
|
-
message: string;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// @public
|
|
27
|
-
export type AlertLevel = string;
|
|
28
|
-
|
|
29
|
-
// @public
|
|
30
|
-
export interface AvsConnection {
|
|
31
|
-
serviceInitializationCompleted: boolean;
|
|
32
|
-
serviceInitializationHandle?: ServiceInitializationHandle;
|
|
33
|
-
serviceInitializationHandleEnc?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// @public
|
|
37
|
-
export interface AvsDiskDetails {
|
|
38
|
-
avsStorageContainerResourceId: string;
|
|
39
|
-
avsVmInternalId: string;
|
|
40
|
-
avsVmName: string;
|
|
41
|
-
avsVmResourceId: string;
|
|
42
|
-
diskId: string;
|
|
43
|
-
diskName: string;
|
|
44
|
-
folder: string;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// @public
|
|
48
|
-
export interface AvsStatus {
|
|
49
|
-
avsEnabled: boolean;
|
|
50
|
-
clusterResourceId?: string;
|
|
51
|
-
currentConnectionStatus: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// @public
|
|
55
|
-
export interface AvsStorageContainer extends ProxyResource {
|
|
56
|
-
properties?: AvsStorageContainerProperties;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export interface AvsStorageContainerProperties {
|
|
61
|
-
readonly datastore?: string;
|
|
62
|
-
readonly mounted?: boolean;
|
|
63
|
-
provisionedLimit?: number;
|
|
64
|
-
readonly resourceName: string;
|
|
65
|
-
readonly space?: Space;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// @public
|
|
69
|
-
export interface AvsStorageContainerVolume extends ProxyResource {
|
|
70
|
-
properties?: VolumeProperties;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface AvsStorageContainerVolumeUpdate {
|
|
75
|
-
properties?: AvsStorageContainerVolumeUpdateProperties;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
// @public
|
|
79
|
-
export interface AvsStorageContainerVolumeUpdateProperties {
|
|
80
|
-
softDeletion?: SoftDeletion;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// @public
|
|
84
|
-
export interface AvsVm extends ProxyResource {
|
|
85
|
-
properties?: AvsVmProperties;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// @public
|
|
89
|
-
export interface AvsVmDetails {
|
|
90
|
-
avsVmInternalId: string;
|
|
91
|
-
vmId: string;
|
|
92
|
-
vmName: string;
|
|
93
|
-
vmType: VmType;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// @public
|
|
97
|
-
export interface AvsVmProperties {
|
|
98
|
-
readonly avs?: AvsVmDetails;
|
|
99
|
-
readonly createdTimestamp?: string;
|
|
100
|
-
readonly displayName?: string;
|
|
101
|
-
readonly provisioningState?: ResourceProvisioningState;
|
|
102
|
-
softDeletion?: SoftDeletion;
|
|
103
|
-
readonly space?: Space;
|
|
104
|
-
readonly storagePoolInternalId?: string;
|
|
105
|
-
readonly storagePoolResourceId?: string;
|
|
106
|
-
readonly volumeContainerType?: VolumeContainerType;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface AvsVmUpdate {
|
|
111
|
-
properties?: AvsVmUpdateProperties;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface AvsVmUpdateProperties {
|
|
116
|
-
softDeletion?: SoftDeletion;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// @public
|
|
120
|
-
export interface AvsVmVolume extends ProxyResource {
|
|
121
|
-
properties?: VolumeProperties;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
export interface AvsVmVolumeUpdate {
|
|
126
|
-
properties?: AvsVmVolumeUpdateProperties;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export interface AvsVmVolumeUpdateProperties {
|
|
131
|
-
softDeletion?: SoftDeletion;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
// @public
|
|
135
|
-
export interface AzureVmwareService {
|
|
136
|
-
avsEnabled: boolean;
|
|
137
|
-
clusterResourceId?: string;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
// @public
|
|
141
|
-
export interface BandwidthUsage {
|
|
142
|
-
current: number;
|
|
143
|
-
max: number;
|
|
144
|
-
provisioned: number;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
// @public
|
|
148
|
-
export interface BillingUsageProperty {
|
|
149
|
-
currentValue: string;
|
|
150
|
-
previousValue?: string;
|
|
151
|
-
propertyId: string;
|
|
152
|
-
propertyName: string;
|
|
153
|
-
severity: UsageSeverity;
|
|
154
|
-
statusMessage?: string;
|
|
155
|
-
subProperties?: BillingUsageProperty[];
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// @public
|
|
159
|
-
export interface CompanyDetails {
|
|
160
|
-
address?: Address;
|
|
161
|
-
companyName: string;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// @public
|
|
165
|
-
export type CreatedByType = string;
|
|
166
|
-
|
|
167
|
-
// @public
|
|
168
|
-
export interface ErrorAdditionalInfo {
|
|
169
|
-
readonly info?: any;
|
|
170
|
-
readonly type?: string;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
// @public
|
|
174
|
-
export interface ErrorDetail {
|
|
175
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
176
|
-
readonly code?: string;
|
|
177
|
-
readonly details?: ErrorDetail[];
|
|
178
|
-
readonly message?: string;
|
|
179
|
-
readonly target?: string;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
// @public
|
|
183
|
-
export interface ErrorResponse {
|
|
184
|
-
error?: ErrorDetail;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
// @public
|
|
188
|
-
export interface HealthDetails {
|
|
189
|
-
bandwidthUsage: BandwidthUsage;
|
|
190
|
-
dataReductionRatio: number;
|
|
191
|
-
estimatedMaxCapacity: number;
|
|
192
|
-
iopsUsage: IopsUsage;
|
|
193
|
-
space: Space;
|
|
194
|
-
usedCapacityPercentage: number;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
// @public
|
|
198
|
-
export interface IopsUsage {
|
|
199
|
-
current: number;
|
|
200
|
-
max: number;
|
|
201
|
-
provisioned: number;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
// @public
|
|
205
|
-
export enum KnownActionType {
|
|
206
|
-
Internal = "Internal"
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// @public
|
|
210
|
-
export enum KnownAlertLevel {
|
|
211
|
-
Error = "error",
|
|
212
|
-
Info = "info",
|
|
213
|
-
Warning = "warning"
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
// @public
|
|
217
|
-
export enum KnownCreatedByType {
|
|
218
|
-
Application = "Application",
|
|
219
|
-
Key = "Key",
|
|
220
|
-
ManagedIdentity = "ManagedIdentity",
|
|
221
|
-
User = "User"
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export enum KnownManagedServiceIdentityType {
|
|
226
|
-
None = "None",
|
|
227
|
-
SystemAssigned = "SystemAssigned",
|
|
228
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
229
|
-
UserAssigned = "UserAssigned"
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
// @public
|
|
233
|
-
export enum KnownMarketplaceSubscriptionStatus {
|
|
234
|
-
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
235
|
-
Subscribed = "Subscribed",
|
|
236
|
-
Suspended = "Suspended",
|
|
237
|
-
Unsubscribed = "Unsubscribed"
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
// @public
|
|
241
|
-
export enum KnownOrigin {
|
|
242
|
-
System = "system",
|
|
243
|
-
User = "user",
|
|
244
|
-
UserSystem = "user,system"
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
// @public
|
|
248
|
-
export enum KnownProvisioningState {
|
|
249
|
-
Accepted = "Accepted",
|
|
250
|
-
Canceled = "Canceled",
|
|
251
|
-
Deleting = "Deleting",
|
|
252
|
-
Failed = "Failed",
|
|
253
|
-
Succeeded = "Succeeded"
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
// @public
|
|
257
|
-
export enum KnownResourceProvisioningState {
|
|
258
|
-
Canceled = "Canceled",
|
|
259
|
-
Failed = "Failed",
|
|
260
|
-
Succeeded = "Succeeded"
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
// @public
|
|
264
|
-
export enum KnownUsageSeverity {
|
|
265
|
-
Alert = "alert",
|
|
266
|
-
Information = "information",
|
|
267
|
-
None = "none",
|
|
268
|
-
Warning = "warning"
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
// @public
|
|
272
|
-
export enum KnownVersions {
|
|
273
|
-
V20241101 = "2024-11-01"
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
// @public
|
|
277
|
-
export enum KnownVmType {
|
|
278
|
-
VVol = "vvol"
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export enum KnownVolumeContainerType {
|
|
283
|
-
AVS = "avs"
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
// @public
|
|
287
|
-
export enum KnownVolumeType {
|
|
288
|
-
AVS = "avs"
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
// @public
|
|
292
|
-
export interface LimitDetails {
|
|
293
|
-
performancePolicy: PerformancePolicyLimits;
|
|
294
|
-
protectionPolicy: ProtectionPolicyLimits;
|
|
295
|
-
storagePool: StoragePoolLimits;
|
|
296
|
-
volume: VolumeLimits;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
// @public
|
|
300
|
-
export interface ManagedServiceIdentity {
|
|
301
|
-
readonly principalId?: string;
|
|
302
|
-
readonly tenantId?: string;
|
|
303
|
-
type: ManagedServiceIdentityType;
|
|
304
|
-
userAssignedIdentities?: Record<string, UserAssignedIdentity | null>;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export type ManagedServiceIdentityType = string;
|
|
309
|
-
|
|
310
|
-
// @public
|
|
311
|
-
export interface MarketplaceDetails {
|
|
312
|
-
offerDetails: OfferDetails;
|
|
313
|
-
readonly subscriptionId?: string;
|
|
314
|
-
subscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
// @public
|
|
318
|
-
export type MarketplaceSubscriptionStatus = string;
|
|
319
|
-
|
|
320
|
-
// @public
|
|
321
|
-
export interface OfferDetails {
|
|
322
|
-
offerId: string;
|
|
323
|
-
planId: string;
|
|
324
|
-
planName?: string;
|
|
325
|
-
publisherId: string;
|
|
326
|
-
termId?: string;
|
|
327
|
-
termUnit?: string;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
// @public
|
|
331
|
-
export interface Operation {
|
|
332
|
-
readonly actionType?: ActionType;
|
|
333
|
-
display?: OperationDisplay;
|
|
334
|
-
readonly isDataAction?: boolean;
|
|
335
|
-
readonly name?: string;
|
|
336
|
-
readonly origin?: Origin;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
// @public
|
|
340
|
-
export interface OperationDisplay {
|
|
341
|
-
readonly description?: string;
|
|
342
|
-
readonly operation?: string;
|
|
343
|
-
readonly provider?: string;
|
|
344
|
-
readonly resource?: string;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
// @public
|
|
348
|
-
export type Origin = string;
|
|
349
|
-
|
|
350
|
-
// @public
|
|
351
|
-
export interface PerformancePolicyLimits {
|
|
352
|
-
bandwidthLimit: RangeLimits;
|
|
353
|
-
iopsLimit: RangeLimits;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// @public
|
|
357
|
-
export interface ProtectionPolicyLimits {
|
|
358
|
-
frequency: RangeLimits;
|
|
359
|
-
retention: RangeLimits;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
// @public
|
|
363
|
-
export type ProvisioningState = string;
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export interface ProxyResource extends Resource {
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
// @public
|
|
370
|
-
export interface RangeLimits {
|
|
371
|
-
max: number;
|
|
372
|
-
min: number;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
// @public
|
|
376
|
-
export interface Reservation extends TrackedResource {
|
|
377
|
-
properties?: ReservationPropertiesBaseResourceProperties;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
// @public
|
|
381
|
-
export interface ReservationBillingStatus {
|
|
382
|
-
drrWeightedAverage: number;
|
|
383
|
-
extraUsedCapacityLowUsageRounding: number;
|
|
384
|
-
extraUsedCapacityNonReducible: number;
|
|
385
|
-
extraUsedCapacityNonReduciblePlanDiscount: number;
|
|
386
|
-
lowDrrPoolCount: number;
|
|
387
|
-
timestamp: string;
|
|
388
|
-
totalNonReducibleReported: number;
|
|
389
|
-
totalPerformanceIncludedPlan: number;
|
|
390
|
-
totalPerformanceOverage: number;
|
|
391
|
-
totalPerformanceReported: number;
|
|
392
|
-
totalUsedCapacityBilled: number;
|
|
393
|
-
totalUsedCapacityIncludedPlan: number;
|
|
394
|
-
totalUsedCapacityOverage: number;
|
|
395
|
-
totalUsedCapacityReported: number;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
// @public
|
|
399
|
-
export interface ReservationBillingUsageReport {
|
|
400
|
-
billingUsageProperties: BillingUsageProperty[];
|
|
401
|
-
overallStatusMessage: string;
|
|
402
|
-
timestamp: string;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
// @public
|
|
406
|
-
export interface ReservationPropertiesBaseResourceProperties {
|
|
407
|
-
marketplace: MarketplaceDetails;
|
|
408
|
-
readonly provisioningState?: ProvisioningState;
|
|
409
|
-
readonly reservationInternalId?: string;
|
|
410
|
-
user: UserDetails;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// @public
|
|
414
|
-
export interface ReservationUpdate {
|
|
415
|
-
properties?: ReservationUpdateProperties;
|
|
416
|
-
tags?: Record<string, string>;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface ReservationUpdateProperties {
|
|
421
|
-
user?: UserDetails;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
// @public
|
|
425
|
-
export interface Resource {
|
|
426
|
-
readonly id?: string;
|
|
427
|
-
readonly name?: string;
|
|
428
|
-
readonly systemData?: SystemData;
|
|
429
|
-
readonly type?: string;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
// @public
|
|
433
|
-
export type ResourceProvisioningState = string;
|
|
434
|
-
|
|
435
|
-
// @public
|
|
436
|
-
export interface ServiceInitializationHandle {
|
|
437
|
-
clusterResourceId?: string;
|
|
438
|
-
serviceAccountUsername?: string;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
// @public
|
|
442
|
-
export interface ServiceInitializationInfo {
|
|
443
|
-
serviceAccountPassword?: string;
|
|
444
|
-
serviceAccountUsername?: string;
|
|
445
|
-
vSphereCertificate?: string;
|
|
446
|
-
vSphereIp?: string;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
// @public
|
|
450
|
-
export interface SoftDeletion {
|
|
451
|
-
destroyed: boolean;
|
|
452
|
-
readonly eradicationTimestamp?: string;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
// @public
|
|
456
|
-
export interface Space {
|
|
457
|
-
shared: number;
|
|
458
|
-
snapshots: number;
|
|
459
|
-
totalUsed: number;
|
|
460
|
-
unique: number;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
// @public
|
|
464
|
-
export interface StoragePool extends TrackedResource {
|
|
465
|
-
identity?: ManagedServiceIdentity;
|
|
466
|
-
properties?: StoragePoolProperties;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
// @public
|
|
470
|
-
export interface StoragePoolEnableAvsConnectionPost {
|
|
471
|
-
clusterResourceId: string;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
// @public
|
|
475
|
-
export interface StoragePoolFinalizeAvsConnectionPost {
|
|
476
|
-
serviceInitializationData?: ServiceInitializationInfo;
|
|
477
|
-
serviceInitializationDataEnc?: string;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
// @public
|
|
481
|
-
export interface StoragePoolHealthInfo {
|
|
482
|
-
alerts: Alert[];
|
|
483
|
-
health: HealthDetails;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
// @public
|
|
487
|
-
export interface StoragePoolLimits {
|
|
488
|
-
physicalAvailabilityZones: string[];
|
|
489
|
-
provisionedBandwidthMbPerSec: RangeLimits;
|
|
490
|
-
provisionedIops: RangeLimits;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
// @public
|
|
494
|
-
export interface StoragePoolProperties {
|
|
495
|
-
availabilityZone: string;
|
|
496
|
-
readonly avs?: AzureVmwareService;
|
|
497
|
-
readonly dataRetentionPeriod?: number;
|
|
498
|
-
provisionedBandwidthMbPerSec: number;
|
|
499
|
-
readonly provisionedIops?: number;
|
|
500
|
-
readonly provisioningState?: ProvisioningState;
|
|
501
|
-
reservationResourceId: string;
|
|
502
|
-
readonly storagePoolInternalId?: string;
|
|
503
|
-
vnetInjection: VnetInjection;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
// @public
|
|
507
|
-
export interface StoragePoolUpdate {
|
|
508
|
-
identity?: ManagedServiceIdentity;
|
|
509
|
-
properties?: StoragePoolUpdateProperties;
|
|
510
|
-
tags?: Record<string, string>;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
// @public
|
|
514
|
-
export interface StoragePoolUpdateProperties {
|
|
515
|
-
provisionedBandwidthMbPerSec?: number;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
// @public
|
|
519
|
-
export interface SystemData {
|
|
520
|
-
createdAt?: Date;
|
|
521
|
-
createdBy?: string;
|
|
522
|
-
createdByType?: CreatedByType;
|
|
523
|
-
lastModifiedAt?: Date;
|
|
524
|
-
lastModifiedBy?: string;
|
|
525
|
-
lastModifiedByType?: CreatedByType;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
// @public
|
|
529
|
-
export interface TrackedResource extends Resource {
|
|
530
|
-
location: string;
|
|
531
|
-
tags?: Record<string, string>;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
// @public
|
|
535
|
-
export type UsageSeverity = string;
|
|
536
|
-
|
|
537
|
-
// @public
|
|
538
|
-
export interface UserAssignedIdentity {
|
|
539
|
-
readonly clientId?: string;
|
|
540
|
-
readonly principalId?: string;
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
// @public
|
|
544
|
-
export interface UserDetails {
|
|
545
|
-
companyDetails?: CompanyDetails;
|
|
546
|
-
emailAddress: string;
|
|
547
|
-
firstName: string;
|
|
548
|
-
lastName: string;
|
|
549
|
-
phoneNumber?: string;
|
|
550
|
-
upn?: string;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
// @public
|
|
554
|
-
export type VmType = string;
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export interface VnetInjection {
|
|
558
|
-
subnetId: string;
|
|
559
|
-
vnetId: string;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
// @public
|
|
563
|
-
export type VolumeContainerType = string;
|
|
564
|
-
|
|
565
|
-
// @public
|
|
566
|
-
export interface VolumeLimits {
|
|
567
|
-
provisionedSize: RangeLimits;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
// @public
|
|
571
|
-
export interface VolumeProperties {
|
|
572
|
-
readonly avs?: AvsDiskDetails;
|
|
573
|
-
readonly createdTimestamp?: string;
|
|
574
|
-
readonly displayName?: string;
|
|
575
|
-
readonly provisionedSize?: number;
|
|
576
|
-
readonly provisioningState?: ResourceProvisioningState;
|
|
577
|
-
softDeletion: SoftDeletion;
|
|
578
|
-
readonly space?: Space;
|
|
579
|
-
readonly storagePoolInternalId?: string;
|
|
580
|
-
readonly storagePoolResourceId?: string;
|
|
581
|
-
readonly volumeInternalId?: string;
|
|
582
|
-
readonly volumeType?: VolumeType;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
// @public
|
|
586
|
-
export type VolumeType = string;
|
|
587
|
-
|
|
588
|
-
// (No @packageDocumentation comment for this package)
|
|
589
|
-
|
|
590
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-purestorageblock"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
// @public
|
|
8
|
+
export type ActionType = string;
|
|
9
|
+
|
|
10
|
+
// @public
|
|
11
|
+
export interface Address {
|
|
12
|
+
addressLine1: string;
|
|
13
|
+
addressLine2?: string;
|
|
14
|
+
city: string;
|
|
15
|
+
country: string;
|
|
16
|
+
postalCode: string;
|
|
17
|
+
state: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// @public
|
|
21
|
+
export interface Alert {
|
|
22
|
+
level: AlertLevel;
|
|
23
|
+
message: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// @public
|
|
27
|
+
export type AlertLevel = string;
|
|
28
|
+
|
|
29
|
+
// @public
|
|
30
|
+
export interface AvsConnection {
|
|
31
|
+
serviceInitializationCompleted: boolean;
|
|
32
|
+
serviceInitializationHandle?: ServiceInitializationHandle;
|
|
33
|
+
serviceInitializationHandleEnc?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// @public
|
|
37
|
+
export interface AvsDiskDetails {
|
|
38
|
+
avsStorageContainerResourceId: string;
|
|
39
|
+
avsVmInternalId: string;
|
|
40
|
+
avsVmName: string;
|
|
41
|
+
avsVmResourceId: string;
|
|
42
|
+
diskId: string;
|
|
43
|
+
diskName: string;
|
|
44
|
+
folder: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public
|
|
48
|
+
export interface AvsStatus {
|
|
49
|
+
avsEnabled: boolean;
|
|
50
|
+
clusterResourceId?: string;
|
|
51
|
+
currentConnectionStatus: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export interface AvsStorageContainer extends ProxyResource {
|
|
56
|
+
properties?: AvsStorageContainerProperties;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// @public
|
|
60
|
+
export interface AvsStorageContainerProperties {
|
|
61
|
+
readonly datastore?: string;
|
|
62
|
+
readonly mounted?: boolean;
|
|
63
|
+
provisionedLimit?: number;
|
|
64
|
+
readonly resourceName: string;
|
|
65
|
+
readonly space?: Space;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// @public
|
|
69
|
+
export interface AvsStorageContainerVolume extends ProxyResource {
|
|
70
|
+
properties?: VolumeProperties;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface AvsStorageContainerVolumeUpdate {
|
|
75
|
+
properties?: AvsStorageContainerVolumeUpdateProperties;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// @public
|
|
79
|
+
export interface AvsStorageContainerVolumeUpdateProperties {
|
|
80
|
+
softDeletion?: SoftDeletion;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// @public
|
|
84
|
+
export interface AvsVm extends ProxyResource {
|
|
85
|
+
properties?: AvsVmProperties;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// @public
|
|
89
|
+
export interface AvsVmDetails {
|
|
90
|
+
avsVmInternalId: string;
|
|
91
|
+
vmId: string;
|
|
92
|
+
vmName: string;
|
|
93
|
+
vmType: VmType;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// @public
|
|
97
|
+
export interface AvsVmProperties {
|
|
98
|
+
readonly avs?: AvsVmDetails;
|
|
99
|
+
readonly createdTimestamp?: string;
|
|
100
|
+
readonly displayName?: string;
|
|
101
|
+
readonly provisioningState?: ResourceProvisioningState;
|
|
102
|
+
softDeletion?: SoftDeletion;
|
|
103
|
+
readonly space?: Space;
|
|
104
|
+
readonly storagePoolInternalId?: string;
|
|
105
|
+
readonly storagePoolResourceId?: string;
|
|
106
|
+
readonly volumeContainerType?: VolumeContainerType;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface AvsVmUpdate {
|
|
111
|
+
properties?: AvsVmUpdateProperties;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export interface AvsVmUpdateProperties {
|
|
116
|
+
softDeletion?: SoftDeletion;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// @public
|
|
120
|
+
export interface AvsVmVolume extends ProxyResource {
|
|
121
|
+
properties?: VolumeProperties;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @public
|
|
125
|
+
export interface AvsVmVolumeUpdate {
|
|
126
|
+
properties?: AvsVmVolumeUpdateProperties;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export interface AvsVmVolumeUpdateProperties {
|
|
131
|
+
softDeletion?: SoftDeletion;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// @public
|
|
135
|
+
export interface AzureVmwareService {
|
|
136
|
+
avsEnabled: boolean;
|
|
137
|
+
clusterResourceId?: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// @public
|
|
141
|
+
export interface BandwidthUsage {
|
|
142
|
+
current: number;
|
|
143
|
+
max: number;
|
|
144
|
+
provisioned: number;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// @public
|
|
148
|
+
export interface BillingUsageProperty {
|
|
149
|
+
currentValue: string;
|
|
150
|
+
previousValue?: string;
|
|
151
|
+
propertyId: string;
|
|
152
|
+
propertyName: string;
|
|
153
|
+
severity: UsageSeverity;
|
|
154
|
+
statusMessage?: string;
|
|
155
|
+
subProperties?: BillingUsageProperty[];
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// @public
|
|
159
|
+
export interface CompanyDetails {
|
|
160
|
+
address?: Address;
|
|
161
|
+
companyName: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// @public
|
|
165
|
+
export type CreatedByType = string;
|
|
166
|
+
|
|
167
|
+
// @public
|
|
168
|
+
export interface ErrorAdditionalInfo {
|
|
169
|
+
readonly info?: any;
|
|
170
|
+
readonly type?: string;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// @public
|
|
174
|
+
export interface ErrorDetail {
|
|
175
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
176
|
+
readonly code?: string;
|
|
177
|
+
readonly details?: ErrorDetail[];
|
|
178
|
+
readonly message?: string;
|
|
179
|
+
readonly target?: string;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// @public
|
|
183
|
+
export interface ErrorResponse {
|
|
184
|
+
error?: ErrorDetail;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// @public
|
|
188
|
+
export interface HealthDetails {
|
|
189
|
+
bandwidthUsage: BandwidthUsage;
|
|
190
|
+
dataReductionRatio: number;
|
|
191
|
+
estimatedMaxCapacity: number;
|
|
192
|
+
iopsUsage: IopsUsage;
|
|
193
|
+
space: Space;
|
|
194
|
+
usedCapacityPercentage: number;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// @public
|
|
198
|
+
export interface IopsUsage {
|
|
199
|
+
current: number;
|
|
200
|
+
max: number;
|
|
201
|
+
provisioned: number;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// @public
|
|
205
|
+
export enum KnownActionType {
|
|
206
|
+
Internal = "Internal"
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// @public
|
|
210
|
+
export enum KnownAlertLevel {
|
|
211
|
+
Error = "error",
|
|
212
|
+
Info = "info",
|
|
213
|
+
Warning = "warning"
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
// @public
|
|
217
|
+
export enum KnownCreatedByType {
|
|
218
|
+
Application = "Application",
|
|
219
|
+
Key = "Key",
|
|
220
|
+
ManagedIdentity = "ManagedIdentity",
|
|
221
|
+
User = "User"
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// @public
|
|
225
|
+
export enum KnownManagedServiceIdentityType {
|
|
226
|
+
None = "None",
|
|
227
|
+
SystemAssigned = "SystemAssigned",
|
|
228
|
+
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
229
|
+
UserAssigned = "UserAssigned"
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
// @public
|
|
233
|
+
export enum KnownMarketplaceSubscriptionStatus {
|
|
234
|
+
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
235
|
+
Subscribed = "Subscribed",
|
|
236
|
+
Suspended = "Suspended",
|
|
237
|
+
Unsubscribed = "Unsubscribed"
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// @public
|
|
241
|
+
export enum KnownOrigin {
|
|
242
|
+
System = "system",
|
|
243
|
+
User = "user",
|
|
244
|
+
UserSystem = "user,system"
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
// @public
|
|
248
|
+
export enum KnownProvisioningState {
|
|
249
|
+
Accepted = "Accepted",
|
|
250
|
+
Canceled = "Canceled",
|
|
251
|
+
Deleting = "Deleting",
|
|
252
|
+
Failed = "Failed",
|
|
253
|
+
Succeeded = "Succeeded"
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// @public
|
|
257
|
+
export enum KnownResourceProvisioningState {
|
|
258
|
+
Canceled = "Canceled",
|
|
259
|
+
Failed = "Failed",
|
|
260
|
+
Succeeded = "Succeeded"
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// @public
|
|
264
|
+
export enum KnownUsageSeverity {
|
|
265
|
+
Alert = "alert",
|
|
266
|
+
Information = "information",
|
|
267
|
+
None = "none",
|
|
268
|
+
Warning = "warning"
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
// @public
|
|
272
|
+
export enum KnownVersions {
|
|
273
|
+
V20241101 = "2024-11-01"
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// @public
|
|
277
|
+
export enum KnownVmType {
|
|
278
|
+
VVol = "vvol"
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export enum KnownVolumeContainerType {
|
|
283
|
+
AVS = "avs"
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
// @public
|
|
287
|
+
export enum KnownVolumeType {
|
|
288
|
+
AVS = "avs"
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// @public
|
|
292
|
+
export interface LimitDetails {
|
|
293
|
+
performancePolicy: PerformancePolicyLimits;
|
|
294
|
+
protectionPolicy: ProtectionPolicyLimits;
|
|
295
|
+
storagePool: StoragePoolLimits;
|
|
296
|
+
volume: VolumeLimits;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// @public
|
|
300
|
+
export interface ManagedServiceIdentity {
|
|
301
|
+
readonly principalId?: string;
|
|
302
|
+
readonly tenantId?: string;
|
|
303
|
+
type: ManagedServiceIdentityType;
|
|
304
|
+
userAssignedIdentities?: Record<string, UserAssignedIdentity | null>;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export type ManagedServiceIdentityType = string;
|
|
309
|
+
|
|
310
|
+
// @public
|
|
311
|
+
export interface MarketplaceDetails {
|
|
312
|
+
offerDetails: OfferDetails;
|
|
313
|
+
readonly subscriptionId?: string;
|
|
314
|
+
subscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
// @public
|
|
318
|
+
export type MarketplaceSubscriptionStatus = string;
|
|
319
|
+
|
|
320
|
+
// @public
|
|
321
|
+
export interface OfferDetails {
|
|
322
|
+
offerId: string;
|
|
323
|
+
planId: string;
|
|
324
|
+
planName?: string;
|
|
325
|
+
publisherId: string;
|
|
326
|
+
termId?: string;
|
|
327
|
+
termUnit?: string;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// @public
|
|
331
|
+
export interface Operation {
|
|
332
|
+
readonly actionType?: ActionType;
|
|
333
|
+
display?: OperationDisplay;
|
|
334
|
+
readonly isDataAction?: boolean;
|
|
335
|
+
readonly name?: string;
|
|
336
|
+
readonly origin?: Origin;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
// @public
|
|
340
|
+
export interface OperationDisplay {
|
|
341
|
+
readonly description?: string;
|
|
342
|
+
readonly operation?: string;
|
|
343
|
+
readonly provider?: string;
|
|
344
|
+
readonly resource?: string;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// @public
|
|
348
|
+
export type Origin = string;
|
|
349
|
+
|
|
350
|
+
// @public
|
|
351
|
+
export interface PerformancePolicyLimits {
|
|
352
|
+
bandwidthLimit: RangeLimits;
|
|
353
|
+
iopsLimit: RangeLimits;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// @public
|
|
357
|
+
export interface ProtectionPolicyLimits {
|
|
358
|
+
frequency: RangeLimits;
|
|
359
|
+
retention: RangeLimits;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
// @public
|
|
363
|
+
export type ProvisioningState = string;
|
|
364
|
+
|
|
365
|
+
// @public
|
|
366
|
+
export interface ProxyResource extends Resource {
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
// @public
|
|
370
|
+
export interface RangeLimits {
|
|
371
|
+
max: number;
|
|
372
|
+
min: number;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// @public
|
|
376
|
+
export interface Reservation extends TrackedResource {
|
|
377
|
+
properties?: ReservationPropertiesBaseResourceProperties;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
// @public
|
|
381
|
+
export interface ReservationBillingStatus {
|
|
382
|
+
drrWeightedAverage: number;
|
|
383
|
+
extraUsedCapacityLowUsageRounding: number;
|
|
384
|
+
extraUsedCapacityNonReducible: number;
|
|
385
|
+
extraUsedCapacityNonReduciblePlanDiscount: number;
|
|
386
|
+
lowDrrPoolCount: number;
|
|
387
|
+
timestamp: string;
|
|
388
|
+
totalNonReducibleReported: number;
|
|
389
|
+
totalPerformanceIncludedPlan: number;
|
|
390
|
+
totalPerformanceOverage: number;
|
|
391
|
+
totalPerformanceReported: number;
|
|
392
|
+
totalUsedCapacityBilled: number;
|
|
393
|
+
totalUsedCapacityIncludedPlan: number;
|
|
394
|
+
totalUsedCapacityOverage: number;
|
|
395
|
+
totalUsedCapacityReported: number;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
// @public
|
|
399
|
+
export interface ReservationBillingUsageReport {
|
|
400
|
+
billingUsageProperties: BillingUsageProperty[];
|
|
401
|
+
overallStatusMessage: string;
|
|
402
|
+
timestamp: string;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
// @public
|
|
406
|
+
export interface ReservationPropertiesBaseResourceProperties {
|
|
407
|
+
marketplace: MarketplaceDetails;
|
|
408
|
+
readonly provisioningState?: ProvisioningState;
|
|
409
|
+
readonly reservationInternalId?: string;
|
|
410
|
+
user: UserDetails;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// @public
|
|
414
|
+
export interface ReservationUpdate {
|
|
415
|
+
properties?: ReservationUpdateProperties;
|
|
416
|
+
tags?: Record<string, string>;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface ReservationUpdateProperties {
|
|
421
|
+
user?: UserDetails;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// @public
|
|
425
|
+
export interface Resource {
|
|
426
|
+
readonly id?: string;
|
|
427
|
+
readonly name?: string;
|
|
428
|
+
readonly systemData?: SystemData;
|
|
429
|
+
readonly type?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
// @public
|
|
433
|
+
export type ResourceProvisioningState = string;
|
|
434
|
+
|
|
435
|
+
// @public
|
|
436
|
+
export interface ServiceInitializationHandle {
|
|
437
|
+
clusterResourceId?: string;
|
|
438
|
+
serviceAccountUsername?: string;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
// @public
|
|
442
|
+
export interface ServiceInitializationInfo {
|
|
443
|
+
serviceAccountPassword?: string;
|
|
444
|
+
serviceAccountUsername?: string;
|
|
445
|
+
vSphereCertificate?: string;
|
|
446
|
+
vSphereIp?: string;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
// @public
|
|
450
|
+
export interface SoftDeletion {
|
|
451
|
+
destroyed: boolean;
|
|
452
|
+
readonly eradicationTimestamp?: string;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// @public
|
|
456
|
+
export interface Space {
|
|
457
|
+
shared: number;
|
|
458
|
+
snapshots: number;
|
|
459
|
+
totalUsed: number;
|
|
460
|
+
unique: number;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
// @public
|
|
464
|
+
export interface StoragePool extends TrackedResource {
|
|
465
|
+
identity?: ManagedServiceIdentity;
|
|
466
|
+
properties?: StoragePoolProperties;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
// @public
|
|
470
|
+
export interface StoragePoolEnableAvsConnectionPost {
|
|
471
|
+
clusterResourceId: string;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
// @public
|
|
475
|
+
export interface StoragePoolFinalizeAvsConnectionPost {
|
|
476
|
+
serviceInitializationData?: ServiceInitializationInfo;
|
|
477
|
+
serviceInitializationDataEnc?: string;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
// @public
|
|
481
|
+
export interface StoragePoolHealthInfo {
|
|
482
|
+
alerts: Alert[];
|
|
483
|
+
health: HealthDetails;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
// @public
|
|
487
|
+
export interface StoragePoolLimits {
|
|
488
|
+
physicalAvailabilityZones: string[];
|
|
489
|
+
provisionedBandwidthMbPerSec: RangeLimits;
|
|
490
|
+
provisionedIops: RangeLimits;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
// @public
|
|
494
|
+
export interface StoragePoolProperties {
|
|
495
|
+
availabilityZone: string;
|
|
496
|
+
readonly avs?: AzureVmwareService;
|
|
497
|
+
readonly dataRetentionPeriod?: number;
|
|
498
|
+
provisionedBandwidthMbPerSec: number;
|
|
499
|
+
readonly provisionedIops?: number;
|
|
500
|
+
readonly provisioningState?: ProvisioningState;
|
|
501
|
+
reservationResourceId: string;
|
|
502
|
+
readonly storagePoolInternalId?: string;
|
|
503
|
+
vnetInjection: VnetInjection;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
// @public
|
|
507
|
+
export interface StoragePoolUpdate {
|
|
508
|
+
identity?: ManagedServiceIdentity;
|
|
509
|
+
properties?: StoragePoolUpdateProperties;
|
|
510
|
+
tags?: Record<string, string>;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
// @public
|
|
514
|
+
export interface StoragePoolUpdateProperties {
|
|
515
|
+
provisionedBandwidthMbPerSec?: number;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
// @public
|
|
519
|
+
export interface SystemData {
|
|
520
|
+
createdAt?: Date;
|
|
521
|
+
createdBy?: string;
|
|
522
|
+
createdByType?: CreatedByType;
|
|
523
|
+
lastModifiedAt?: Date;
|
|
524
|
+
lastModifiedBy?: string;
|
|
525
|
+
lastModifiedByType?: CreatedByType;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
// @public
|
|
529
|
+
export interface TrackedResource extends Resource {
|
|
530
|
+
location: string;
|
|
531
|
+
tags?: Record<string, string>;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
// @public
|
|
535
|
+
export type UsageSeverity = string;
|
|
536
|
+
|
|
537
|
+
// @public
|
|
538
|
+
export interface UserAssignedIdentity {
|
|
539
|
+
readonly clientId?: string;
|
|
540
|
+
readonly principalId?: string;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// @public
|
|
544
|
+
export interface UserDetails {
|
|
545
|
+
companyDetails?: CompanyDetails;
|
|
546
|
+
emailAddress: string;
|
|
547
|
+
firstName: string;
|
|
548
|
+
lastName: string;
|
|
549
|
+
phoneNumber?: string;
|
|
550
|
+
upn?: string;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
// @public
|
|
554
|
+
export type VmType = string;
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export interface VnetInjection {
|
|
558
|
+
subnetId: string;
|
|
559
|
+
vnetId: string;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
// @public
|
|
563
|
+
export type VolumeContainerType = string;
|
|
564
|
+
|
|
565
|
+
// @public
|
|
566
|
+
export interface VolumeLimits {
|
|
567
|
+
provisionedSize: RangeLimits;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
// @public
|
|
571
|
+
export interface VolumeProperties {
|
|
572
|
+
readonly avs?: AvsDiskDetails;
|
|
573
|
+
readonly createdTimestamp?: string;
|
|
574
|
+
readonly displayName?: string;
|
|
575
|
+
readonly provisionedSize?: number;
|
|
576
|
+
readonly provisioningState?: ResourceProvisioningState;
|
|
577
|
+
softDeletion: SoftDeletion;
|
|
578
|
+
readonly space?: Space;
|
|
579
|
+
readonly storagePoolInternalId?: string;
|
|
580
|
+
readonly storagePoolResourceId?: string;
|
|
581
|
+
readonly volumeInternalId?: string;
|
|
582
|
+
readonly volumeType?: VolumeType;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// @public
|
|
586
|
+
export type VolumeType = string;
|
|
587
|
+
|
|
588
|
+
// (No @packageDocumentation comment for this package)
|
|
589
|
+
|
|
590
|
+
```
|