@azure/arm-storsimple8000series 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,1923 +1,1923 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-storsimple8000series"
|
|
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 interface AccessControlRecord extends BaseModel {
|
|
15
|
-
initiatorName: string;
|
|
16
|
-
readonly volumeCount?: number;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// @public
|
|
20
|
-
export interface AccessControlRecordList {
|
|
21
|
-
value: AccessControlRecord[];
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// @public
|
|
25
|
-
export interface AccessControlRecords {
|
|
26
|
-
beginCreateOrUpdate(accessControlRecordName: string, resourceGroupName: string, managerName: string, parameters: AccessControlRecord, options?: AccessControlRecordsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<AccessControlRecordsCreateOrUpdateResponse>, AccessControlRecordsCreateOrUpdateResponse>>;
|
|
27
|
-
beginCreateOrUpdateAndWait(accessControlRecordName: string, resourceGroupName: string, managerName: string, parameters: AccessControlRecord, options?: AccessControlRecordsCreateOrUpdateOptionalParams): Promise<AccessControlRecordsCreateOrUpdateResponse>;
|
|
28
|
-
beginDelete(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
29
|
-
beginDeleteAndWait(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsDeleteOptionalParams): Promise<void>;
|
|
30
|
-
get(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsGetOptionalParams): Promise<AccessControlRecordsGetResponse>;
|
|
31
|
-
listByManager(resourceGroupName: string, managerName: string, options?: AccessControlRecordsListByManagerOptionalParams): PagedAsyncIterableIterator<AccessControlRecord>;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// @public
|
|
35
|
-
export interface AccessControlRecordsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
36
|
-
resumeFrom?: string;
|
|
37
|
-
updateIntervalInMs?: number;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export type AccessControlRecordsCreateOrUpdateResponse = AccessControlRecord;
|
|
42
|
-
|
|
43
|
-
// @public
|
|
44
|
-
export interface AccessControlRecordsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
45
|
-
resumeFrom?: string;
|
|
46
|
-
updateIntervalInMs?: number;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// @public
|
|
50
|
-
export interface AccessControlRecordsGetOptionalParams extends coreClient.OperationOptions {
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// @public
|
|
54
|
-
export type AccessControlRecordsGetResponse = AccessControlRecord;
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export interface AccessControlRecordsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
// @public
|
|
61
|
-
export type AccessControlRecordsListByManagerResponse = AccessControlRecordList;
|
|
62
|
-
|
|
63
|
-
// @public
|
|
64
|
-
export interface AcsConfiguration {
|
|
65
|
-
namespace: string;
|
|
66
|
-
realm: string;
|
|
67
|
-
serviceUrl: string;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export interface Alert extends BaseModel {
|
|
72
|
-
alertType: string;
|
|
73
|
-
appearedAtSourceTime: Date;
|
|
74
|
-
appearedAtTime: Date;
|
|
75
|
-
clearedAtSourceTime?: Date;
|
|
76
|
-
clearedAtTime?: Date;
|
|
77
|
-
detailedInformation?: {
|
|
78
|
-
[propertyName: string]: string;
|
|
79
|
-
};
|
|
80
|
-
errorDetails?: AlertErrorDetails;
|
|
81
|
-
recommendation?: string;
|
|
82
|
-
resolutionReason?: string;
|
|
83
|
-
scope: AlertScope;
|
|
84
|
-
severity: AlertSeverity;
|
|
85
|
-
source: AlertSource;
|
|
86
|
-
status: AlertStatus;
|
|
87
|
-
title: string;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// @public
|
|
91
|
-
export type AlertEmailNotificationStatus = "Enabled" | "Disabled";
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export interface AlertErrorDetails {
|
|
95
|
-
errorCode?: string;
|
|
96
|
-
errorMessage?: string;
|
|
97
|
-
occurences?: number;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export interface AlertFilter {
|
|
102
|
-
appearedOnTime?: Date;
|
|
103
|
-
severity?: AlertSeverity;
|
|
104
|
-
sourceName?: string;
|
|
105
|
-
sourceType?: AlertSourceType;
|
|
106
|
-
status?: AlertStatus;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface AlertList {
|
|
111
|
-
nextLink?: string;
|
|
112
|
-
value: Alert[];
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export interface Alerts {
|
|
117
|
-
clear(resourceGroupName: string, managerName: string, parameters: ClearAlertRequest, options?: AlertsClearOptionalParams): Promise<void>;
|
|
118
|
-
listByManager(resourceGroupName: string, managerName: string, options?: AlertsListByManagerOptionalParams): PagedAsyncIterableIterator<Alert>;
|
|
119
|
-
sendTestEmail(deviceName: string, resourceGroupName: string, managerName: string, parameters: SendTestAlertEmailRequest, options?: AlertsSendTestEmailOptionalParams): Promise<void>;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export interface AlertsClearOptionalParams extends coreClient.OperationOptions {
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// @public
|
|
127
|
-
export type AlertScope = "Resource" | "Device";
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export interface AlertSettings extends BaseModel {
|
|
131
|
-
additionalRecipientEmailList?: string[];
|
|
132
|
-
alertNotificationCulture?: string;
|
|
133
|
-
emailNotification: AlertEmailNotificationStatus;
|
|
134
|
-
notificationToServiceOwners?: AlertEmailNotificationStatus;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
// @public
|
|
138
|
-
export type AlertSeverity = "Informational" | "Warning" | "Critical";
|
|
139
|
-
|
|
140
|
-
// @public
|
|
141
|
-
export interface AlertsListByManagerNextOptionalParams extends coreClient.OperationOptions {
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
// @public
|
|
145
|
-
export type AlertsListByManagerNextResponse = AlertList;
|
|
146
|
-
|
|
147
|
-
// @public
|
|
148
|
-
export interface AlertsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
149
|
-
filter?: string;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// @public
|
|
153
|
-
export type AlertsListByManagerResponse = AlertList;
|
|
154
|
-
|
|
155
|
-
// @public
|
|
156
|
-
export interface AlertSource {
|
|
157
|
-
alertSourceType?: AlertSourceType;
|
|
158
|
-
name?: string;
|
|
159
|
-
timeZone?: string;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
// @public
|
|
163
|
-
export type AlertSourceType = "Resource" | "Device";
|
|
164
|
-
|
|
165
|
-
// @public
|
|
166
|
-
export interface AlertsSendTestEmailOptionalParams extends coreClient.OperationOptions {
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
// @public
|
|
170
|
-
export type AlertStatus = "Active" | "Cleared";
|
|
171
|
-
|
|
172
|
-
// @public
|
|
173
|
-
export interface AsymmetricEncryptedSecret {
|
|
174
|
-
encryptionAlgorithm: EncryptionAlgorithm;
|
|
175
|
-
encryptionCertThumbprint?: string;
|
|
176
|
-
value: string;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
// @public
|
|
180
|
-
export type AuthenticationType = "Invalid" | "None" | "Basic" | "NTLM";
|
|
181
|
-
|
|
182
|
-
// @public
|
|
183
|
-
export type AuthorizationEligibility = "InEligible" | "Eligible";
|
|
184
|
-
|
|
185
|
-
// @public
|
|
186
|
-
export type AuthorizationStatus = "Disabled" | "Enabled";
|
|
187
|
-
|
|
188
|
-
// @public
|
|
189
|
-
export interface AvailableProviderOperation {
|
|
190
|
-
display?: AvailableProviderOperationDisplay;
|
|
191
|
-
name?: string;
|
|
192
|
-
origin?: string;
|
|
193
|
-
properties?: Record<string, unknown>;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface AvailableProviderOperationDisplay {
|
|
198
|
-
description?: string;
|
|
199
|
-
operation?: string;
|
|
200
|
-
provider?: string;
|
|
201
|
-
resource?: string;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
// @public
|
|
205
|
-
export interface AvailableProviderOperationList {
|
|
206
|
-
nextLink?: string;
|
|
207
|
-
value: AvailableProviderOperation[];
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
// @public
|
|
211
|
-
export interface Backup extends BaseModel {
|
|
212
|
-
backupJobCreationType?: BackupJobCreationType;
|
|
213
|
-
backupPolicyId?: string;
|
|
214
|
-
backupType?: BackupType;
|
|
215
|
-
createdOn: Date;
|
|
216
|
-
elements: BackupElement[];
|
|
217
|
-
sizeInBytes: number;
|
|
218
|
-
ssmHostName?: string;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export interface BackupElement {
|
|
223
|
-
elementId: string;
|
|
224
|
-
elementName: string;
|
|
225
|
-
elementType: string;
|
|
226
|
-
sizeInBytes: number;
|
|
227
|
-
volumeContainerId: string;
|
|
228
|
-
volumeName: string;
|
|
229
|
-
volumeType?: VolumeType;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
// @public
|
|
233
|
-
export interface BackupFilter {
|
|
234
|
-
backupPolicyId?: string;
|
|
235
|
-
createdTime?: Date;
|
|
236
|
-
volumeId?: string;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
// @public
|
|
240
|
-
export type BackupJobCreationType = "Adhoc" | "BySchedule" | "BySSM";
|
|
241
|
-
|
|
242
|
-
// @public
|
|
243
|
-
export interface BackupList {
|
|
244
|
-
nextLink?: string;
|
|
245
|
-
value: Backup[];
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
// @public
|
|
249
|
-
export interface BackupPolicies {
|
|
250
|
-
beginBackupNow(deviceName: string, backupPolicyName: string, backupType: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesBackupNowOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
251
|
-
beginBackupNowAndWait(deviceName: string, backupPolicyName: string, backupType: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesBackupNowOptionalParams): Promise<void>;
|
|
252
|
-
beginCreateOrUpdate(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, parameters: BackupPolicy, options?: BackupPoliciesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BackupPoliciesCreateOrUpdateResponse>, BackupPoliciesCreateOrUpdateResponse>>;
|
|
253
|
-
beginCreateOrUpdateAndWait(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, parameters: BackupPolicy, options?: BackupPoliciesCreateOrUpdateOptionalParams): Promise<BackupPoliciesCreateOrUpdateResponse>;
|
|
254
|
-
beginDelete(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
255
|
-
beginDeleteAndWait(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesDeleteOptionalParams): Promise<void>;
|
|
256
|
-
get(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesGetOptionalParams): Promise<BackupPoliciesGetResponse>;
|
|
257
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesListByDeviceOptionalParams): PagedAsyncIterableIterator<BackupPolicy>;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export interface BackupPoliciesBackupNowOptionalParams extends coreClient.OperationOptions {
|
|
262
|
-
resumeFrom?: string;
|
|
263
|
-
updateIntervalInMs?: number;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
// @public
|
|
267
|
-
export interface BackupPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
268
|
-
resumeFrom?: string;
|
|
269
|
-
updateIntervalInMs?: number;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export type BackupPoliciesCreateOrUpdateResponse = BackupPolicy;
|
|
274
|
-
|
|
275
|
-
// @public
|
|
276
|
-
export interface BackupPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
277
|
-
resumeFrom?: string;
|
|
278
|
-
updateIntervalInMs?: number;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export interface BackupPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export type BackupPoliciesGetResponse = BackupPolicy;
|
|
287
|
-
|
|
288
|
-
// @public
|
|
289
|
-
export interface BackupPoliciesListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// @public
|
|
293
|
-
export type BackupPoliciesListByDeviceResponse = BackupPolicyList;
|
|
294
|
-
|
|
295
|
-
// @public
|
|
296
|
-
export interface BackupPolicy extends BaseModel {
|
|
297
|
-
readonly backupPolicyCreationType?: BackupPolicyCreationType;
|
|
298
|
-
readonly lastBackupTime?: Date;
|
|
299
|
-
readonly nextBackupTime?: Date;
|
|
300
|
-
readonly scheduledBackupStatus?: ScheduledBackupStatus;
|
|
301
|
-
readonly schedulesCount?: number;
|
|
302
|
-
readonly ssmHostName?: string;
|
|
303
|
-
volumeIds: string[];
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
// @public
|
|
307
|
-
export type BackupPolicyCreationType = "BySaaS" | "BySSM";
|
|
308
|
-
|
|
309
|
-
// @public
|
|
310
|
-
export interface BackupPolicyList {
|
|
311
|
-
value: BackupPolicy[];
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export interface Backups {
|
|
316
|
-
beginClone(deviceName: string, backupName: string, backupElementName: string, resourceGroupName: string, managerName: string, parameters: CloneRequest, options?: BackupsCloneOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
317
|
-
beginCloneAndWait(deviceName: string, backupName: string, backupElementName: string, resourceGroupName: string, managerName: string, parameters: CloneRequest, options?: BackupsCloneOptionalParams): Promise<void>;
|
|
318
|
-
beginDelete(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
319
|
-
beginDeleteAndWait(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsDeleteOptionalParams): Promise<void>;
|
|
320
|
-
beginRestore(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsRestoreOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
321
|
-
beginRestoreAndWait(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsRestoreOptionalParams): Promise<void>;
|
|
322
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: BackupsListByDeviceOptionalParams): PagedAsyncIterableIterator<Backup>;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export interface BackupSchedule extends BaseModel {
|
|
327
|
-
backupType: BackupType;
|
|
328
|
-
readonly lastSuccessfulRun?: Date;
|
|
329
|
-
retentionCount: number;
|
|
330
|
-
scheduleRecurrence: ScheduleRecurrence;
|
|
331
|
-
scheduleStatus: ScheduleStatus;
|
|
332
|
-
startTime: Date;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
// @public
|
|
336
|
-
export interface BackupScheduleList {
|
|
337
|
-
value: BackupSchedule[];
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
// @public
|
|
341
|
-
export interface BackupSchedules {
|
|
342
|
-
beginCreateOrUpdate(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, parameters: BackupSchedule, options?: BackupSchedulesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BackupSchedulesCreateOrUpdateResponse>, BackupSchedulesCreateOrUpdateResponse>>;
|
|
343
|
-
beginCreateOrUpdateAndWait(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, parameters: BackupSchedule, options?: BackupSchedulesCreateOrUpdateOptionalParams): Promise<BackupSchedulesCreateOrUpdateResponse>;
|
|
344
|
-
beginDelete(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
345
|
-
beginDeleteAndWait(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesDeleteOptionalParams): Promise<void>;
|
|
346
|
-
get(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesGetOptionalParams): Promise<BackupSchedulesGetResponse>;
|
|
347
|
-
listByBackupPolicy(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesListByBackupPolicyOptionalParams): PagedAsyncIterableIterator<BackupSchedule>;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
// @public
|
|
351
|
-
export interface BackupSchedulesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
352
|
-
resumeFrom?: string;
|
|
353
|
-
updateIntervalInMs?: number;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// @public
|
|
357
|
-
export type BackupSchedulesCreateOrUpdateResponse = BackupSchedule;
|
|
358
|
-
|
|
359
|
-
// @public
|
|
360
|
-
export interface BackupSchedulesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
361
|
-
resumeFrom?: string;
|
|
362
|
-
updateIntervalInMs?: number;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export interface BackupSchedulesGetOptionalParams extends coreClient.OperationOptions {
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
// @public
|
|
370
|
-
export type BackupSchedulesGetResponse = BackupSchedule;
|
|
371
|
-
|
|
372
|
-
// @public
|
|
373
|
-
export interface BackupSchedulesListByBackupPolicyOptionalParams extends coreClient.OperationOptions {
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
// @public
|
|
377
|
-
export type BackupSchedulesListByBackupPolicyResponse = BackupScheduleList;
|
|
378
|
-
|
|
379
|
-
// @public
|
|
380
|
-
export interface BackupsCloneOptionalParams extends coreClient.OperationOptions {
|
|
381
|
-
resumeFrom?: string;
|
|
382
|
-
updateIntervalInMs?: number;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
// @public
|
|
386
|
-
export interface BackupsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
387
|
-
resumeFrom?: string;
|
|
388
|
-
updateIntervalInMs?: number;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
// @public
|
|
392
|
-
export interface BackupsListByDeviceNextOptionalParams extends coreClient.OperationOptions {
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
// @public
|
|
396
|
-
export type BackupsListByDeviceNextResponse = BackupList;
|
|
397
|
-
|
|
398
|
-
// @public
|
|
399
|
-
export interface BackupsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
400
|
-
filter?: string;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
// @public
|
|
404
|
-
export type BackupsListByDeviceResponse = BackupList;
|
|
405
|
-
|
|
406
|
-
// @public
|
|
407
|
-
export interface BackupsRestoreOptionalParams extends coreClient.OperationOptions {
|
|
408
|
-
resumeFrom?: string;
|
|
409
|
-
updateIntervalInMs?: number;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
// @public
|
|
413
|
-
export type BackupStatus = "Enabled" | "Disabled";
|
|
414
|
-
|
|
415
|
-
// @public
|
|
416
|
-
export type BackupType = "LocalSnapshot" | "CloudSnapshot";
|
|
417
|
-
|
|
418
|
-
// @public
|
|
419
|
-
export interface BandwidthSchedule {
|
|
420
|
-
days: DayOfWeek[];
|
|
421
|
-
rateInMbps: number;
|
|
422
|
-
start: Time;
|
|
423
|
-
stop: Time;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
// @public
|
|
427
|
-
export interface BandwidthSetting extends BaseModel {
|
|
428
|
-
schedules: BandwidthSchedule[];
|
|
429
|
-
readonly volumeCount?: number;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
// @public
|
|
433
|
-
export interface BandwidthSettingList {
|
|
434
|
-
value: BandwidthSetting[];
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
// @public
|
|
438
|
-
export interface BandwidthSettings {
|
|
439
|
-
beginCreateOrUpdate(bandwidthSettingName: string, resourceGroupName: string, managerName: string, parameters: BandwidthSetting, options?: BandwidthSettingsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BandwidthSettingsCreateOrUpdateResponse>, BandwidthSettingsCreateOrUpdateResponse>>;
|
|
440
|
-
beginCreateOrUpdateAndWait(bandwidthSettingName: string, resourceGroupName: string, managerName: string, parameters: BandwidthSetting, options?: BandwidthSettingsCreateOrUpdateOptionalParams): Promise<BandwidthSettingsCreateOrUpdateResponse>;
|
|
441
|
-
beginDelete(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
442
|
-
beginDeleteAndWait(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsDeleteOptionalParams): Promise<void>;
|
|
443
|
-
get(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsGetOptionalParams): Promise<BandwidthSettingsGetResponse>;
|
|
444
|
-
listByManager(resourceGroupName: string, managerName: string, options?: BandwidthSettingsListByManagerOptionalParams): PagedAsyncIterableIterator<BandwidthSetting>;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
// @public
|
|
448
|
-
export interface BandwidthSettingsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
449
|
-
resumeFrom?: string;
|
|
450
|
-
updateIntervalInMs?: number;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
// @public
|
|
454
|
-
export type BandwidthSettingsCreateOrUpdateResponse = BandwidthSetting;
|
|
455
|
-
|
|
456
|
-
// @public
|
|
457
|
-
export interface BandwidthSettingsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
458
|
-
resumeFrom?: string;
|
|
459
|
-
updateIntervalInMs?: number;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
// @public
|
|
463
|
-
export interface BandwidthSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
// @public
|
|
467
|
-
export type BandwidthSettingsGetResponse = BandwidthSetting;
|
|
468
|
-
|
|
469
|
-
// @public
|
|
470
|
-
export interface BandwidthSettingsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
// @public
|
|
474
|
-
export type BandwidthSettingsListByManagerResponse = BandwidthSettingList;
|
|
475
|
-
|
|
476
|
-
// @public
|
|
477
|
-
export interface BaseModel {
|
|
478
|
-
readonly id?: string;
|
|
479
|
-
kind?: "Series8000";
|
|
480
|
-
readonly name?: string;
|
|
481
|
-
readonly type?: string;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
// @public
|
|
485
|
-
export interface ChapSettings {
|
|
486
|
-
initiatorSecret?: AsymmetricEncryptedSecret;
|
|
487
|
-
initiatorUser?: string;
|
|
488
|
-
targetSecret?: AsymmetricEncryptedSecret;
|
|
489
|
-
targetUser?: string;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface ClearAlertRequest {
|
|
494
|
-
alerts: string[];
|
|
495
|
-
resolutionMessage?: string;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
// @public
|
|
499
|
-
export interface CloneRequest {
|
|
500
|
-
backupElement: BackupElement;
|
|
501
|
-
targetAccessControlRecordIds: string[];
|
|
502
|
-
targetDeviceId: string;
|
|
503
|
-
targetVolumeName: string;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
// @public
|
|
507
|
-
export interface CloudAppliance {
|
|
508
|
-
isVnetDnsConfigured?: boolean;
|
|
509
|
-
isVnetExpressConfigured?: boolean;
|
|
510
|
-
modelNumber?: string;
|
|
511
|
-
name: string;
|
|
512
|
-
storageAccountName?: string;
|
|
513
|
-
storageAccountType?: string;
|
|
514
|
-
subnetName?: string;
|
|
515
|
-
vmImageName?: string;
|
|
516
|
-
vmType?: string;
|
|
517
|
-
vnetName?: string;
|
|
518
|
-
vnetRegion: string;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
// @public
|
|
522
|
-
export interface CloudApplianceConfiguration extends BaseModel {
|
|
523
|
-
acsConfiguration: AcsConfiguration;
|
|
524
|
-
cloudPlatform: string;
|
|
525
|
-
modelNumber: string;
|
|
526
|
-
supportedRegions: string[];
|
|
527
|
-
supportedStorageAccountTypes: string[];
|
|
528
|
-
supportedVmImages: VmImage[];
|
|
529
|
-
supportedVmTypes: string[];
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
// @public
|
|
533
|
-
export interface CloudApplianceConfigurationList {
|
|
534
|
-
value: CloudApplianceConfiguration[];
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
// @public
|
|
538
|
-
export interface CloudAppliances {
|
|
539
|
-
beginProvision(resourceGroupName: string, managerName: string, parameters: CloudAppliance, options?: CloudAppliancesProvisionOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
540
|
-
beginProvisionAndWait(resourceGroupName: string, managerName: string, parameters: CloudAppliance, options?: CloudAppliancesProvisionOptionalParams): Promise<void>;
|
|
541
|
-
listSupportedConfigurations(resourceGroupName: string, managerName: string, options?: CloudAppliancesListSupportedConfigurationsOptionalParams): PagedAsyncIterableIterator<CloudApplianceConfiguration>;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
// @public
|
|
545
|
-
export interface CloudApplianceSettings {
|
|
546
|
-
channelIntegrityKey?: AsymmetricEncryptedSecret;
|
|
547
|
-
serviceDataEncryptionKey?: AsymmetricEncryptedSecret;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
// @public
|
|
551
|
-
export interface CloudAppliancesListSupportedConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
// @public
|
|
555
|
-
export type CloudAppliancesListSupportedConfigurationsResponse = CloudApplianceConfigurationList;
|
|
556
|
-
|
|
557
|
-
// @public
|
|
558
|
-
export interface CloudAppliancesProvisionOptionalParams extends coreClient.OperationOptions {
|
|
559
|
-
resumeFrom?: string;
|
|
560
|
-
updateIntervalInMs?: number;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
// @public
|
|
564
|
-
export interface ConfigureDeviceRequest extends BaseModel {
|
|
565
|
-
currentDeviceName: string;
|
|
566
|
-
dnsSettings?: SecondaryDNSSettings;
|
|
567
|
-
friendlyName: string;
|
|
568
|
-
networkInterfaceData0Settings?: NetworkInterfaceData0Settings;
|
|
569
|
-
timeZone: string;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
// @public
|
|
573
|
-
export type ControllerId = "Unknown" | "None" | "Controller0" | "Controller1";
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export type ControllerPowerStateAction = "Start" | "Restart" | "Shutdown";
|
|
577
|
-
|
|
578
|
-
// @public
|
|
579
|
-
export interface ControllerPowerStateChangeRequest extends BaseModel {
|
|
580
|
-
action: ControllerPowerStateAction;
|
|
581
|
-
activeController: ControllerId;
|
|
582
|
-
controller0State: ControllerStatus;
|
|
583
|
-
controller1State: ControllerStatus;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
// @public
|
|
587
|
-
export type ControllerStatus = "NotPresent" | "PoweredOff" | "Ok" | "Recovering" | "Warning" | "Failure";
|
|
588
|
-
|
|
589
|
-
// @public
|
|
590
|
-
export interface DataStatistics {
|
|
591
|
-
cloudData?: number;
|
|
592
|
-
processedData?: number;
|
|
593
|
-
throughput?: number;
|
|
594
|
-
totalData?: number;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
// @public
|
|
598
|
-
export type DayOfWeek = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
599
|
-
|
|
600
|
-
// @public
|
|
601
|
-
export interface Device extends BaseModel {
|
|
602
|
-
activationTime: Date;
|
|
603
|
-
activeController: ControllerId;
|
|
604
|
-
agentGroupVersion?: number;
|
|
605
|
-
availableLocalStorageInBytes?: number;
|
|
606
|
-
availableTieredStorageInBytes?: number;
|
|
607
|
-
culture: string;
|
|
608
|
-
details?: DeviceDetails;
|
|
609
|
-
deviceConfigurationStatus: DeviceConfigurationStatus;
|
|
610
|
-
deviceDescription: string;
|
|
611
|
-
deviceLocation?: string;
|
|
612
|
-
deviceSoftwareVersion: string;
|
|
613
|
-
deviceType: DeviceType;
|
|
614
|
-
friendlyName: string;
|
|
615
|
-
friendlySoftwareName?: string;
|
|
616
|
-
friendlySoftwareVersion: string;
|
|
617
|
-
modelDescription: string;
|
|
618
|
-
networkInterfaceCardCount?: number;
|
|
619
|
-
provisionedLocalStorageInBytes?: number;
|
|
620
|
-
provisionedTieredStorageInBytes?: number;
|
|
621
|
-
provisionedVolumeSizeInBytes?: number;
|
|
622
|
-
rolloverDetails?: DeviceRolloverDetails;
|
|
623
|
-
serialNumber: string;
|
|
624
|
-
status: DeviceStatus;
|
|
625
|
-
targetIqn: string;
|
|
626
|
-
totalTieredStorageInBytes?: number;
|
|
627
|
-
usingStorageInBytes?: number;
|
|
628
|
-
readonly virtualMachineApiType?: VirtualMachineApiType;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
// @public
|
|
632
|
-
export type DeviceConfigurationStatus = "Complete" | "Pending";
|
|
633
|
-
|
|
634
|
-
// @public
|
|
635
|
-
export interface DeviceDetails {
|
|
636
|
-
endpointCount?: number;
|
|
637
|
-
volumeContainerCount?: number;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
// @public
|
|
641
|
-
export interface DeviceList {
|
|
642
|
-
value: Device[];
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
// @public
|
|
646
|
-
export interface DevicePatch {
|
|
647
|
-
deviceDescription?: string;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
// @public
|
|
651
|
-
export interface DeviceRolloverDetails {
|
|
652
|
-
authorizationEligibility?: AuthorizationEligibility;
|
|
653
|
-
authorizationStatus?: AuthorizationStatus;
|
|
654
|
-
inEligibilityReason?: InEligibilityCategory;
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
// @public
|
|
658
|
-
export interface Devices {
|
|
659
|
-
authorizeForServiceEncryptionKeyRollover(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesAuthorizeForServiceEncryptionKeyRolloverOptionalParams): Promise<void>;
|
|
660
|
-
beginConfigure(resourceGroupName: string, managerName: string, parameters: ConfigureDeviceRequest, options?: DevicesConfigureOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
661
|
-
beginConfigureAndWait(resourceGroupName: string, managerName: string, parameters: ConfigureDeviceRequest, options?: DevicesConfigureOptionalParams): Promise<void>;
|
|
662
|
-
beginDeactivate(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeactivateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
663
|
-
beginDeactivateAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeactivateOptionalParams): Promise<void>;
|
|
664
|
-
beginDelete(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
665
|
-
beginDeleteAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeleteOptionalParams): Promise<void>;
|
|
666
|
-
beginFailover(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: FailoverRequest, options?: DevicesFailoverOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
667
|
-
beginFailoverAndWait(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: FailoverRequest, options?: DevicesFailoverOptionalParams): Promise<void>;
|
|
668
|
-
beginInstallUpdates(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesInstallUpdatesOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
669
|
-
beginInstallUpdatesAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesInstallUpdatesOptionalParams): Promise<void>;
|
|
670
|
-
beginScanForUpdates(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesScanForUpdatesOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
671
|
-
beginScanForUpdatesAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesScanForUpdatesOptionalParams): Promise<void>;
|
|
672
|
-
get(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesGetOptionalParams): Promise<DevicesGetResponse>;
|
|
673
|
-
getUpdateSummary(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesGetUpdateSummaryOptionalParams): Promise<DevicesGetUpdateSummaryResponse>;
|
|
674
|
-
listByManager(resourceGroupName: string, managerName: string, options?: DevicesListByManagerOptionalParams): PagedAsyncIterableIterator<Device>;
|
|
675
|
-
listFailoverSets(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesListFailoverSetsOptionalParams): PagedAsyncIterableIterator<FailoverSet>;
|
|
676
|
-
listFailoverTargets(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: ListFailoverTargetsRequest, options?: DevicesListFailoverTargetsOptionalParams): PagedAsyncIterableIterator<FailoverTarget>;
|
|
677
|
-
listMetricDefinition(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
678
|
-
listMetrics(deviceName: string, resourceGroupName: string, managerName: string, filter: string, options?: DevicesListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
679
|
-
update(deviceName: string, resourceGroupName: string, managerName: string, parameters: DevicePatch, options?: DevicesUpdateOptionalParams): Promise<DevicesUpdateResponse>;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
// @public
|
|
683
|
-
export interface DevicesAuthorizeForServiceEncryptionKeyRolloverOptionalParams extends coreClient.OperationOptions {
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
// @public
|
|
687
|
-
export interface DevicesConfigureOptionalParams extends coreClient.OperationOptions {
|
|
688
|
-
resumeFrom?: string;
|
|
689
|
-
updateIntervalInMs?: number;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
// @public
|
|
693
|
-
export interface DevicesDeactivateOptionalParams extends coreClient.OperationOptions {
|
|
694
|
-
resumeFrom?: string;
|
|
695
|
-
updateIntervalInMs?: number;
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
// @public
|
|
699
|
-
export interface DevicesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
700
|
-
resumeFrom?: string;
|
|
701
|
-
updateIntervalInMs?: number;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
// @public
|
|
705
|
-
export interface DeviceSettings {
|
|
706
|
-
beginCreateOrUpdateAlertSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: AlertSettings, options?: DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsCreateOrUpdateAlertSettingsResponse>, DeviceSettingsCreateOrUpdateAlertSettingsResponse>>;
|
|
707
|
-
beginCreateOrUpdateAlertSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: AlertSettings, options?: DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams): Promise<DeviceSettingsCreateOrUpdateAlertSettingsResponse>;
|
|
708
|
-
beginCreateOrUpdateTimeSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: TimeSettings, options?: DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsCreateOrUpdateTimeSettingsResponse>, DeviceSettingsCreateOrUpdateTimeSettingsResponse>>;
|
|
709
|
-
beginCreateOrUpdateTimeSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: TimeSettings, options?: DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams): Promise<DeviceSettingsCreateOrUpdateTimeSettingsResponse>;
|
|
710
|
-
beginSyncRemotemanagementCertificate(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsSyncRemotemanagementCertificateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
711
|
-
beginSyncRemotemanagementCertificateAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsSyncRemotemanagementCertificateOptionalParams): Promise<void>;
|
|
712
|
-
beginUpdateNetworkSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: NetworkSettingsPatch, options?: DeviceSettingsUpdateNetworkSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsUpdateNetworkSettingsResponse>, DeviceSettingsUpdateNetworkSettingsResponse>>;
|
|
713
|
-
beginUpdateNetworkSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: NetworkSettingsPatch, options?: DeviceSettingsUpdateNetworkSettingsOptionalParams): Promise<DeviceSettingsUpdateNetworkSettingsResponse>;
|
|
714
|
-
beginUpdateSecuritySettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: SecuritySettingsPatch, options?: DeviceSettingsUpdateSecuritySettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsUpdateSecuritySettingsResponse>, DeviceSettingsUpdateSecuritySettingsResponse>>;
|
|
715
|
-
beginUpdateSecuritySettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: SecuritySettingsPatch, options?: DeviceSettingsUpdateSecuritySettingsOptionalParams): Promise<DeviceSettingsUpdateSecuritySettingsResponse>;
|
|
716
|
-
getAlertSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetAlertSettingsOptionalParams): Promise<DeviceSettingsGetAlertSettingsResponse>;
|
|
717
|
-
getNetworkSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetNetworkSettingsOptionalParams): Promise<DeviceSettingsGetNetworkSettingsResponse>;
|
|
718
|
-
getSecuritySettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetSecuritySettingsOptionalParams): Promise<DeviceSettingsGetSecuritySettingsResponse>;
|
|
719
|
-
getTimeSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetTimeSettingsOptionalParams): Promise<DeviceSettingsGetTimeSettingsResponse>;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
// @public
|
|
723
|
-
export interface DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams extends coreClient.OperationOptions {
|
|
724
|
-
resumeFrom?: string;
|
|
725
|
-
updateIntervalInMs?: number;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
// @public
|
|
729
|
-
export type DeviceSettingsCreateOrUpdateAlertSettingsResponse = AlertSettings;
|
|
730
|
-
|
|
731
|
-
// @public
|
|
732
|
-
export interface DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams extends coreClient.OperationOptions {
|
|
733
|
-
resumeFrom?: string;
|
|
734
|
-
updateIntervalInMs?: number;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
// @public
|
|
738
|
-
export type DeviceSettingsCreateOrUpdateTimeSettingsResponse = TimeSettings;
|
|
739
|
-
|
|
740
|
-
// @public
|
|
741
|
-
export interface DeviceSettingsGetAlertSettingsOptionalParams extends coreClient.OperationOptions {
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
// @public
|
|
745
|
-
export type DeviceSettingsGetAlertSettingsResponse = AlertSettings;
|
|
746
|
-
|
|
747
|
-
// @public
|
|
748
|
-
export interface DeviceSettingsGetNetworkSettingsOptionalParams extends coreClient.OperationOptions {
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
// @public
|
|
752
|
-
export type DeviceSettingsGetNetworkSettingsResponse = NetworkSettings;
|
|
753
|
-
|
|
754
|
-
// @public
|
|
755
|
-
export interface DeviceSettingsGetSecuritySettingsOptionalParams extends coreClient.OperationOptions {
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
// @public
|
|
759
|
-
export type DeviceSettingsGetSecuritySettingsResponse = SecuritySettings;
|
|
760
|
-
|
|
761
|
-
// @public
|
|
762
|
-
export interface DeviceSettingsGetTimeSettingsOptionalParams extends coreClient.OperationOptions {
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
// @public
|
|
766
|
-
export type DeviceSettingsGetTimeSettingsResponse = TimeSettings;
|
|
767
|
-
|
|
768
|
-
// @public
|
|
769
|
-
export interface DeviceSettingsSyncRemotemanagementCertificateOptionalParams extends coreClient.OperationOptions {
|
|
770
|
-
resumeFrom?: string;
|
|
771
|
-
updateIntervalInMs?: number;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
// @public
|
|
775
|
-
export interface DeviceSettingsUpdateNetworkSettingsOptionalParams extends coreClient.OperationOptions {
|
|
776
|
-
resumeFrom?: string;
|
|
777
|
-
updateIntervalInMs?: number;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
// @public
|
|
781
|
-
export type DeviceSettingsUpdateNetworkSettingsResponse = NetworkSettings;
|
|
782
|
-
|
|
783
|
-
// @public
|
|
784
|
-
export interface DeviceSettingsUpdateSecuritySettingsOptionalParams extends coreClient.OperationOptions {
|
|
785
|
-
resumeFrom?: string;
|
|
786
|
-
updateIntervalInMs?: number;
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
// @public
|
|
790
|
-
export type DeviceSettingsUpdateSecuritySettingsResponse = SecuritySettings;
|
|
791
|
-
|
|
792
|
-
// @public
|
|
793
|
-
export interface DevicesFailoverOptionalParams extends coreClient.OperationOptions {
|
|
794
|
-
resumeFrom?: string;
|
|
795
|
-
updateIntervalInMs?: number;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
// @public
|
|
799
|
-
export interface DevicesGetOptionalParams extends coreClient.OperationOptions {
|
|
800
|
-
expand?: string;
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
// @public
|
|
804
|
-
export type DevicesGetResponse = Device;
|
|
805
|
-
|
|
806
|
-
// @public
|
|
807
|
-
export interface DevicesGetUpdateSummaryOptionalParams extends coreClient.OperationOptions {
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
// @public
|
|
811
|
-
export type DevicesGetUpdateSummaryResponse = Updates;
|
|
812
|
-
|
|
813
|
-
// @public
|
|
814
|
-
export interface DevicesInstallUpdatesOptionalParams extends coreClient.OperationOptions {
|
|
815
|
-
resumeFrom?: string;
|
|
816
|
-
updateIntervalInMs?: number;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
// @public
|
|
820
|
-
export interface DevicesListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
821
|
-
expand?: string;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
// @public
|
|
825
|
-
export type DevicesListByManagerResponse = DeviceList;
|
|
826
|
-
|
|
827
|
-
// @public
|
|
828
|
-
export interface DevicesListFailoverSetsOptionalParams extends coreClient.OperationOptions {
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
// @public
|
|
832
|
-
export type DevicesListFailoverSetsResponse = FailoverSetsList;
|
|
833
|
-
|
|
834
|
-
// @public
|
|
835
|
-
export interface DevicesListFailoverTargetsOptionalParams extends coreClient.OperationOptions {
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
// @public
|
|
839
|
-
export type DevicesListFailoverTargetsResponse = FailoverTargetsList;
|
|
840
|
-
|
|
841
|
-
// @public
|
|
842
|
-
export interface DevicesListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
// @public
|
|
846
|
-
export type DevicesListMetricDefinitionResponse = MetricDefinitionList;
|
|
847
|
-
|
|
848
|
-
// @public
|
|
849
|
-
export interface DevicesListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export type DevicesListMetricsResponse = MetricList;
|
|
854
|
-
|
|
855
|
-
// @public
|
|
856
|
-
export interface DevicesScanForUpdatesOptionalParams extends coreClient.OperationOptions {
|
|
857
|
-
resumeFrom?: string;
|
|
858
|
-
updateIntervalInMs?: number;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
// @public
|
|
862
|
-
export type DeviceStatus = "Unknown" | "Online" | "Offline" | "Deactivated" | "RequiresAttention" | "MaintenanceMode" | "Creating" | "Provisioning" | "Deactivating" | "Deleted" | "ReadyToSetup";
|
|
863
|
-
|
|
864
|
-
// @public
|
|
865
|
-
export interface DevicesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
// @public
|
|
869
|
-
export type DevicesUpdateResponse = Device;
|
|
870
|
-
|
|
871
|
-
// @public
|
|
872
|
-
export type DeviceType = "Invalid" | "Series8000VirtualAppliance" | "Series8000PhysicalAppliance";
|
|
873
|
-
|
|
874
|
-
// @public
|
|
875
|
-
export interface DimensionFilter {
|
|
876
|
-
name?: string;
|
|
877
|
-
values?: string;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
// @public
|
|
881
|
-
export interface DNSSettings {
|
|
882
|
-
primaryDnsServer?: string;
|
|
883
|
-
primaryIpv6DnsServer?: string;
|
|
884
|
-
secondaryDnsServers?: string[];
|
|
885
|
-
secondaryIpv6DnsServers?: string[];
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
// @public
|
|
889
|
-
export type EncryptionAlgorithm = "None" | "AES256" | "RSAES_PKCS1_v_1_5";
|
|
890
|
-
|
|
891
|
-
// @public
|
|
892
|
-
export interface EncryptionSettings extends BaseModel {
|
|
893
|
-
encryptionStatus: EncryptionStatus;
|
|
894
|
-
keyRolloverStatus: KeyRolloverStatus;
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
// @public
|
|
898
|
-
export type EncryptionStatus = "Enabled" | "Disabled";
|
|
899
|
-
|
|
900
|
-
// @public
|
|
901
|
-
export interface FailoverRequest {
|
|
902
|
-
targetDeviceId?: string;
|
|
903
|
-
volumeContainers?: string[];
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
// @public
|
|
907
|
-
export interface FailoverSet {
|
|
908
|
-
eligibilityResult?: FailoverSetEligibilityResult;
|
|
909
|
-
volumeContainers?: VolumeContainerFailoverMetadata[];
|
|
910
|
-
}
|
|
911
|
-
|
|
912
|
-
// @public
|
|
913
|
-
export interface FailoverSetEligibilityResult {
|
|
914
|
-
errorMessage?: string;
|
|
915
|
-
isEligibleForFailover?: boolean;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
// @public
|
|
919
|
-
export interface FailoverSetsList {
|
|
920
|
-
value?: FailoverSet[];
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
// @public
|
|
924
|
-
export interface FailoverTarget {
|
|
925
|
-
availableLocalStorageInBytes?: number;
|
|
926
|
-
availableTieredStorageInBytes?: number;
|
|
927
|
-
dataContainersCount?: number;
|
|
928
|
-
deviceId?: string;
|
|
929
|
-
deviceLocation?: string;
|
|
930
|
-
deviceSoftwareVersion?: string;
|
|
931
|
-
deviceStatus?: DeviceStatus;
|
|
932
|
-
eligibilityResult?: TargetEligibilityResult;
|
|
933
|
-
friendlyDeviceSoftwareVersion?: string;
|
|
934
|
-
modelDescription?: string;
|
|
935
|
-
volumesCount?: number;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
// @public
|
|
939
|
-
export interface FailoverTargetsList {
|
|
940
|
-
value?: FailoverTarget[];
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
// @public
|
|
944
|
-
export interface Feature {
|
|
945
|
-
name: string;
|
|
946
|
-
status: FeatureSupportStatus;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
// @public
|
|
950
|
-
export interface FeatureFilter {
|
|
951
|
-
deviceId?: string;
|
|
952
|
-
}
|
|
953
|
-
|
|
954
|
-
// @public
|
|
955
|
-
export interface FeatureList {
|
|
956
|
-
value: Feature[];
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
// @public
|
|
960
|
-
export type FeatureSupportStatus = "NotAvailable" | "UnsupportedDeviceVersion" | "Supported";
|
|
961
|
-
|
|
962
|
-
// @public
|
|
963
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
964
|
-
|
|
965
|
-
// @public
|
|
966
|
-
export interface HardwareComponent {
|
|
967
|
-
componentId: string;
|
|
968
|
-
displayName: string;
|
|
969
|
-
status: HardwareComponentStatus;
|
|
970
|
-
statusDisplayName: string;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
// @public
|
|
974
|
-
export interface HardwareComponentGroup extends BaseModel {
|
|
975
|
-
components: HardwareComponent[];
|
|
976
|
-
displayName: string;
|
|
977
|
-
lastUpdatedTime: Date;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
// @public
|
|
981
|
-
export interface HardwareComponentGroupList {
|
|
982
|
-
value: HardwareComponentGroup[];
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
// @public
|
|
986
|
-
export interface HardwareComponentGroups {
|
|
987
|
-
beginChangeControllerPowerState(deviceName: string, hardwareComponentGroupName: string, resourceGroupName: string, managerName: string, parameters: ControllerPowerStateChangeRequest, options?: HardwareComponentGroupsChangeControllerPowerStateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
988
|
-
beginChangeControllerPowerStateAndWait(deviceName: string, hardwareComponentGroupName: string, resourceGroupName: string, managerName: string, parameters: ControllerPowerStateChangeRequest, options?: HardwareComponentGroupsChangeControllerPowerStateOptionalParams): Promise<void>;
|
|
989
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: HardwareComponentGroupsListByDeviceOptionalParams): PagedAsyncIterableIterator<HardwareComponentGroup>;
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
// @public
|
|
993
|
-
export interface HardwareComponentGroupsChangeControllerPowerStateOptionalParams extends coreClient.OperationOptions {
|
|
994
|
-
resumeFrom?: string;
|
|
995
|
-
updateIntervalInMs?: number;
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
// @public
|
|
999
|
-
export interface HardwareComponentGroupsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
// @public
|
|
1003
|
-
export type HardwareComponentGroupsListByDeviceResponse = HardwareComponentGroupList;
|
|
1004
|
-
|
|
1005
|
-
// @public
|
|
1006
|
-
export type HardwareComponentStatus = "Unknown" | "NotPresent" | "PoweredOff" | "Ok" | "Recovering" | "Warning" | "Failure";
|
|
1007
|
-
|
|
1008
|
-
// @public
|
|
1009
|
-
export type InEligibilityCategory = "DeviceNotOnline" | "NotSupportedAppliance" | "RolloverPending";
|
|
1010
|
-
|
|
1011
|
-
// @public
|
|
1012
|
-
export type IscsiAndCloudStatus = "Disabled" | "IscsiEnabled" | "CloudEnabled" | "IscsiAndCloudEnabled";
|
|
1013
|
-
|
|
1014
|
-
// @public
|
|
1015
|
-
export interface Job extends BaseModel {
|
|
1016
|
-
backupPointInTime?: Date;
|
|
1017
|
-
backupType?: BackupType;
|
|
1018
|
-
dataStats?: DataStatistics;
|
|
1019
|
-
deviceId?: string;
|
|
1020
|
-
endTime?: Date;
|
|
1021
|
-
entityLabel?: string;
|
|
1022
|
-
entityType?: string;
|
|
1023
|
-
error?: JobErrorDetails;
|
|
1024
|
-
isCancellable?: boolean;
|
|
1025
|
-
jobStages?: JobStage[];
|
|
1026
|
-
jobType?: JobType;
|
|
1027
|
-
percentComplete: number;
|
|
1028
|
-
sourceDeviceId?: string;
|
|
1029
|
-
startTime?: Date;
|
|
1030
|
-
status: JobStatus;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
// @public
|
|
1034
|
-
export interface JobErrorDetails {
|
|
1035
|
-
code: string;
|
|
1036
|
-
errorDetails?: JobErrorItem[];
|
|
1037
|
-
message: string;
|
|
1038
|
-
}
|
|
1039
|
-
|
|
1040
|
-
// @public
|
|
1041
|
-
export interface JobErrorItem {
|
|
1042
|
-
code: string;
|
|
1043
|
-
message: string;
|
|
1044
|
-
recommendations?: string[];
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
// @public
|
|
1048
|
-
export interface JobFilter {
|
|
1049
|
-
jobType?: string;
|
|
1050
|
-
startTime?: Date;
|
|
1051
|
-
status?: string;
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
// @public
|
|
1055
|
-
export interface JobList {
|
|
1056
|
-
nextLink?: string;
|
|
1057
|
-
value: Job[];
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
// @public
|
|
1061
|
-
export interface Jobs {
|
|
1062
|
-
beginCancel(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsCancelOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1063
|
-
beginCancelAndWait(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsCancelOptionalParams): Promise<void>;
|
|
1064
|
-
get(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsGetOptionalParams): Promise<JobsGetResponse>;
|
|
1065
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: JobsListByDeviceOptionalParams): PagedAsyncIterableIterator<Job>;
|
|
1066
|
-
listByManager(resourceGroupName: string, managerName: string, options?: JobsListByManagerOptionalParams): PagedAsyncIterableIterator<Job>;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
// @public
|
|
1070
|
-
export interface JobsCancelOptionalParams extends coreClient.OperationOptions {
|
|
1071
|
-
resumeFrom?: string;
|
|
1072
|
-
updateIntervalInMs?: number;
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
// @public
|
|
1076
|
-
export interface JobsGetOptionalParams extends coreClient.OperationOptions {
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
// @public
|
|
1080
|
-
export type JobsGetResponse = Job;
|
|
1081
|
-
|
|
1082
|
-
// @public
|
|
1083
|
-
export interface JobsListByDeviceNextOptionalParams extends coreClient.OperationOptions {
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
// @public
|
|
1087
|
-
export type JobsListByDeviceNextResponse = JobList;
|
|
1088
|
-
|
|
1089
|
-
// @public
|
|
1090
|
-
export interface JobsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1091
|
-
filter?: string;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
// @public
|
|
1095
|
-
export type JobsListByDeviceResponse = JobList;
|
|
1096
|
-
|
|
1097
|
-
// @public
|
|
1098
|
-
export interface JobsListByManagerNextOptionalParams extends coreClient.OperationOptions {
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
// @public
|
|
1102
|
-
export type JobsListByManagerNextResponse = JobList;
|
|
1103
|
-
|
|
1104
|
-
// @public
|
|
1105
|
-
export interface JobsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
1106
|
-
filter?: string;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
// @public
|
|
1110
|
-
export type JobsListByManagerResponse = JobList;
|
|
1111
|
-
|
|
1112
|
-
// @public
|
|
1113
|
-
export interface JobStage {
|
|
1114
|
-
detail?: string;
|
|
1115
|
-
errorCode?: string;
|
|
1116
|
-
message?: string;
|
|
1117
|
-
stageStatus: JobStatus;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
// @public
|
|
1121
|
-
export type JobStatus = "Running" | "Succeeded" | "Failed" | "Canceled";
|
|
1122
|
-
|
|
1123
|
-
// @public
|
|
1124
|
-
export type JobType = "ScheduledBackup" | "ManualBackup" | "RestoreBackup" | "CloneVolume" | "FailoverVolumeContainers" | "CreateLocallyPinnedVolume" | "ModifyVolume" | "InstallUpdates" | "SupportPackageLogs" | "CreateCloudAppliance";
|
|
1125
|
-
|
|
1126
|
-
// @public
|
|
1127
|
-
export interface Key {
|
|
1128
|
-
activationKey: string;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
// @public
|
|
1132
|
-
export type KeyRolloverStatus = "Required" | "NotRequired";
|
|
1133
|
-
|
|
1134
|
-
// @public
|
|
1135
|
-
export interface ListFailoverTargetsRequest {
|
|
1136
|
-
volumeContainers?: string[];
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
// @public
|
|
1140
|
-
export interface Manager extends Resource {
|
|
1141
|
-
cisIntrinsicSettings?: ManagerIntrinsicSettings;
|
|
1142
|
-
etag?: string;
|
|
1143
|
-
provisioningState?: string;
|
|
1144
|
-
sku?: ManagerSku;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
// @public
|
|
1148
|
-
export interface ManagerExtendedInfo extends BaseModel {
|
|
1149
|
-
algorithm?: string;
|
|
1150
|
-
encryptionKey?: string;
|
|
1151
|
-
encryptionKeyThumbprint?: string;
|
|
1152
|
-
etag?: string;
|
|
1153
|
-
integrityKey?: string;
|
|
1154
|
-
portalCertificateThumbprint?: string;
|
|
1155
|
-
version?: string;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
// @public
|
|
1159
|
-
export interface ManagerIntrinsicSettings {
|
|
1160
|
-
type: ManagerType;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
// @public
|
|
1164
|
-
export interface ManagerList {
|
|
1165
|
-
value: Manager[];
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
// @public
|
|
1169
|
-
export interface ManagerPatch {
|
|
1170
|
-
tags?: {
|
|
1171
|
-
[propertyName: string]: string;
|
|
1172
|
-
};
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
// @public
|
|
1176
|
-
export interface Managers {
|
|
1177
|
-
createExtendedInfo(resourceGroupName: string, managerName: string, parameters: ManagerExtendedInfo, options?: ManagersCreateExtendedInfoOptionalParams): Promise<ManagersCreateExtendedInfoResponse>;
|
|
1178
|
-
createOrUpdate(resourceGroupName: string, managerName: string, parameters: Manager, options?: ManagersCreateOrUpdateOptionalParams): Promise<ManagersCreateOrUpdateResponse>;
|
|
1179
|
-
delete(resourceGroupName: string, managerName: string, options?: ManagersDeleteOptionalParams): Promise<void>;
|
|
1180
|
-
deleteExtendedInfo(resourceGroupName: string, managerName: string, options?: ManagersDeleteExtendedInfoOptionalParams): Promise<void>;
|
|
1181
|
-
get(resourceGroupName: string, managerName: string, options?: ManagersGetOptionalParams): Promise<ManagersGetResponse>;
|
|
1182
|
-
getActivationKey(resourceGroupName: string, managerName: string, options?: ManagersGetActivationKeyOptionalParams): Promise<ManagersGetActivationKeyResponse>;
|
|
1183
|
-
getDevicePublicEncryptionKey(deviceName: string, resourceGroupName: string, managerName: string, options?: ManagersGetDevicePublicEncryptionKeyOptionalParams): Promise<ManagersGetDevicePublicEncryptionKeyResponse>;
|
|
1184
|
-
getEncryptionSettings(resourceGroupName: string, managerName: string, options?: ManagersGetEncryptionSettingsOptionalParams): Promise<ManagersGetEncryptionSettingsResponse>;
|
|
1185
|
-
getExtendedInfo(resourceGroupName: string, managerName: string, options?: ManagersGetExtendedInfoOptionalParams): Promise<ManagersGetExtendedInfoResponse>;
|
|
1186
|
-
getPublicEncryptionKey(resourceGroupName: string, managerName: string, options?: ManagersGetPublicEncryptionKeyOptionalParams): Promise<ManagersGetPublicEncryptionKeyResponse>;
|
|
1187
|
-
list(options?: ManagersListOptionalParams): PagedAsyncIterableIterator<Manager>;
|
|
1188
|
-
listByResourceGroup(resourceGroupName: string, options?: ManagersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Manager>;
|
|
1189
|
-
listFeatureSupportStatus(resourceGroupName: string, managerName: string, options?: ManagersListFeatureSupportStatusOptionalParams): PagedAsyncIterableIterator<Feature>;
|
|
1190
|
-
listMetricDefinition(resourceGroupName: string, managerName: string, options?: ManagersListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1191
|
-
listMetrics(resourceGroupName: string, managerName: string, filter: string, options?: ManagersListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1192
|
-
regenerateActivationKey(resourceGroupName: string, managerName: string, options?: ManagersRegenerateActivationKeyOptionalParams): Promise<ManagersRegenerateActivationKeyResponse>;
|
|
1193
|
-
update(resourceGroupName: string, managerName: string, parameters: ManagerPatch, options?: ManagersUpdateOptionalParams): Promise<ManagersUpdateResponse>;
|
|
1194
|
-
updateExtendedInfo(resourceGroupName: string, managerName: string, ifMatch: string, parameters: ManagerExtendedInfo, options?: ManagersUpdateExtendedInfoOptionalParams): Promise<ManagersUpdateExtendedInfoResponse>;
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
// @public
|
|
1198
|
-
export interface ManagersCreateExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
// @public
|
|
1202
|
-
export type ManagersCreateExtendedInfoResponse = ManagerExtendedInfo;
|
|
1203
|
-
|
|
1204
|
-
// @public
|
|
1205
|
-
export interface ManagersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
// @public
|
|
1209
|
-
export type ManagersCreateOrUpdateResponse = Manager;
|
|
1210
|
-
|
|
1211
|
-
// @public
|
|
1212
|
-
export interface ManagersDeleteExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
|
-
// @public
|
|
1216
|
-
export interface ManagersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
// @public
|
|
1220
|
-
export interface ManagersGetActivationKeyOptionalParams extends coreClient.OperationOptions {
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
// @public
|
|
1224
|
-
export type ManagersGetActivationKeyResponse = Key;
|
|
1225
|
-
|
|
1226
|
-
// @public
|
|
1227
|
-
export interface ManagersGetDevicePublicEncryptionKeyOptionalParams extends coreClient.OperationOptions {
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1230
|
-
// @public
|
|
1231
|
-
export type ManagersGetDevicePublicEncryptionKeyResponse = PublicKey;
|
|
1232
|
-
|
|
1233
|
-
// @public
|
|
1234
|
-
export interface ManagersGetEncryptionSettingsOptionalParams extends coreClient.OperationOptions {
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
// @public
|
|
1238
|
-
export type ManagersGetEncryptionSettingsResponse = EncryptionSettings;
|
|
1239
|
-
|
|
1240
|
-
// @public
|
|
1241
|
-
export interface ManagersGetExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
// @public
|
|
1245
|
-
export type ManagersGetExtendedInfoResponse = ManagerExtendedInfo;
|
|
1246
|
-
|
|
1247
|
-
// @public
|
|
1248
|
-
export interface ManagersGetOptionalParams extends coreClient.OperationOptions {
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
// @public
|
|
1252
|
-
export interface ManagersGetPublicEncryptionKeyOptionalParams extends coreClient.OperationOptions {
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
// @public
|
|
1256
|
-
export type ManagersGetPublicEncryptionKeyResponse = SymmetricEncryptedSecret;
|
|
1257
|
-
|
|
1258
|
-
// @public
|
|
1259
|
-
export type ManagersGetResponse = Manager;
|
|
1260
|
-
|
|
1261
|
-
// @public
|
|
1262
|
-
export interface ManagerSku {
|
|
1263
|
-
name: "Standard";
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
// @public
|
|
1267
|
-
export interface ManagersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
// @public
|
|
1271
|
-
export type ManagersListByResourceGroupResponse = ManagerList;
|
|
1272
|
-
|
|
1273
|
-
// @public
|
|
1274
|
-
export interface ManagersListFeatureSupportStatusOptionalParams extends coreClient.OperationOptions {
|
|
1275
|
-
filter?: string;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
// @public
|
|
1279
|
-
export type ManagersListFeatureSupportStatusResponse = FeatureList;
|
|
1280
|
-
|
|
1281
|
-
// @public
|
|
1282
|
-
export interface ManagersListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
// @public
|
|
1286
|
-
export type ManagersListMetricDefinitionResponse = MetricDefinitionList;
|
|
1287
|
-
|
|
1288
|
-
// @public
|
|
1289
|
-
export interface ManagersListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
// @public
|
|
1293
|
-
export type ManagersListMetricsResponse = MetricList;
|
|
1294
|
-
|
|
1295
|
-
// @public
|
|
1296
|
-
export interface ManagersListOptionalParams extends coreClient.OperationOptions {
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
// @public
|
|
1300
|
-
export type ManagersListResponse = ManagerList;
|
|
1301
|
-
|
|
1302
|
-
// @public
|
|
1303
|
-
export interface ManagersRegenerateActivationKeyOptionalParams extends coreClient.OperationOptions {
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
// @public
|
|
1307
|
-
export type ManagersRegenerateActivationKeyResponse = Key;
|
|
1308
|
-
|
|
1309
|
-
// @public
|
|
1310
|
-
export interface ManagersUpdateExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
// @public
|
|
1314
|
-
export type ManagersUpdateExtendedInfoResponse = ManagerExtendedInfo;
|
|
1315
|
-
|
|
1316
|
-
// @public
|
|
1317
|
-
export interface ManagersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
// @public
|
|
1321
|
-
export type ManagersUpdateResponse = Manager;
|
|
1322
|
-
|
|
1323
|
-
// @public
|
|
1324
|
-
export type ManagerType = "GardaV1" | "HelsinkiV1";
|
|
1325
|
-
|
|
1326
|
-
// @public
|
|
1327
|
-
export type MetricAggregationType = "Average" | "Last" | "Maximum" | "Minimum" | "None" | "Total";
|
|
1328
|
-
|
|
1329
|
-
// @public
|
|
1330
|
-
export interface MetricAvailablity {
|
|
1331
|
-
retention?: string;
|
|
1332
|
-
timeGrain?: string;
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
// @public
|
|
1336
|
-
export interface MetricData {
|
|
1337
|
-
average?: number;
|
|
1338
|
-
count?: number;
|
|
1339
|
-
maximum?: number;
|
|
1340
|
-
minimum?: number;
|
|
1341
|
-
sum?: number;
|
|
1342
|
-
timeStamp?: Date;
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
// @public
|
|
1346
|
-
export interface MetricDefinition {
|
|
1347
|
-
category?: string;
|
|
1348
|
-
dimensions?: MetricDimension[];
|
|
1349
|
-
metricAvailabilities?: MetricAvailablity[];
|
|
1350
|
-
name?: MetricName;
|
|
1351
|
-
primaryAggregationType?: MetricAggregationType;
|
|
1352
|
-
resourceId?: string;
|
|
1353
|
-
type?: string;
|
|
1354
|
-
unit?: MetricUnit;
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
// @public
|
|
1358
|
-
export interface MetricDefinitionList {
|
|
1359
|
-
value?: MetricDefinition[];
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
// @public
|
|
1363
|
-
export interface MetricDimension {
|
|
1364
|
-
name?: string;
|
|
1365
|
-
value?: string;
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
// @public
|
|
1369
|
-
export interface MetricFilter {
|
|
1370
|
-
category: string;
|
|
1371
|
-
dimensions?: DimensionFilter;
|
|
1372
|
-
endTime?: Date;
|
|
1373
|
-
name?: MetricNameFilter;
|
|
1374
|
-
startTime?: Date;
|
|
1375
|
-
timeGrain?: string;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
// @public
|
|
1379
|
-
export interface MetricList {
|
|
1380
|
-
value?: Metrics[];
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
// @public
|
|
1384
|
-
export interface MetricName {
|
|
1385
|
-
localizedValue?: string;
|
|
1386
|
-
value?: string;
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
// @public
|
|
1390
|
-
export interface MetricNameFilter {
|
|
1391
|
-
value?: string;
|
|
1392
|
-
}
|
|
1393
|
-
|
|
1394
|
-
// @public
|
|
1395
|
-
export interface Metrics {
|
|
1396
|
-
dimensions?: MetricDimension[];
|
|
1397
|
-
endTime?: Date;
|
|
1398
|
-
name?: MetricName;
|
|
1399
|
-
primaryAggregation?: MetricAggregationType;
|
|
1400
|
-
resourceId?: string;
|
|
1401
|
-
startTime?: Date;
|
|
1402
|
-
timeGrain?: string;
|
|
1403
|
-
type?: string;
|
|
1404
|
-
unit?: MetricUnit;
|
|
1405
|
-
values?: MetricData[];
|
|
1406
|
-
}
|
|
1407
|
-
|
|
1408
|
-
// @public
|
|
1409
|
-
export type MetricUnit = "Bytes" | "BytesPerSecond" | "Count" | "CountPerSecond" | "Percent" | "Seconds";
|
|
1410
|
-
|
|
1411
|
-
// @public
|
|
1412
|
-
export type MonitoringStatus = "Enabled" | "Disabled";
|
|
1413
|
-
|
|
1414
|
-
// @public
|
|
1415
|
-
export type NetInterfaceId = "Invalid" | "Data0" | "Data1" | "Data2" | "Data3" | "Data4" | "Data5";
|
|
1416
|
-
|
|
1417
|
-
// @public
|
|
1418
|
-
export type NetInterfaceStatus = "Enabled" | "Disabled";
|
|
1419
|
-
|
|
1420
|
-
// @public
|
|
1421
|
-
export interface NetworkAdapterList {
|
|
1422
|
-
value: NetworkAdapters[];
|
|
1423
|
-
}
|
|
1424
|
-
|
|
1425
|
-
// @public
|
|
1426
|
-
export interface NetworkAdapters {
|
|
1427
|
-
interfaceId: NetInterfaceId;
|
|
1428
|
-
iscsiAndCloudStatus: IscsiAndCloudStatus;
|
|
1429
|
-
isDefault?: boolean;
|
|
1430
|
-
mode: NetworkMode;
|
|
1431
|
-
netInterfaceStatus: NetInterfaceStatus;
|
|
1432
|
-
nicIpv4Settings?: NicIPv4;
|
|
1433
|
-
nicIpv6Settings?: NicIPv6;
|
|
1434
|
-
speed?: number;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
|
-
// @public
|
|
1438
|
-
export interface NetworkInterfaceData0Settings {
|
|
1439
|
-
controllerOneIp?: string;
|
|
1440
|
-
controllerZeroIp?: string;
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
// @public
|
|
1444
|
-
export type NetworkMode = "Invalid" | "IPV4" | "IPV6" | "BOTH";
|
|
1445
|
-
|
|
1446
|
-
// @public
|
|
1447
|
-
export interface NetworkSettings extends BaseModel {
|
|
1448
|
-
dnsSettings: DNSSettings;
|
|
1449
|
-
networkAdapters: NetworkAdapterList;
|
|
1450
|
-
webproxySettings: WebproxySettings;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
// @public
|
|
1454
|
-
export interface NetworkSettingsPatch {
|
|
1455
|
-
dnsSettings?: DNSSettings;
|
|
1456
|
-
networkAdapters?: NetworkAdapterList;
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
// @public
|
|
1460
|
-
export interface NicIPv4 {
|
|
1461
|
-
controller0Ipv4Address?: string;
|
|
1462
|
-
controller1Ipv4Address?: string;
|
|
1463
|
-
ipv4Address?: string;
|
|
1464
|
-
ipv4Gateway?: string;
|
|
1465
|
-
ipv4Netmask?: string;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
// @public
|
|
1469
|
-
export interface NicIPv6 {
|
|
1470
|
-
controller0Ipv6Address?: string;
|
|
1471
|
-
controller1Ipv6Address?: string;
|
|
1472
|
-
ipv6Address?: string;
|
|
1473
|
-
ipv6Gateway?: string;
|
|
1474
|
-
ipv6Prefix?: string;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
// @public
|
|
1478
|
-
export interface Operations {
|
|
1479
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<AvailableProviderOperation>;
|
|
1480
|
-
}
|
|
1481
|
-
|
|
1482
|
-
// @public
|
|
1483
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1484
|
-
}
|
|
1485
|
-
|
|
1486
|
-
// @public
|
|
1487
|
-
export type OperationsListNextResponse = AvailableProviderOperationList;
|
|
1488
|
-
|
|
1489
|
-
// @public
|
|
1490
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
// @public
|
|
1494
|
-
export type OperationsListResponse = AvailableProviderOperationList;
|
|
1495
|
-
|
|
1496
|
-
// @public
|
|
1497
|
-
export type OperationStatus = "None" | "Updating" | "Deleting" | "Restoring";
|
|
1498
|
-
|
|
1499
|
-
// @public
|
|
1500
|
-
export type OwnerShipStatus = "Owned" | "NotOwned";
|
|
1501
|
-
|
|
1502
|
-
// @public
|
|
1503
|
-
export interface PublicKey {
|
|
1504
|
-
key: string;
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
// @public
|
|
1508
|
-
export type RecurrenceType = "Minutes" | "Hourly" | "Daily" | "Weekly";
|
|
1509
|
-
|
|
1510
|
-
// @public
|
|
1511
|
-
export type RemoteManagementModeConfiguration = "Unknown" | "Disabled" | "HttpsEnabled" | "HttpsAndHttpEnabled";
|
|
1512
|
-
|
|
1513
|
-
// @public
|
|
1514
|
-
export interface RemoteManagementSettings {
|
|
1515
|
-
remoteManagementCertificate?: string;
|
|
1516
|
-
remoteManagementMode: RemoteManagementModeConfiguration;
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
// @public
|
|
1520
|
-
export interface RemoteManagementSettingsPatch {
|
|
1521
|
-
remoteManagementMode: RemoteManagementModeConfiguration;
|
|
1522
|
-
}
|
|
1523
|
-
|
|
1524
|
-
// @public
|
|
1525
|
-
export interface Resource {
|
|
1526
|
-
readonly id?: string;
|
|
1527
|
-
location: string;
|
|
1528
|
-
readonly name?: string;
|
|
1529
|
-
tags?: {
|
|
1530
|
-
[propertyName: string]: string;
|
|
1531
|
-
};
|
|
1532
|
-
readonly type?: string;
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
// @public
|
|
1536
|
-
export type ScheduledBackupStatus = "Disabled" | "Enabled";
|
|
1537
|
-
|
|
1538
|
-
// @public
|
|
1539
|
-
export interface ScheduleRecurrence {
|
|
1540
|
-
recurrenceType: RecurrenceType;
|
|
1541
|
-
recurrenceValue: number;
|
|
1542
|
-
weeklyDaysList?: DayOfWeek[];
|
|
1543
|
-
}
|
|
1544
|
-
|
|
1545
|
-
// @public
|
|
1546
|
-
export type ScheduleStatus = "Enabled" | "Disabled";
|
|
1547
|
-
|
|
1548
|
-
// @public
|
|
1549
|
-
export interface SecondaryDNSSettings {
|
|
1550
|
-
secondaryDnsServers?: string[];
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
// @public
|
|
1554
|
-
export interface SecuritySettings extends BaseModel {
|
|
1555
|
-
chapSettings: ChapSettings;
|
|
1556
|
-
remoteManagementSettings: RemoteManagementSettings;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
// @public
|
|
1560
|
-
export interface SecuritySettingsPatch {
|
|
1561
|
-
chapSettings?: ChapSettings;
|
|
1562
|
-
cloudApplianceSettings?: CloudApplianceSettings;
|
|
1563
|
-
deviceAdminPassword?: AsymmetricEncryptedSecret;
|
|
1564
|
-
remoteManagementSettings?: RemoteManagementSettingsPatch;
|
|
1565
|
-
snapshotPassword?: AsymmetricEncryptedSecret;
|
|
1566
|
-
}
|
|
1567
|
-
|
|
1568
|
-
// @public
|
|
1569
|
-
export interface SendTestAlertEmailRequest {
|
|
1570
|
-
emailList: string[];
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
|
-
// @public
|
|
1574
|
-
export type SslStatus = "Enabled" | "Disabled";
|
|
1575
|
-
|
|
1576
|
-
// @public
|
|
1577
|
-
export interface StorageAccountCredential extends BaseModel {
|
|
1578
|
-
accessKey?: AsymmetricEncryptedSecret;
|
|
1579
|
-
endPoint: string;
|
|
1580
|
-
sslStatus: SslStatus;
|
|
1581
|
-
readonly volumesCount?: number;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
// @public
|
|
1585
|
-
export interface StorageAccountCredentialList {
|
|
1586
|
-
value: StorageAccountCredential[];
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
|
-
// @public
|
|
1590
|
-
export interface StorageAccountCredentials {
|
|
1591
|
-
beginCreateOrUpdate(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, parameters: StorageAccountCredential, options?: StorageAccountCredentialsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountCredentialsCreateOrUpdateResponse>, StorageAccountCredentialsCreateOrUpdateResponse>>;
|
|
1592
|
-
beginCreateOrUpdateAndWait(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, parameters: StorageAccountCredential, options?: StorageAccountCredentialsCreateOrUpdateOptionalParams): Promise<StorageAccountCredentialsCreateOrUpdateResponse>;
|
|
1593
|
-
beginDelete(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1594
|
-
beginDeleteAndWait(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsDeleteOptionalParams): Promise<void>;
|
|
1595
|
-
get(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsGetOptionalParams): Promise<StorageAccountCredentialsGetResponse>;
|
|
1596
|
-
listByManager(resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsListByManagerOptionalParams): PagedAsyncIterableIterator<StorageAccountCredential>;
|
|
1597
|
-
}
|
|
1598
|
-
|
|
1599
|
-
// @public
|
|
1600
|
-
export interface StorageAccountCredentialsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1601
|
-
resumeFrom?: string;
|
|
1602
|
-
updateIntervalInMs?: number;
|
|
1603
|
-
}
|
|
1604
|
-
|
|
1605
|
-
// @public
|
|
1606
|
-
export type StorageAccountCredentialsCreateOrUpdateResponse = StorageAccountCredential;
|
|
1607
|
-
|
|
1608
|
-
// @public
|
|
1609
|
-
export interface StorageAccountCredentialsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1610
|
-
resumeFrom?: string;
|
|
1611
|
-
updateIntervalInMs?: number;
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
// @public
|
|
1615
|
-
export interface StorageAccountCredentialsGetOptionalParams extends coreClient.OperationOptions {
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
// @public
|
|
1619
|
-
export type StorageAccountCredentialsGetResponse = StorageAccountCredential;
|
|
1620
|
-
|
|
1621
|
-
// @public
|
|
1622
|
-
export interface StorageAccountCredentialsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
|
-
// @public
|
|
1626
|
-
export type StorageAccountCredentialsListByManagerResponse = StorageAccountCredentialList;
|
|
1627
|
-
|
|
1628
|
-
// @public (undocumented)
|
|
1629
|
-
export class StorSimple8000SeriesManagementClient extends coreClient.ServiceClient {
|
|
1630
|
-
// (undocumented)
|
|
1631
|
-
$host: string;
|
|
1632
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorSimple8000SeriesManagementClientOptionalParams);
|
|
1633
|
-
// (undocumented)
|
|
1634
|
-
accessControlRecords: AccessControlRecords;
|
|
1635
|
-
// (undocumented)
|
|
1636
|
-
alerts: Alerts;
|
|
1637
|
-
// (undocumented)
|
|
1638
|
-
apiVersion: string;
|
|
1639
|
-
// (undocumented)
|
|
1640
|
-
backupPolicies: BackupPolicies;
|
|
1641
|
-
// (undocumented)
|
|
1642
|
-
backups: Backups;
|
|
1643
|
-
// (undocumented)
|
|
1644
|
-
backupSchedules: BackupSchedules;
|
|
1645
|
-
// (undocumented)
|
|
1646
|
-
bandwidthSettings: BandwidthSettings;
|
|
1647
|
-
// (undocumented)
|
|
1648
|
-
cloudAppliances: CloudAppliances;
|
|
1649
|
-
// (undocumented)
|
|
1650
|
-
devices: Devices;
|
|
1651
|
-
// (undocumented)
|
|
1652
|
-
deviceSettings: DeviceSettings;
|
|
1653
|
-
// (undocumented)
|
|
1654
|
-
hardwareComponentGroups: HardwareComponentGroups;
|
|
1655
|
-
// (undocumented)
|
|
1656
|
-
jobs: Jobs;
|
|
1657
|
-
// (undocumented)
|
|
1658
|
-
managers: Managers;
|
|
1659
|
-
// (undocumented)
|
|
1660
|
-
operations: Operations;
|
|
1661
|
-
// (undocumented)
|
|
1662
|
-
storageAccountCredentials: StorageAccountCredentials;
|
|
1663
|
-
// (undocumented)
|
|
1664
|
-
subscriptionId: string;
|
|
1665
|
-
// (undocumented)
|
|
1666
|
-
volumeContainers: VolumeContainers;
|
|
1667
|
-
// (undocumented)
|
|
1668
|
-
volumes: Volumes;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
// @public
|
|
1672
|
-
export interface StorSimple8000SeriesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
1673
|
-
$host?: string;
|
|
1674
|
-
apiVersion?: string;
|
|
1675
|
-
endpoint?: string;
|
|
1676
|
-
}
|
|
1677
|
-
|
|
1678
|
-
// @public
|
|
1679
|
-
export interface SymmetricEncryptedSecret {
|
|
1680
|
-
encryptionAlgorithm: EncryptionAlgorithm;
|
|
1681
|
-
value: string;
|
|
1682
|
-
valueCertificateThumbprint?: string;
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
|
-
// @public
|
|
1686
|
-
export interface TargetEligibilityErrorMessage {
|
|
1687
|
-
message?: string;
|
|
1688
|
-
resolution?: string;
|
|
1689
|
-
resultCode?: TargetEligibilityResultCode;
|
|
1690
|
-
}
|
|
1691
|
-
|
|
1692
|
-
// @public
|
|
1693
|
-
export interface TargetEligibilityResult {
|
|
1694
|
-
eligibilityStatus?: TargetEligibilityStatus;
|
|
1695
|
-
messages?: TargetEligibilityErrorMessage[];
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
// @public
|
|
1699
|
-
export type TargetEligibilityResultCode = "TargetAndSourceCannotBeSameError" | "TargetIsNotOnlineError" | "TargetSourceIncompatibleVersionError" | "LocalToTieredVolumesConversionWarning" | "TargetInsufficientCapacityError" | "TargetInsufficientLocalVolumeMemoryError" | "TargetInsufficientTieredVolumeMemoryError";
|
|
1700
|
-
|
|
1701
|
-
// @public
|
|
1702
|
-
export type TargetEligibilityStatus = "NotEligible" | "Eligible";
|
|
1703
|
-
|
|
1704
|
-
// @public
|
|
1705
|
-
export interface Time {
|
|
1706
|
-
hours: number;
|
|
1707
|
-
minutes: number;
|
|
1708
|
-
seconds: number;
|
|
1709
|
-
}
|
|
1710
|
-
|
|
1711
|
-
// @public
|
|
1712
|
-
export interface TimeSettings extends BaseModel {
|
|
1713
|
-
primaryTimeServer?: string;
|
|
1714
|
-
secondaryTimeServer?: string[];
|
|
1715
|
-
timeZone: string;
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
// @public
|
|
1719
|
-
export interface Updates extends BaseModel {
|
|
1720
|
-
isUpdateInProgress?: boolean;
|
|
1721
|
-
lastUpdatedTime?: Date;
|
|
1722
|
-
maintenanceModeUpdatesAvailable?: boolean;
|
|
1723
|
-
regularUpdatesAvailable?: boolean;
|
|
1724
|
-
}
|
|
1725
|
-
|
|
1726
|
-
// @public
|
|
1727
|
-
export type VirtualMachineApiType = "Classic" | "Arm";
|
|
1728
|
-
|
|
1729
|
-
// @public
|
|
1730
|
-
export interface VmImage {
|
|
1731
|
-
name: string;
|
|
1732
|
-
offer: string;
|
|
1733
|
-
publisher: string;
|
|
1734
|
-
sku: string;
|
|
1735
|
-
version: string;
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
|
-
// @public
|
|
1739
|
-
export interface Volume extends BaseModel {
|
|
1740
|
-
accessControlRecordIds: string[];
|
|
1741
|
-
readonly backupPolicyIds?: string[];
|
|
1742
|
-
readonly backupStatus?: BackupStatus;
|
|
1743
|
-
monitoringStatus: MonitoringStatus;
|
|
1744
|
-
readonly operationStatus?: OperationStatus;
|
|
1745
|
-
sizeInBytes: number;
|
|
1746
|
-
readonly volumeContainerId?: string;
|
|
1747
|
-
volumeStatus: VolumeStatus;
|
|
1748
|
-
volumeType: VolumeType;
|
|
1749
|
-
}
|
|
1750
|
-
|
|
1751
|
-
// @public
|
|
1752
|
-
export interface VolumeContainer extends BaseModel {
|
|
1753
|
-
bandWidthRateInMbps?: number;
|
|
1754
|
-
bandwidthSettingId?: string;
|
|
1755
|
-
encryptionKey?: AsymmetricEncryptedSecret;
|
|
1756
|
-
readonly encryptionStatus?: EncryptionStatus;
|
|
1757
|
-
readonly ownerShipStatus?: OwnerShipStatus;
|
|
1758
|
-
storageAccountCredentialId: string;
|
|
1759
|
-
readonly totalCloudStorageUsageInBytes?: number;
|
|
1760
|
-
readonly volumeCount?: number;
|
|
1761
|
-
}
|
|
1762
|
-
|
|
1763
|
-
// @public
|
|
1764
|
-
export interface VolumeContainerFailoverMetadata {
|
|
1765
|
-
volumeContainerId?: string;
|
|
1766
|
-
volumes?: VolumeFailoverMetadata[];
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
// @public
|
|
1770
|
-
export interface VolumeContainerList {
|
|
1771
|
-
value: VolumeContainer[];
|
|
1772
|
-
}
|
|
1773
|
-
|
|
1774
|
-
// @public
|
|
1775
|
-
export interface VolumeContainers {
|
|
1776
|
-
beginCreateOrUpdate(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, parameters: VolumeContainer, options?: VolumeContainersCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<VolumeContainersCreateOrUpdateResponse>, VolumeContainersCreateOrUpdateResponse>>;
|
|
1777
|
-
beginCreateOrUpdateAndWait(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, parameters: VolumeContainer, options?: VolumeContainersCreateOrUpdateOptionalParams): Promise<VolumeContainersCreateOrUpdateResponse>;
|
|
1778
|
-
beginDelete(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1779
|
-
beginDeleteAndWait(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersDeleteOptionalParams): Promise<void>;
|
|
1780
|
-
get(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersGetOptionalParams): Promise<VolumeContainersGetResponse>;
|
|
1781
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersListByDeviceOptionalParams): PagedAsyncIterableIterator<VolumeContainer>;
|
|
1782
|
-
listMetricDefinition(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1783
|
-
listMetrics(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, filter: string, options?: VolumeContainersListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
|
-
// @public
|
|
1787
|
-
export interface VolumeContainersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1788
|
-
resumeFrom?: string;
|
|
1789
|
-
updateIntervalInMs?: number;
|
|
1790
|
-
}
|
|
1791
|
-
|
|
1792
|
-
// @public
|
|
1793
|
-
export type VolumeContainersCreateOrUpdateResponse = VolumeContainer;
|
|
1794
|
-
|
|
1795
|
-
// @public
|
|
1796
|
-
export interface VolumeContainersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1797
|
-
resumeFrom?: string;
|
|
1798
|
-
updateIntervalInMs?: number;
|
|
1799
|
-
}
|
|
1800
|
-
|
|
1801
|
-
// @public
|
|
1802
|
-
export interface VolumeContainersGetOptionalParams extends coreClient.OperationOptions {
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
// @public
|
|
1806
|
-
export type VolumeContainersGetResponse = VolumeContainer;
|
|
1807
|
-
|
|
1808
|
-
// @public
|
|
1809
|
-
export interface VolumeContainersListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
|
-
// @public
|
|
1813
|
-
export type VolumeContainersListByDeviceResponse = VolumeContainerList;
|
|
1814
|
-
|
|
1815
|
-
// @public
|
|
1816
|
-
export interface VolumeContainersListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
// @public
|
|
1820
|
-
export type VolumeContainersListMetricDefinitionResponse = MetricDefinitionList;
|
|
1821
|
-
|
|
1822
|
-
// @public
|
|
1823
|
-
export interface VolumeContainersListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
// @public
|
|
1827
|
-
export type VolumeContainersListMetricsResponse = MetricList;
|
|
1828
|
-
|
|
1829
|
-
// @public
|
|
1830
|
-
export interface VolumeFailoverMetadata {
|
|
1831
|
-
backupCreatedDate?: Date;
|
|
1832
|
-
backupElementId?: string;
|
|
1833
|
-
backupId?: string;
|
|
1834
|
-
backupPolicyId?: string;
|
|
1835
|
-
sizeInBytes?: number;
|
|
1836
|
-
volumeId?: string;
|
|
1837
|
-
volumeType?: VolumeType;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
// @public
|
|
1841
|
-
export interface VolumeList {
|
|
1842
|
-
value: Volume[];
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
|
-
// @public
|
|
1846
|
-
export interface Volumes {
|
|
1847
|
-
beginCreateOrUpdate(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, parameters: Volume, options?: VolumesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<VolumesCreateOrUpdateResponse>, VolumesCreateOrUpdateResponse>>;
|
|
1848
|
-
beginCreateOrUpdateAndWait(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, parameters: Volume, options?: VolumesCreateOrUpdateOptionalParams): Promise<VolumesCreateOrUpdateResponse>;
|
|
1849
|
-
beginDelete(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1850
|
-
beginDeleteAndWait(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesDeleteOptionalParams): Promise<void>;
|
|
1851
|
-
get(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesGetOptionalParams): Promise<VolumesGetResponse>;
|
|
1852
|
-
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: VolumesListByDeviceOptionalParams): PagedAsyncIterableIterator<Volume>;
|
|
1853
|
-
listByVolumeContainer(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumesListByVolumeContainerOptionalParams): PagedAsyncIterableIterator<Volume>;
|
|
1854
|
-
listMetricDefinition(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1855
|
-
listMetrics(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, filter: string, options?: VolumesListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1856
|
-
}
|
|
1857
|
-
|
|
1858
|
-
// @public
|
|
1859
|
-
export interface VolumesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1860
|
-
resumeFrom?: string;
|
|
1861
|
-
updateIntervalInMs?: number;
|
|
1862
|
-
}
|
|
1863
|
-
|
|
1864
|
-
// @public
|
|
1865
|
-
export type VolumesCreateOrUpdateResponse = Volume;
|
|
1866
|
-
|
|
1867
|
-
// @public
|
|
1868
|
-
export interface VolumesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1869
|
-
resumeFrom?: string;
|
|
1870
|
-
updateIntervalInMs?: number;
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
|
-
// @public
|
|
1874
|
-
export interface VolumesGetOptionalParams extends coreClient.OperationOptions {
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
|
-
// @public
|
|
1878
|
-
export type VolumesGetResponse = Volume;
|
|
1879
|
-
|
|
1880
|
-
// @public
|
|
1881
|
-
export interface VolumesListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1882
|
-
}
|
|
1883
|
-
|
|
1884
|
-
// @public
|
|
1885
|
-
export type VolumesListByDeviceResponse = VolumeList;
|
|
1886
|
-
|
|
1887
|
-
// @public
|
|
1888
|
-
export interface VolumesListByVolumeContainerOptionalParams extends coreClient.OperationOptions {
|
|
1889
|
-
}
|
|
1890
|
-
|
|
1891
|
-
// @public
|
|
1892
|
-
export type VolumesListByVolumeContainerResponse = VolumeList;
|
|
1893
|
-
|
|
1894
|
-
// @public
|
|
1895
|
-
export interface VolumesListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
// @public
|
|
1899
|
-
export type VolumesListMetricDefinitionResponse = MetricDefinitionList;
|
|
1900
|
-
|
|
1901
|
-
// @public
|
|
1902
|
-
export interface VolumesListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1903
|
-
}
|
|
1904
|
-
|
|
1905
|
-
// @public
|
|
1906
|
-
export type VolumesListMetricsResponse = MetricList;
|
|
1907
|
-
|
|
1908
|
-
// @public
|
|
1909
|
-
export type VolumeStatus = "Online" | "Offline";
|
|
1910
|
-
|
|
1911
|
-
// @public
|
|
1912
|
-
export type VolumeType = "Tiered" | "Archival" | "LocallyPinned";
|
|
1913
|
-
|
|
1914
|
-
// @public
|
|
1915
|
-
export interface WebproxySettings {
|
|
1916
|
-
authentication: AuthenticationType;
|
|
1917
|
-
connectionUri?: string;
|
|
1918
|
-
username: string;
|
|
1919
|
-
}
|
|
1920
|
-
|
|
1921
|
-
// (No @packageDocumentation comment for this package)
|
|
1922
|
-
|
|
1923
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-storsimple8000series"
|
|
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 interface AccessControlRecord extends BaseModel {
|
|
15
|
+
initiatorName: string;
|
|
16
|
+
readonly volumeCount?: number;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// @public
|
|
20
|
+
export interface AccessControlRecordList {
|
|
21
|
+
value: AccessControlRecord[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// @public
|
|
25
|
+
export interface AccessControlRecords {
|
|
26
|
+
beginCreateOrUpdate(accessControlRecordName: string, resourceGroupName: string, managerName: string, parameters: AccessControlRecord, options?: AccessControlRecordsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<AccessControlRecordsCreateOrUpdateResponse>, AccessControlRecordsCreateOrUpdateResponse>>;
|
|
27
|
+
beginCreateOrUpdateAndWait(accessControlRecordName: string, resourceGroupName: string, managerName: string, parameters: AccessControlRecord, options?: AccessControlRecordsCreateOrUpdateOptionalParams): Promise<AccessControlRecordsCreateOrUpdateResponse>;
|
|
28
|
+
beginDelete(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
29
|
+
beginDeleteAndWait(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsDeleteOptionalParams): Promise<void>;
|
|
30
|
+
get(accessControlRecordName: string, resourceGroupName: string, managerName: string, options?: AccessControlRecordsGetOptionalParams): Promise<AccessControlRecordsGetResponse>;
|
|
31
|
+
listByManager(resourceGroupName: string, managerName: string, options?: AccessControlRecordsListByManagerOptionalParams): PagedAsyncIterableIterator<AccessControlRecord>;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// @public
|
|
35
|
+
export interface AccessControlRecordsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
36
|
+
resumeFrom?: string;
|
|
37
|
+
updateIntervalInMs?: number;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export type AccessControlRecordsCreateOrUpdateResponse = AccessControlRecord;
|
|
42
|
+
|
|
43
|
+
// @public
|
|
44
|
+
export interface AccessControlRecordsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
45
|
+
resumeFrom?: string;
|
|
46
|
+
updateIntervalInMs?: number;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// @public
|
|
50
|
+
export interface AccessControlRecordsGetOptionalParams extends coreClient.OperationOptions {
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// @public
|
|
54
|
+
export type AccessControlRecordsGetResponse = AccessControlRecord;
|
|
55
|
+
|
|
56
|
+
// @public
|
|
57
|
+
export interface AccessControlRecordsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// @public
|
|
61
|
+
export type AccessControlRecordsListByManagerResponse = AccessControlRecordList;
|
|
62
|
+
|
|
63
|
+
// @public
|
|
64
|
+
export interface AcsConfiguration {
|
|
65
|
+
namespace: string;
|
|
66
|
+
realm: string;
|
|
67
|
+
serviceUrl: string;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export interface Alert extends BaseModel {
|
|
72
|
+
alertType: string;
|
|
73
|
+
appearedAtSourceTime: Date;
|
|
74
|
+
appearedAtTime: Date;
|
|
75
|
+
clearedAtSourceTime?: Date;
|
|
76
|
+
clearedAtTime?: Date;
|
|
77
|
+
detailedInformation?: {
|
|
78
|
+
[propertyName: string]: string;
|
|
79
|
+
};
|
|
80
|
+
errorDetails?: AlertErrorDetails;
|
|
81
|
+
recommendation?: string;
|
|
82
|
+
resolutionReason?: string;
|
|
83
|
+
scope: AlertScope;
|
|
84
|
+
severity: AlertSeverity;
|
|
85
|
+
source: AlertSource;
|
|
86
|
+
status: AlertStatus;
|
|
87
|
+
title: string;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// @public
|
|
91
|
+
export type AlertEmailNotificationStatus = "Enabled" | "Disabled";
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export interface AlertErrorDetails {
|
|
95
|
+
errorCode?: string;
|
|
96
|
+
errorMessage?: string;
|
|
97
|
+
occurences?: number;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export interface AlertFilter {
|
|
102
|
+
appearedOnTime?: Date;
|
|
103
|
+
severity?: AlertSeverity;
|
|
104
|
+
sourceName?: string;
|
|
105
|
+
sourceType?: AlertSourceType;
|
|
106
|
+
status?: AlertStatus;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface AlertList {
|
|
111
|
+
nextLink?: string;
|
|
112
|
+
value: Alert[];
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export interface Alerts {
|
|
117
|
+
clear(resourceGroupName: string, managerName: string, parameters: ClearAlertRequest, options?: AlertsClearOptionalParams): Promise<void>;
|
|
118
|
+
listByManager(resourceGroupName: string, managerName: string, options?: AlertsListByManagerOptionalParams): PagedAsyncIterableIterator<Alert>;
|
|
119
|
+
sendTestEmail(deviceName: string, resourceGroupName: string, managerName: string, parameters: SendTestAlertEmailRequest, options?: AlertsSendTestEmailOptionalParams): Promise<void>;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// @public
|
|
123
|
+
export interface AlertsClearOptionalParams extends coreClient.OperationOptions {
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// @public
|
|
127
|
+
export type AlertScope = "Resource" | "Device";
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export interface AlertSettings extends BaseModel {
|
|
131
|
+
additionalRecipientEmailList?: string[];
|
|
132
|
+
alertNotificationCulture?: string;
|
|
133
|
+
emailNotification: AlertEmailNotificationStatus;
|
|
134
|
+
notificationToServiceOwners?: AlertEmailNotificationStatus;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// @public
|
|
138
|
+
export type AlertSeverity = "Informational" | "Warning" | "Critical";
|
|
139
|
+
|
|
140
|
+
// @public
|
|
141
|
+
export interface AlertsListByManagerNextOptionalParams extends coreClient.OperationOptions {
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// @public
|
|
145
|
+
export type AlertsListByManagerNextResponse = AlertList;
|
|
146
|
+
|
|
147
|
+
// @public
|
|
148
|
+
export interface AlertsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
149
|
+
filter?: string;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export type AlertsListByManagerResponse = AlertList;
|
|
154
|
+
|
|
155
|
+
// @public
|
|
156
|
+
export interface AlertSource {
|
|
157
|
+
alertSourceType?: AlertSourceType;
|
|
158
|
+
name?: string;
|
|
159
|
+
timeZone?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// @public
|
|
163
|
+
export type AlertSourceType = "Resource" | "Device";
|
|
164
|
+
|
|
165
|
+
// @public
|
|
166
|
+
export interface AlertsSendTestEmailOptionalParams extends coreClient.OperationOptions {
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// @public
|
|
170
|
+
export type AlertStatus = "Active" | "Cleared";
|
|
171
|
+
|
|
172
|
+
// @public
|
|
173
|
+
export interface AsymmetricEncryptedSecret {
|
|
174
|
+
encryptionAlgorithm: EncryptionAlgorithm;
|
|
175
|
+
encryptionCertThumbprint?: string;
|
|
176
|
+
value: string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// @public
|
|
180
|
+
export type AuthenticationType = "Invalid" | "None" | "Basic" | "NTLM";
|
|
181
|
+
|
|
182
|
+
// @public
|
|
183
|
+
export type AuthorizationEligibility = "InEligible" | "Eligible";
|
|
184
|
+
|
|
185
|
+
// @public
|
|
186
|
+
export type AuthorizationStatus = "Disabled" | "Enabled";
|
|
187
|
+
|
|
188
|
+
// @public
|
|
189
|
+
export interface AvailableProviderOperation {
|
|
190
|
+
display?: AvailableProviderOperationDisplay;
|
|
191
|
+
name?: string;
|
|
192
|
+
origin?: string;
|
|
193
|
+
properties?: Record<string, unknown>;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface AvailableProviderOperationDisplay {
|
|
198
|
+
description?: string;
|
|
199
|
+
operation?: string;
|
|
200
|
+
provider?: string;
|
|
201
|
+
resource?: string;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// @public
|
|
205
|
+
export interface AvailableProviderOperationList {
|
|
206
|
+
nextLink?: string;
|
|
207
|
+
value: AvailableProviderOperation[];
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// @public
|
|
211
|
+
export interface Backup extends BaseModel {
|
|
212
|
+
backupJobCreationType?: BackupJobCreationType;
|
|
213
|
+
backupPolicyId?: string;
|
|
214
|
+
backupType?: BackupType;
|
|
215
|
+
createdOn: Date;
|
|
216
|
+
elements: BackupElement[];
|
|
217
|
+
sizeInBytes: number;
|
|
218
|
+
ssmHostName?: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export interface BackupElement {
|
|
223
|
+
elementId: string;
|
|
224
|
+
elementName: string;
|
|
225
|
+
elementType: string;
|
|
226
|
+
sizeInBytes: number;
|
|
227
|
+
volumeContainerId: string;
|
|
228
|
+
volumeName: string;
|
|
229
|
+
volumeType?: VolumeType;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
// @public
|
|
233
|
+
export interface BackupFilter {
|
|
234
|
+
backupPolicyId?: string;
|
|
235
|
+
createdTime?: Date;
|
|
236
|
+
volumeId?: string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// @public
|
|
240
|
+
export type BackupJobCreationType = "Adhoc" | "BySchedule" | "BySSM";
|
|
241
|
+
|
|
242
|
+
// @public
|
|
243
|
+
export interface BackupList {
|
|
244
|
+
nextLink?: string;
|
|
245
|
+
value: Backup[];
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// @public
|
|
249
|
+
export interface BackupPolicies {
|
|
250
|
+
beginBackupNow(deviceName: string, backupPolicyName: string, backupType: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesBackupNowOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
251
|
+
beginBackupNowAndWait(deviceName: string, backupPolicyName: string, backupType: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesBackupNowOptionalParams): Promise<void>;
|
|
252
|
+
beginCreateOrUpdate(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, parameters: BackupPolicy, options?: BackupPoliciesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BackupPoliciesCreateOrUpdateResponse>, BackupPoliciesCreateOrUpdateResponse>>;
|
|
253
|
+
beginCreateOrUpdateAndWait(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, parameters: BackupPolicy, options?: BackupPoliciesCreateOrUpdateOptionalParams): Promise<BackupPoliciesCreateOrUpdateResponse>;
|
|
254
|
+
beginDelete(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
255
|
+
beginDeleteAndWait(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesDeleteOptionalParams): Promise<void>;
|
|
256
|
+
get(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesGetOptionalParams): Promise<BackupPoliciesGetResponse>;
|
|
257
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: BackupPoliciesListByDeviceOptionalParams): PagedAsyncIterableIterator<BackupPolicy>;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
// @public
|
|
261
|
+
export interface BackupPoliciesBackupNowOptionalParams extends coreClient.OperationOptions {
|
|
262
|
+
resumeFrom?: string;
|
|
263
|
+
updateIntervalInMs?: number;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// @public
|
|
267
|
+
export interface BackupPoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
268
|
+
resumeFrom?: string;
|
|
269
|
+
updateIntervalInMs?: number;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export type BackupPoliciesCreateOrUpdateResponse = BackupPolicy;
|
|
274
|
+
|
|
275
|
+
// @public
|
|
276
|
+
export interface BackupPoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
277
|
+
resumeFrom?: string;
|
|
278
|
+
updateIntervalInMs?: number;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export interface BackupPoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export type BackupPoliciesGetResponse = BackupPolicy;
|
|
287
|
+
|
|
288
|
+
// @public
|
|
289
|
+
export interface BackupPoliciesListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// @public
|
|
293
|
+
export type BackupPoliciesListByDeviceResponse = BackupPolicyList;
|
|
294
|
+
|
|
295
|
+
// @public
|
|
296
|
+
export interface BackupPolicy extends BaseModel {
|
|
297
|
+
readonly backupPolicyCreationType?: BackupPolicyCreationType;
|
|
298
|
+
readonly lastBackupTime?: Date;
|
|
299
|
+
readonly nextBackupTime?: Date;
|
|
300
|
+
readonly scheduledBackupStatus?: ScheduledBackupStatus;
|
|
301
|
+
readonly schedulesCount?: number;
|
|
302
|
+
readonly ssmHostName?: string;
|
|
303
|
+
volumeIds: string[];
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
// @public
|
|
307
|
+
export type BackupPolicyCreationType = "BySaaS" | "BySSM";
|
|
308
|
+
|
|
309
|
+
// @public
|
|
310
|
+
export interface BackupPolicyList {
|
|
311
|
+
value: BackupPolicy[];
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export interface Backups {
|
|
316
|
+
beginClone(deviceName: string, backupName: string, backupElementName: string, resourceGroupName: string, managerName: string, parameters: CloneRequest, options?: BackupsCloneOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
317
|
+
beginCloneAndWait(deviceName: string, backupName: string, backupElementName: string, resourceGroupName: string, managerName: string, parameters: CloneRequest, options?: BackupsCloneOptionalParams): Promise<void>;
|
|
318
|
+
beginDelete(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
319
|
+
beginDeleteAndWait(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsDeleteOptionalParams): Promise<void>;
|
|
320
|
+
beginRestore(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsRestoreOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
321
|
+
beginRestoreAndWait(deviceName: string, backupName: string, resourceGroupName: string, managerName: string, options?: BackupsRestoreOptionalParams): Promise<void>;
|
|
322
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: BackupsListByDeviceOptionalParams): PagedAsyncIterableIterator<Backup>;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export interface BackupSchedule extends BaseModel {
|
|
327
|
+
backupType: BackupType;
|
|
328
|
+
readonly lastSuccessfulRun?: Date;
|
|
329
|
+
retentionCount: number;
|
|
330
|
+
scheduleRecurrence: ScheduleRecurrence;
|
|
331
|
+
scheduleStatus: ScheduleStatus;
|
|
332
|
+
startTime: Date;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
// @public
|
|
336
|
+
export interface BackupScheduleList {
|
|
337
|
+
value: BackupSchedule[];
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// @public
|
|
341
|
+
export interface BackupSchedules {
|
|
342
|
+
beginCreateOrUpdate(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, parameters: BackupSchedule, options?: BackupSchedulesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BackupSchedulesCreateOrUpdateResponse>, BackupSchedulesCreateOrUpdateResponse>>;
|
|
343
|
+
beginCreateOrUpdateAndWait(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, parameters: BackupSchedule, options?: BackupSchedulesCreateOrUpdateOptionalParams): Promise<BackupSchedulesCreateOrUpdateResponse>;
|
|
344
|
+
beginDelete(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
345
|
+
beginDeleteAndWait(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesDeleteOptionalParams): Promise<void>;
|
|
346
|
+
get(deviceName: string, backupPolicyName: string, backupScheduleName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesGetOptionalParams): Promise<BackupSchedulesGetResponse>;
|
|
347
|
+
listByBackupPolicy(deviceName: string, backupPolicyName: string, resourceGroupName: string, managerName: string, options?: BackupSchedulesListByBackupPolicyOptionalParams): PagedAsyncIterableIterator<BackupSchedule>;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
// @public
|
|
351
|
+
export interface BackupSchedulesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
352
|
+
resumeFrom?: string;
|
|
353
|
+
updateIntervalInMs?: number;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// @public
|
|
357
|
+
export type BackupSchedulesCreateOrUpdateResponse = BackupSchedule;
|
|
358
|
+
|
|
359
|
+
// @public
|
|
360
|
+
export interface BackupSchedulesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
361
|
+
resumeFrom?: string;
|
|
362
|
+
updateIntervalInMs?: number;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// @public
|
|
366
|
+
export interface BackupSchedulesGetOptionalParams extends coreClient.OperationOptions {
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
// @public
|
|
370
|
+
export type BackupSchedulesGetResponse = BackupSchedule;
|
|
371
|
+
|
|
372
|
+
// @public
|
|
373
|
+
export interface BackupSchedulesListByBackupPolicyOptionalParams extends coreClient.OperationOptions {
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
// @public
|
|
377
|
+
export type BackupSchedulesListByBackupPolicyResponse = BackupScheduleList;
|
|
378
|
+
|
|
379
|
+
// @public
|
|
380
|
+
export interface BackupsCloneOptionalParams extends coreClient.OperationOptions {
|
|
381
|
+
resumeFrom?: string;
|
|
382
|
+
updateIntervalInMs?: number;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
// @public
|
|
386
|
+
export interface BackupsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
387
|
+
resumeFrom?: string;
|
|
388
|
+
updateIntervalInMs?: number;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
// @public
|
|
392
|
+
export interface BackupsListByDeviceNextOptionalParams extends coreClient.OperationOptions {
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// @public
|
|
396
|
+
export type BackupsListByDeviceNextResponse = BackupList;
|
|
397
|
+
|
|
398
|
+
// @public
|
|
399
|
+
export interface BackupsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
400
|
+
filter?: string;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// @public
|
|
404
|
+
export type BackupsListByDeviceResponse = BackupList;
|
|
405
|
+
|
|
406
|
+
// @public
|
|
407
|
+
export interface BackupsRestoreOptionalParams extends coreClient.OperationOptions {
|
|
408
|
+
resumeFrom?: string;
|
|
409
|
+
updateIntervalInMs?: number;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
// @public
|
|
413
|
+
export type BackupStatus = "Enabled" | "Disabled";
|
|
414
|
+
|
|
415
|
+
// @public
|
|
416
|
+
export type BackupType = "LocalSnapshot" | "CloudSnapshot";
|
|
417
|
+
|
|
418
|
+
// @public
|
|
419
|
+
export interface BandwidthSchedule {
|
|
420
|
+
days: DayOfWeek[];
|
|
421
|
+
rateInMbps: number;
|
|
422
|
+
start: Time;
|
|
423
|
+
stop: Time;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// @public
|
|
427
|
+
export interface BandwidthSetting extends BaseModel {
|
|
428
|
+
schedules: BandwidthSchedule[];
|
|
429
|
+
readonly volumeCount?: number;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
// @public
|
|
433
|
+
export interface BandwidthSettingList {
|
|
434
|
+
value: BandwidthSetting[];
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
// @public
|
|
438
|
+
export interface BandwidthSettings {
|
|
439
|
+
beginCreateOrUpdate(bandwidthSettingName: string, resourceGroupName: string, managerName: string, parameters: BandwidthSetting, options?: BandwidthSettingsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<BandwidthSettingsCreateOrUpdateResponse>, BandwidthSettingsCreateOrUpdateResponse>>;
|
|
440
|
+
beginCreateOrUpdateAndWait(bandwidthSettingName: string, resourceGroupName: string, managerName: string, parameters: BandwidthSetting, options?: BandwidthSettingsCreateOrUpdateOptionalParams): Promise<BandwidthSettingsCreateOrUpdateResponse>;
|
|
441
|
+
beginDelete(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
442
|
+
beginDeleteAndWait(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsDeleteOptionalParams): Promise<void>;
|
|
443
|
+
get(bandwidthSettingName: string, resourceGroupName: string, managerName: string, options?: BandwidthSettingsGetOptionalParams): Promise<BandwidthSettingsGetResponse>;
|
|
444
|
+
listByManager(resourceGroupName: string, managerName: string, options?: BandwidthSettingsListByManagerOptionalParams): PagedAsyncIterableIterator<BandwidthSetting>;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
// @public
|
|
448
|
+
export interface BandwidthSettingsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
449
|
+
resumeFrom?: string;
|
|
450
|
+
updateIntervalInMs?: number;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
// @public
|
|
454
|
+
export type BandwidthSettingsCreateOrUpdateResponse = BandwidthSetting;
|
|
455
|
+
|
|
456
|
+
// @public
|
|
457
|
+
export interface BandwidthSettingsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
458
|
+
resumeFrom?: string;
|
|
459
|
+
updateIntervalInMs?: number;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
// @public
|
|
463
|
+
export interface BandwidthSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
// @public
|
|
467
|
+
export type BandwidthSettingsGetResponse = BandwidthSetting;
|
|
468
|
+
|
|
469
|
+
// @public
|
|
470
|
+
export interface BandwidthSettingsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// @public
|
|
474
|
+
export type BandwidthSettingsListByManagerResponse = BandwidthSettingList;
|
|
475
|
+
|
|
476
|
+
// @public
|
|
477
|
+
export interface BaseModel {
|
|
478
|
+
readonly id?: string;
|
|
479
|
+
kind?: "Series8000";
|
|
480
|
+
readonly name?: string;
|
|
481
|
+
readonly type?: string;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
// @public
|
|
485
|
+
export interface ChapSettings {
|
|
486
|
+
initiatorSecret?: AsymmetricEncryptedSecret;
|
|
487
|
+
initiatorUser?: string;
|
|
488
|
+
targetSecret?: AsymmetricEncryptedSecret;
|
|
489
|
+
targetUser?: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface ClearAlertRequest {
|
|
494
|
+
alerts: string[];
|
|
495
|
+
resolutionMessage?: string;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
// @public
|
|
499
|
+
export interface CloneRequest {
|
|
500
|
+
backupElement: BackupElement;
|
|
501
|
+
targetAccessControlRecordIds: string[];
|
|
502
|
+
targetDeviceId: string;
|
|
503
|
+
targetVolumeName: string;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
// @public
|
|
507
|
+
export interface CloudAppliance {
|
|
508
|
+
isVnetDnsConfigured?: boolean;
|
|
509
|
+
isVnetExpressConfigured?: boolean;
|
|
510
|
+
modelNumber?: string;
|
|
511
|
+
name: string;
|
|
512
|
+
storageAccountName?: string;
|
|
513
|
+
storageAccountType?: string;
|
|
514
|
+
subnetName?: string;
|
|
515
|
+
vmImageName?: string;
|
|
516
|
+
vmType?: string;
|
|
517
|
+
vnetName?: string;
|
|
518
|
+
vnetRegion: string;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
// @public
|
|
522
|
+
export interface CloudApplianceConfiguration extends BaseModel {
|
|
523
|
+
acsConfiguration: AcsConfiguration;
|
|
524
|
+
cloudPlatform: string;
|
|
525
|
+
modelNumber: string;
|
|
526
|
+
supportedRegions: string[];
|
|
527
|
+
supportedStorageAccountTypes: string[];
|
|
528
|
+
supportedVmImages: VmImage[];
|
|
529
|
+
supportedVmTypes: string[];
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
// @public
|
|
533
|
+
export interface CloudApplianceConfigurationList {
|
|
534
|
+
value: CloudApplianceConfiguration[];
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
// @public
|
|
538
|
+
export interface CloudAppliances {
|
|
539
|
+
beginProvision(resourceGroupName: string, managerName: string, parameters: CloudAppliance, options?: CloudAppliancesProvisionOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
540
|
+
beginProvisionAndWait(resourceGroupName: string, managerName: string, parameters: CloudAppliance, options?: CloudAppliancesProvisionOptionalParams): Promise<void>;
|
|
541
|
+
listSupportedConfigurations(resourceGroupName: string, managerName: string, options?: CloudAppliancesListSupportedConfigurationsOptionalParams): PagedAsyncIterableIterator<CloudApplianceConfiguration>;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
// @public
|
|
545
|
+
export interface CloudApplianceSettings {
|
|
546
|
+
channelIntegrityKey?: AsymmetricEncryptedSecret;
|
|
547
|
+
serviceDataEncryptionKey?: AsymmetricEncryptedSecret;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
// @public
|
|
551
|
+
export interface CloudAppliancesListSupportedConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
// @public
|
|
555
|
+
export type CloudAppliancesListSupportedConfigurationsResponse = CloudApplianceConfigurationList;
|
|
556
|
+
|
|
557
|
+
// @public
|
|
558
|
+
export interface CloudAppliancesProvisionOptionalParams extends coreClient.OperationOptions {
|
|
559
|
+
resumeFrom?: string;
|
|
560
|
+
updateIntervalInMs?: number;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
// @public
|
|
564
|
+
export interface ConfigureDeviceRequest extends BaseModel {
|
|
565
|
+
currentDeviceName: string;
|
|
566
|
+
dnsSettings?: SecondaryDNSSettings;
|
|
567
|
+
friendlyName: string;
|
|
568
|
+
networkInterfaceData0Settings?: NetworkInterfaceData0Settings;
|
|
569
|
+
timeZone: string;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
// @public
|
|
573
|
+
export type ControllerId = "Unknown" | "None" | "Controller0" | "Controller1";
|
|
574
|
+
|
|
575
|
+
// @public
|
|
576
|
+
export type ControllerPowerStateAction = "Start" | "Restart" | "Shutdown";
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export interface ControllerPowerStateChangeRequest extends BaseModel {
|
|
580
|
+
action: ControllerPowerStateAction;
|
|
581
|
+
activeController: ControllerId;
|
|
582
|
+
controller0State: ControllerStatus;
|
|
583
|
+
controller1State: ControllerStatus;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
// @public
|
|
587
|
+
export type ControllerStatus = "NotPresent" | "PoweredOff" | "Ok" | "Recovering" | "Warning" | "Failure";
|
|
588
|
+
|
|
589
|
+
// @public
|
|
590
|
+
export interface DataStatistics {
|
|
591
|
+
cloudData?: number;
|
|
592
|
+
processedData?: number;
|
|
593
|
+
throughput?: number;
|
|
594
|
+
totalData?: number;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
// @public
|
|
598
|
+
export type DayOfWeek = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
599
|
+
|
|
600
|
+
// @public
|
|
601
|
+
export interface Device extends BaseModel {
|
|
602
|
+
activationTime: Date;
|
|
603
|
+
activeController: ControllerId;
|
|
604
|
+
agentGroupVersion?: number;
|
|
605
|
+
availableLocalStorageInBytes?: number;
|
|
606
|
+
availableTieredStorageInBytes?: number;
|
|
607
|
+
culture: string;
|
|
608
|
+
details?: DeviceDetails;
|
|
609
|
+
deviceConfigurationStatus: DeviceConfigurationStatus;
|
|
610
|
+
deviceDescription: string;
|
|
611
|
+
deviceLocation?: string;
|
|
612
|
+
deviceSoftwareVersion: string;
|
|
613
|
+
deviceType: DeviceType;
|
|
614
|
+
friendlyName: string;
|
|
615
|
+
friendlySoftwareName?: string;
|
|
616
|
+
friendlySoftwareVersion: string;
|
|
617
|
+
modelDescription: string;
|
|
618
|
+
networkInterfaceCardCount?: number;
|
|
619
|
+
provisionedLocalStorageInBytes?: number;
|
|
620
|
+
provisionedTieredStorageInBytes?: number;
|
|
621
|
+
provisionedVolumeSizeInBytes?: number;
|
|
622
|
+
rolloverDetails?: DeviceRolloverDetails;
|
|
623
|
+
serialNumber: string;
|
|
624
|
+
status: DeviceStatus;
|
|
625
|
+
targetIqn: string;
|
|
626
|
+
totalTieredStorageInBytes?: number;
|
|
627
|
+
usingStorageInBytes?: number;
|
|
628
|
+
readonly virtualMachineApiType?: VirtualMachineApiType;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
// @public
|
|
632
|
+
export type DeviceConfigurationStatus = "Complete" | "Pending";
|
|
633
|
+
|
|
634
|
+
// @public
|
|
635
|
+
export interface DeviceDetails {
|
|
636
|
+
endpointCount?: number;
|
|
637
|
+
volumeContainerCount?: number;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
// @public
|
|
641
|
+
export interface DeviceList {
|
|
642
|
+
value: Device[];
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
// @public
|
|
646
|
+
export interface DevicePatch {
|
|
647
|
+
deviceDescription?: string;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
// @public
|
|
651
|
+
export interface DeviceRolloverDetails {
|
|
652
|
+
authorizationEligibility?: AuthorizationEligibility;
|
|
653
|
+
authorizationStatus?: AuthorizationStatus;
|
|
654
|
+
inEligibilityReason?: InEligibilityCategory;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
// @public
|
|
658
|
+
export interface Devices {
|
|
659
|
+
authorizeForServiceEncryptionKeyRollover(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesAuthorizeForServiceEncryptionKeyRolloverOptionalParams): Promise<void>;
|
|
660
|
+
beginConfigure(resourceGroupName: string, managerName: string, parameters: ConfigureDeviceRequest, options?: DevicesConfigureOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
661
|
+
beginConfigureAndWait(resourceGroupName: string, managerName: string, parameters: ConfigureDeviceRequest, options?: DevicesConfigureOptionalParams): Promise<void>;
|
|
662
|
+
beginDeactivate(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeactivateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
663
|
+
beginDeactivateAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeactivateOptionalParams): Promise<void>;
|
|
664
|
+
beginDelete(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
665
|
+
beginDeleteAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesDeleteOptionalParams): Promise<void>;
|
|
666
|
+
beginFailover(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: FailoverRequest, options?: DevicesFailoverOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
667
|
+
beginFailoverAndWait(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: FailoverRequest, options?: DevicesFailoverOptionalParams): Promise<void>;
|
|
668
|
+
beginInstallUpdates(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesInstallUpdatesOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
669
|
+
beginInstallUpdatesAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesInstallUpdatesOptionalParams): Promise<void>;
|
|
670
|
+
beginScanForUpdates(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesScanForUpdatesOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
671
|
+
beginScanForUpdatesAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesScanForUpdatesOptionalParams): Promise<void>;
|
|
672
|
+
get(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesGetOptionalParams): Promise<DevicesGetResponse>;
|
|
673
|
+
getUpdateSummary(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesGetUpdateSummaryOptionalParams): Promise<DevicesGetUpdateSummaryResponse>;
|
|
674
|
+
listByManager(resourceGroupName: string, managerName: string, options?: DevicesListByManagerOptionalParams): PagedAsyncIterableIterator<Device>;
|
|
675
|
+
listFailoverSets(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesListFailoverSetsOptionalParams): PagedAsyncIterableIterator<FailoverSet>;
|
|
676
|
+
listFailoverTargets(sourceDeviceName: string, resourceGroupName: string, managerName: string, parameters: ListFailoverTargetsRequest, options?: DevicesListFailoverTargetsOptionalParams): PagedAsyncIterableIterator<FailoverTarget>;
|
|
677
|
+
listMetricDefinition(deviceName: string, resourceGroupName: string, managerName: string, options?: DevicesListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
678
|
+
listMetrics(deviceName: string, resourceGroupName: string, managerName: string, filter: string, options?: DevicesListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
679
|
+
update(deviceName: string, resourceGroupName: string, managerName: string, parameters: DevicePatch, options?: DevicesUpdateOptionalParams): Promise<DevicesUpdateResponse>;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
// @public
|
|
683
|
+
export interface DevicesAuthorizeForServiceEncryptionKeyRolloverOptionalParams extends coreClient.OperationOptions {
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
// @public
|
|
687
|
+
export interface DevicesConfigureOptionalParams extends coreClient.OperationOptions {
|
|
688
|
+
resumeFrom?: string;
|
|
689
|
+
updateIntervalInMs?: number;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
// @public
|
|
693
|
+
export interface DevicesDeactivateOptionalParams extends coreClient.OperationOptions {
|
|
694
|
+
resumeFrom?: string;
|
|
695
|
+
updateIntervalInMs?: number;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
// @public
|
|
699
|
+
export interface DevicesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
700
|
+
resumeFrom?: string;
|
|
701
|
+
updateIntervalInMs?: number;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// @public
|
|
705
|
+
export interface DeviceSettings {
|
|
706
|
+
beginCreateOrUpdateAlertSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: AlertSettings, options?: DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsCreateOrUpdateAlertSettingsResponse>, DeviceSettingsCreateOrUpdateAlertSettingsResponse>>;
|
|
707
|
+
beginCreateOrUpdateAlertSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: AlertSettings, options?: DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams): Promise<DeviceSettingsCreateOrUpdateAlertSettingsResponse>;
|
|
708
|
+
beginCreateOrUpdateTimeSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: TimeSettings, options?: DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsCreateOrUpdateTimeSettingsResponse>, DeviceSettingsCreateOrUpdateTimeSettingsResponse>>;
|
|
709
|
+
beginCreateOrUpdateTimeSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: TimeSettings, options?: DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams): Promise<DeviceSettingsCreateOrUpdateTimeSettingsResponse>;
|
|
710
|
+
beginSyncRemotemanagementCertificate(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsSyncRemotemanagementCertificateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
711
|
+
beginSyncRemotemanagementCertificateAndWait(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsSyncRemotemanagementCertificateOptionalParams): Promise<void>;
|
|
712
|
+
beginUpdateNetworkSettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: NetworkSettingsPatch, options?: DeviceSettingsUpdateNetworkSettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsUpdateNetworkSettingsResponse>, DeviceSettingsUpdateNetworkSettingsResponse>>;
|
|
713
|
+
beginUpdateNetworkSettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: NetworkSettingsPatch, options?: DeviceSettingsUpdateNetworkSettingsOptionalParams): Promise<DeviceSettingsUpdateNetworkSettingsResponse>;
|
|
714
|
+
beginUpdateSecuritySettings(deviceName: string, resourceGroupName: string, managerName: string, parameters: SecuritySettingsPatch, options?: DeviceSettingsUpdateSecuritySettingsOptionalParams): Promise<PollerLike<PollOperationState<DeviceSettingsUpdateSecuritySettingsResponse>, DeviceSettingsUpdateSecuritySettingsResponse>>;
|
|
715
|
+
beginUpdateSecuritySettingsAndWait(deviceName: string, resourceGroupName: string, managerName: string, parameters: SecuritySettingsPatch, options?: DeviceSettingsUpdateSecuritySettingsOptionalParams): Promise<DeviceSettingsUpdateSecuritySettingsResponse>;
|
|
716
|
+
getAlertSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetAlertSettingsOptionalParams): Promise<DeviceSettingsGetAlertSettingsResponse>;
|
|
717
|
+
getNetworkSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetNetworkSettingsOptionalParams): Promise<DeviceSettingsGetNetworkSettingsResponse>;
|
|
718
|
+
getSecuritySettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetSecuritySettingsOptionalParams): Promise<DeviceSettingsGetSecuritySettingsResponse>;
|
|
719
|
+
getTimeSettings(deviceName: string, resourceGroupName: string, managerName: string, options?: DeviceSettingsGetTimeSettingsOptionalParams): Promise<DeviceSettingsGetTimeSettingsResponse>;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
// @public
|
|
723
|
+
export interface DeviceSettingsCreateOrUpdateAlertSettingsOptionalParams extends coreClient.OperationOptions {
|
|
724
|
+
resumeFrom?: string;
|
|
725
|
+
updateIntervalInMs?: number;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
// @public
|
|
729
|
+
export type DeviceSettingsCreateOrUpdateAlertSettingsResponse = AlertSettings;
|
|
730
|
+
|
|
731
|
+
// @public
|
|
732
|
+
export interface DeviceSettingsCreateOrUpdateTimeSettingsOptionalParams extends coreClient.OperationOptions {
|
|
733
|
+
resumeFrom?: string;
|
|
734
|
+
updateIntervalInMs?: number;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
// @public
|
|
738
|
+
export type DeviceSettingsCreateOrUpdateTimeSettingsResponse = TimeSettings;
|
|
739
|
+
|
|
740
|
+
// @public
|
|
741
|
+
export interface DeviceSettingsGetAlertSettingsOptionalParams extends coreClient.OperationOptions {
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
// @public
|
|
745
|
+
export type DeviceSettingsGetAlertSettingsResponse = AlertSettings;
|
|
746
|
+
|
|
747
|
+
// @public
|
|
748
|
+
export interface DeviceSettingsGetNetworkSettingsOptionalParams extends coreClient.OperationOptions {
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
// @public
|
|
752
|
+
export type DeviceSettingsGetNetworkSettingsResponse = NetworkSettings;
|
|
753
|
+
|
|
754
|
+
// @public
|
|
755
|
+
export interface DeviceSettingsGetSecuritySettingsOptionalParams extends coreClient.OperationOptions {
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
// @public
|
|
759
|
+
export type DeviceSettingsGetSecuritySettingsResponse = SecuritySettings;
|
|
760
|
+
|
|
761
|
+
// @public
|
|
762
|
+
export interface DeviceSettingsGetTimeSettingsOptionalParams extends coreClient.OperationOptions {
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
// @public
|
|
766
|
+
export type DeviceSettingsGetTimeSettingsResponse = TimeSettings;
|
|
767
|
+
|
|
768
|
+
// @public
|
|
769
|
+
export interface DeviceSettingsSyncRemotemanagementCertificateOptionalParams extends coreClient.OperationOptions {
|
|
770
|
+
resumeFrom?: string;
|
|
771
|
+
updateIntervalInMs?: number;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
// @public
|
|
775
|
+
export interface DeviceSettingsUpdateNetworkSettingsOptionalParams extends coreClient.OperationOptions {
|
|
776
|
+
resumeFrom?: string;
|
|
777
|
+
updateIntervalInMs?: number;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
// @public
|
|
781
|
+
export type DeviceSettingsUpdateNetworkSettingsResponse = NetworkSettings;
|
|
782
|
+
|
|
783
|
+
// @public
|
|
784
|
+
export interface DeviceSettingsUpdateSecuritySettingsOptionalParams extends coreClient.OperationOptions {
|
|
785
|
+
resumeFrom?: string;
|
|
786
|
+
updateIntervalInMs?: number;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
// @public
|
|
790
|
+
export type DeviceSettingsUpdateSecuritySettingsResponse = SecuritySettings;
|
|
791
|
+
|
|
792
|
+
// @public
|
|
793
|
+
export interface DevicesFailoverOptionalParams extends coreClient.OperationOptions {
|
|
794
|
+
resumeFrom?: string;
|
|
795
|
+
updateIntervalInMs?: number;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
// @public
|
|
799
|
+
export interface DevicesGetOptionalParams extends coreClient.OperationOptions {
|
|
800
|
+
expand?: string;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
// @public
|
|
804
|
+
export type DevicesGetResponse = Device;
|
|
805
|
+
|
|
806
|
+
// @public
|
|
807
|
+
export interface DevicesGetUpdateSummaryOptionalParams extends coreClient.OperationOptions {
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
// @public
|
|
811
|
+
export type DevicesGetUpdateSummaryResponse = Updates;
|
|
812
|
+
|
|
813
|
+
// @public
|
|
814
|
+
export interface DevicesInstallUpdatesOptionalParams extends coreClient.OperationOptions {
|
|
815
|
+
resumeFrom?: string;
|
|
816
|
+
updateIntervalInMs?: number;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
// @public
|
|
820
|
+
export interface DevicesListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
821
|
+
expand?: string;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
// @public
|
|
825
|
+
export type DevicesListByManagerResponse = DeviceList;
|
|
826
|
+
|
|
827
|
+
// @public
|
|
828
|
+
export interface DevicesListFailoverSetsOptionalParams extends coreClient.OperationOptions {
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
// @public
|
|
832
|
+
export type DevicesListFailoverSetsResponse = FailoverSetsList;
|
|
833
|
+
|
|
834
|
+
// @public
|
|
835
|
+
export interface DevicesListFailoverTargetsOptionalParams extends coreClient.OperationOptions {
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
// @public
|
|
839
|
+
export type DevicesListFailoverTargetsResponse = FailoverTargetsList;
|
|
840
|
+
|
|
841
|
+
// @public
|
|
842
|
+
export interface DevicesListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
// @public
|
|
846
|
+
export type DevicesListMetricDefinitionResponse = MetricDefinitionList;
|
|
847
|
+
|
|
848
|
+
// @public
|
|
849
|
+
export interface DevicesListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// @public
|
|
853
|
+
export type DevicesListMetricsResponse = MetricList;
|
|
854
|
+
|
|
855
|
+
// @public
|
|
856
|
+
export interface DevicesScanForUpdatesOptionalParams extends coreClient.OperationOptions {
|
|
857
|
+
resumeFrom?: string;
|
|
858
|
+
updateIntervalInMs?: number;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
// @public
|
|
862
|
+
export type DeviceStatus = "Unknown" | "Online" | "Offline" | "Deactivated" | "RequiresAttention" | "MaintenanceMode" | "Creating" | "Provisioning" | "Deactivating" | "Deleted" | "ReadyToSetup";
|
|
863
|
+
|
|
864
|
+
// @public
|
|
865
|
+
export interface DevicesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
// @public
|
|
869
|
+
export type DevicesUpdateResponse = Device;
|
|
870
|
+
|
|
871
|
+
// @public
|
|
872
|
+
export type DeviceType = "Invalid" | "Series8000VirtualAppliance" | "Series8000PhysicalAppliance";
|
|
873
|
+
|
|
874
|
+
// @public
|
|
875
|
+
export interface DimensionFilter {
|
|
876
|
+
name?: string;
|
|
877
|
+
values?: string;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
// @public
|
|
881
|
+
export interface DNSSettings {
|
|
882
|
+
primaryDnsServer?: string;
|
|
883
|
+
primaryIpv6DnsServer?: string;
|
|
884
|
+
secondaryDnsServers?: string[];
|
|
885
|
+
secondaryIpv6DnsServers?: string[];
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
// @public
|
|
889
|
+
export type EncryptionAlgorithm = "None" | "AES256" | "RSAES_PKCS1_v_1_5";
|
|
890
|
+
|
|
891
|
+
// @public
|
|
892
|
+
export interface EncryptionSettings extends BaseModel {
|
|
893
|
+
encryptionStatus: EncryptionStatus;
|
|
894
|
+
keyRolloverStatus: KeyRolloverStatus;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
// @public
|
|
898
|
+
export type EncryptionStatus = "Enabled" | "Disabled";
|
|
899
|
+
|
|
900
|
+
// @public
|
|
901
|
+
export interface FailoverRequest {
|
|
902
|
+
targetDeviceId?: string;
|
|
903
|
+
volumeContainers?: string[];
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
// @public
|
|
907
|
+
export interface FailoverSet {
|
|
908
|
+
eligibilityResult?: FailoverSetEligibilityResult;
|
|
909
|
+
volumeContainers?: VolumeContainerFailoverMetadata[];
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
// @public
|
|
913
|
+
export interface FailoverSetEligibilityResult {
|
|
914
|
+
errorMessage?: string;
|
|
915
|
+
isEligibleForFailover?: boolean;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// @public
|
|
919
|
+
export interface FailoverSetsList {
|
|
920
|
+
value?: FailoverSet[];
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
// @public
|
|
924
|
+
export interface FailoverTarget {
|
|
925
|
+
availableLocalStorageInBytes?: number;
|
|
926
|
+
availableTieredStorageInBytes?: number;
|
|
927
|
+
dataContainersCount?: number;
|
|
928
|
+
deviceId?: string;
|
|
929
|
+
deviceLocation?: string;
|
|
930
|
+
deviceSoftwareVersion?: string;
|
|
931
|
+
deviceStatus?: DeviceStatus;
|
|
932
|
+
eligibilityResult?: TargetEligibilityResult;
|
|
933
|
+
friendlyDeviceSoftwareVersion?: string;
|
|
934
|
+
modelDescription?: string;
|
|
935
|
+
volumesCount?: number;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
// @public
|
|
939
|
+
export interface FailoverTargetsList {
|
|
940
|
+
value?: FailoverTarget[];
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
// @public
|
|
944
|
+
export interface Feature {
|
|
945
|
+
name: string;
|
|
946
|
+
status: FeatureSupportStatus;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// @public
|
|
950
|
+
export interface FeatureFilter {
|
|
951
|
+
deviceId?: string;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
// @public
|
|
955
|
+
export interface FeatureList {
|
|
956
|
+
value: Feature[];
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
// @public
|
|
960
|
+
export type FeatureSupportStatus = "NotAvailable" | "UnsupportedDeviceVersion" | "Supported";
|
|
961
|
+
|
|
962
|
+
// @public
|
|
963
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
964
|
+
|
|
965
|
+
// @public
|
|
966
|
+
export interface HardwareComponent {
|
|
967
|
+
componentId: string;
|
|
968
|
+
displayName: string;
|
|
969
|
+
status: HardwareComponentStatus;
|
|
970
|
+
statusDisplayName: string;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
// @public
|
|
974
|
+
export interface HardwareComponentGroup extends BaseModel {
|
|
975
|
+
components: HardwareComponent[];
|
|
976
|
+
displayName: string;
|
|
977
|
+
lastUpdatedTime: Date;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
// @public
|
|
981
|
+
export interface HardwareComponentGroupList {
|
|
982
|
+
value: HardwareComponentGroup[];
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
// @public
|
|
986
|
+
export interface HardwareComponentGroups {
|
|
987
|
+
beginChangeControllerPowerState(deviceName: string, hardwareComponentGroupName: string, resourceGroupName: string, managerName: string, parameters: ControllerPowerStateChangeRequest, options?: HardwareComponentGroupsChangeControllerPowerStateOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
988
|
+
beginChangeControllerPowerStateAndWait(deviceName: string, hardwareComponentGroupName: string, resourceGroupName: string, managerName: string, parameters: ControllerPowerStateChangeRequest, options?: HardwareComponentGroupsChangeControllerPowerStateOptionalParams): Promise<void>;
|
|
989
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: HardwareComponentGroupsListByDeviceOptionalParams): PagedAsyncIterableIterator<HardwareComponentGroup>;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
// @public
|
|
993
|
+
export interface HardwareComponentGroupsChangeControllerPowerStateOptionalParams extends coreClient.OperationOptions {
|
|
994
|
+
resumeFrom?: string;
|
|
995
|
+
updateIntervalInMs?: number;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
// @public
|
|
999
|
+
export interface HardwareComponentGroupsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
// @public
|
|
1003
|
+
export type HardwareComponentGroupsListByDeviceResponse = HardwareComponentGroupList;
|
|
1004
|
+
|
|
1005
|
+
// @public
|
|
1006
|
+
export type HardwareComponentStatus = "Unknown" | "NotPresent" | "PoweredOff" | "Ok" | "Recovering" | "Warning" | "Failure";
|
|
1007
|
+
|
|
1008
|
+
// @public
|
|
1009
|
+
export type InEligibilityCategory = "DeviceNotOnline" | "NotSupportedAppliance" | "RolloverPending";
|
|
1010
|
+
|
|
1011
|
+
// @public
|
|
1012
|
+
export type IscsiAndCloudStatus = "Disabled" | "IscsiEnabled" | "CloudEnabled" | "IscsiAndCloudEnabled";
|
|
1013
|
+
|
|
1014
|
+
// @public
|
|
1015
|
+
export interface Job extends BaseModel {
|
|
1016
|
+
backupPointInTime?: Date;
|
|
1017
|
+
backupType?: BackupType;
|
|
1018
|
+
dataStats?: DataStatistics;
|
|
1019
|
+
deviceId?: string;
|
|
1020
|
+
endTime?: Date;
|
|
1021
|
+
entityLabel?: string;
|
|
1022
|
+
entityType?: string;
|
|
1023
|
+
error?: JobErrorDetails;
|
|
1024
|
+
isCancellable?: boolean;
|
|
1025
|
+
jobStages?: JobStage[];
|
|
1026
|
+
jobType?: JobType;
|
|
1027
|
+
percentComplete: number;
|
|
1028
|
+
sourceDeviceId?: string;
|
|
1029
|
+
startTime?: Date;
|
|
1030
|
+
status: JobStatus;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
// @public
|
|
1034
|
+
export interface JobErrorDetails {
|
|
1035
|
+
code: string;
|
|
1036
|
+
errorDetails?: JobErrorItem[];
|
|
1037
|
+
message: string;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
// @public
|
|
1041
|
+
export interface JobErrorItem {
|
|
1042
|
+
code: string;
|
|
1043
|
+
message: string;
|
|
1044
|
+
recommendations?: string[];
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// @public
|
|
1048
|
+
export interface JobFilter {
|
|
1049
|
+
jobType?: string;
|
|
1050
|
+
startTime?: Date;
|
|
1051
|
+
status?: string;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
// @public
|
|
1055
|
+
export interface JobList {
|
|
1056
|
+
nextLink?: string;
|
|
1057
|
+
value: Job[];
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
// @public
|
|
1061
|
+
export interface Jobs {
|
|
1062
|
+
beginCancel(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsCancelOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1063
|
+
beginCancelAndWait(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsCancelOptionalParams): Promise<void>;
|
|
1064
|
+
get(deviceName: string, jobName: string, resourceGroupName: string, managerName: string, options?: JobsGetOptionalParams): Promise<JobsGetResponse>;
|
|
1065
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: JobsListByDeviceOptionalParams): PagedAsyncIterableIterator<Job>;
|
|
1066
|
+
listByManager(resourceGroupName: string, managerName: string, options?: JobsListByManagerOptionalParams): PagedAsyncIterableIterator<Job>;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
// @public
|
|
1070
|
+
export interface JobsCancelOptionalParams extends coreClient.OperationOptions {
|
|
1071
|
+
resumeFrom?: string;
|
|
1072
|
+
updateIntervalInMs?: number;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
// @public
|
|
1076
|
+
export interface JobsGetOptionalParams extends coreClient.OperationOptions {
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
// @public
|
|
1080
|
+
export type JobsGetResponse = Job;
|
|
1081
|
+
|
|
1082
|
+
// @public
|
|
1083
|
+
export interface JobsListByDeviceNextOptionalParams extends coreClient.OperationOptions {
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
// @public
|
|
1087
|
+
export type JobsListByDeviceNextResponse = JobList;
|
|
1088
|
+
|
|
1089
|
+
// @public
|
|
1090
|
+
export interface JobsListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1091
|
+
filter?: string;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
// @public
|
|
1095
|
+
export type JobsListByDeviceResponse = JobList;
|
|
1096
|
+
|
|
1097
|
+
// @public
|
|
1098
|
+
export interface JobsListByManagerNextOptionalParams extends coreClient.OperationOptions {
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
// @public
|
|
1102
|
+
export type JobsListByManagerNextResponse = JobList;
|
|
1103
|
+
|
|
1104
|
+
// @public
|
|
1105
|
+
export interface JobsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
1106
|
+
filter?: string;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
// @public
|
|
1110
|
+
export type JobsListByManagerResponse = JobList;
|
|
1111
|
+
|
|
1112
|
+
// @public
|
|
1113
|
+
export interface JobStage {
|
|
1114
|
+
detail?: string;
|
|
1115
|
+
errorCode?: string;
|
|
1116
|
+
message?: string;
|
|
1117
|
+
stageStatus: JobStatus;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
// @public
|
|
1121
|
+
export type JobStatus = "Running" | "Succeeded" | "Failed" | "Canceled";
|
|
1122
|
+
|
|
1123
|
+
// @public
|
|
1124
|
+
export type JobType = "ScheduledBackup" | "ManualBackup" | "RestoreBackup" | "CloneVolume" | "FailoverVolumeContainers" | "CreateLocallyPinnedVolume" | "ModifyVolume" | "InstallUpdates" | "SupportPackageLogs" | "CreateCloudAppliance";
|
|
1125
|
+
|
|
1126
|
+
// @public
|
|
1127
|
+
export interface Key {
|
|
1128
|
+
activationKey: string;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
// @public
|
|
1132
|
+
export type KeyRolloverStatus = "Required" | "NotRequired";
|
|
1133
|
+
|
|
1134
|
+
// @public
|
|
1135
|
+
export interface ListFailoverTargetsRequest {
|
|
1136
|
+
volumeContainers?: string[];
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
// @public
|
|
1140
|
+
export interface Manager extends Resource {
|
|
1141
|
+
cisIntrinsicSettings?: ManagerIntrinsicSettings;
|
|
1142
|
+
etag?: string;
|
|
1143
|
+
provisioningState?: string;
|
|
1144
|
+
sku?: ManagerSku;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
// @public
|
|
1148
|
+
export interface ManagerExtendedInfo extends BaseModel {
|
|
1149
|
+
algorithm?: string;
|
|
1150
|
+
encryptionKey?: string;
|
|
1151
|
+
encryptionKeyThumbprint?: string;
|
|
1152
|
+
etag?: string;
|
|
1153
|
+
integrityKey?: string;
|
|
1154
|
+
portalCertificateThumbprint?: string;
|
|
1155
|
+
version?: string;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
// @public
|
|
1159
|
+
export interface ManagerIntrinsicSettings {
|
|
1160
|
+
type: ManagerType;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
// @public
|
|
1164
|
+
export interface ManagerList {
|
|
1165
|
+
value: Manager[];
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
// @public
|
|
1169
|
+
export interface ManagerPatch {
|
|
1170
|
+
tags?: {
|
|
1171
|
+
[propertyName: string]: string;
|
|
1172
|
+
};
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
// @public
|
|
1176
|
+
export interface Managers {
|
|
1177
|
+
createExtendedInfo(resourceGroupName: string, managerName: string, parameters: ManagerExtendedInfo, options?: ManagersCreateExtendedInfoOptionalParams): Promise<ManagersCreateExtendedInfoResponse>;
|
|
1178
|
+
createOrUpdate(resourceGroupName: string, managerName: string, parameters: Manager, options?: ManagersCreateOrUpdateOptionalParams): Promise<ManagersCreateOrUpdateResponse>;
|
|
1179
|
+
delete(resourceGroupName: string, managerName: string, options?: ManagersDeleteOptionalParams): Promise<void>;
|
|
1180
|
+
deleteExtendedInfo(resourceGroupName: string, managerName: string, options?: ManagersDeleteExtendedInfoOptionalParams): Promise<void>;
|
|
1181
|
+
get(resourceGroupName: string, managerName: string, options?: ManagersGetOptionalParams): Promise<ManagersGetResponse>;
|
|
1182
|
+
getActivationKey(resourceGroupName: string, managerName: string, options?: ManagersGetActivationKeyOptionalParams): Promise<ManagersGetActivationKeyResponse>;
|
|
1183
|
+
getDevicePublicEncryptionKey(deviceName: string, resourceGroupName: string, managerName: string, options?: ManagersGetDevicePublicEncryptionKeyOptionalParams): Promise<ManagersGetDevicePublicEncryptionKeyResponse>;
|
|
1184
|
+
getEncryptionSettings(resourceGroupName: string, managerName: string, options?: ManagersGetEncryptionSettingsOptionalParams): Promise<ManagersGetEncryptionSettingsResponse>;
|
|
1185
|
+
getExtendedInfo(resourceGroupName: string, managerName: string, options?: ManagersGetExtendedInfoOptionalParams): Promise<ManagersGetExtendedInfoResponse>;
|
|
1186
|
+
getPublicEncryptionKey(resourceGroupName: string, managerName: string, options?: ManagersGetPublicEncryptionKeyOptionalParams): Promise<ManagersGetPublicEncryptionKeyResponse>;
|
|
1187
|
+
list(options?: ManagersListOptionalParams): PagedAsyncIterableIterator<Manager>;
|
|
1188
|
+
listByResourceGroup(resourceGroupName: string, options?: ManagersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Manager>;
|
|
1189
|
+
listFeatureSupportStatus(resourceGroupName: string, managerName: string, options?: ManagersListFeatureSupportStatusOptionalParams): PagedAsyncIterableIterator<Feature>;
|
|
1190
|
+
listMetricDefinition(resourceGroupName: string, managerName: string, options?: ManagersListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1191
|
+
listMetrics(resourceGroupName: string, managerName: string, filter: string, options?: ManagersListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1192
|
+
regenerateActivationKey(resourceGroupName: string, managerName: string, options?: ManagersRegenerateActivationKeyOptionalParams): Promise<ManagersRegenerateActivationKeyResponse>;
|
|
1193
|
+
update(resourceGroupName: string, managerName: string, parameters: ManagerPatch, options?: ManagersUpdateOptionalParams): Promise<ManagersUpdateResponse>;
|
|
1194
|
+
updateExtendedInfo(resourceGroupName: string, managerName: string, ifMatch: string, parameters: ManagerExtendedInfo, options?: ManagersUpdateExtendedInfoOptionalParams): Promise<ManagersUpdateExtendedInfoResponse>;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
// @public
|
|
1198
|
+
export interface ManagersCreateExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
// @public
|
|
1202
|
+
export type ManagersCreateExtendedInfoResponse = ManagerExtendedInfo;
|
|
1203
|
+
|
|
1204
|
+
// @public
|
|
1205
|
+
export interface ManagersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
// @public
|
|
1209
|
+
export type ManagersCreateOrUpdateResponse = Manager;
|
|
1210
|
+
|
|
1211
|
+
// @public
|
|
1212
|
+
export interface ManagersDeleteExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
// @public
|
|
1216
|
+
export interface ManagersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
// @public
|
|
1220
|
+
export interface ManagersGetActivationKeyOptionalParams extends coreClient.OperationOptions {
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
// @public
|
|
1224
|
+
export type ManagersGetActivationKeyResponse = Key;
|
|
1225
|
+
|
|
1226
|
+
// @public
|
|
1227
|
+
export interface ManagersGetDevicePublicEncryptionKeyOptionalParams extends coreClient.OperationOptions {
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
// @public
|
|
1231
|
+
export type ManagersGetDevicePublicEncryptionKeyResponse = PublicKey;
|
|
1232
|
+
|
|
1233
|
+
// @public
|
|
1234
|
+
export interface ManagersGetEncryptionSettingsOptionalParams extends coreClient.OperationOptions {
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
// @public
|
|
1238
|
+
export type ManagersGetEncryptionSettingsResponse = EncryptionSettings;
|
|
1239
|
+
|
|
1240
|
+
// @public
|
|
1241
|
+
export interface ManagersGetExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
// @public
|
|
1245
|
+
export type ManagersGetExtendedInfoResponse = ManagerExtendedInfo;
|
|
1246
|
+
|
|
1247
|
+
// @public
|
|
1248
|
+
export interface ManagersGetOptionalParams extends coreClient.OperationOptions {
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
// @public
|
|
1252
|
+
export interface ManagersGetPublicEncryptionKeyOptionalParams extends coreClient.OperationOptions {
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
// @public
|
|
1256
|
+
export type ManagersGetPublicEncryptionKeyResponse = SymmetricEncryptedSecret;
|
|
1257
|
+
|
|
1258
|
+
// @public
|
|
1259
|
+
export type ManagersGetResponse = Manager;
|
|
1260
|
+
|
|
1261
|
+
// @public
|
|
1262
|
+
export interface ManagerSku {
|
|
1263
|
+
name: "Standard";
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
// @public
|
|
1267
|
+
export interface ManagersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
// @public
|
|
1271
|
+
export type ManagersListByResourceGroupResponse = ManagerList;
|
|
1272
|
+
|
|
1273
|
+
// @public
|
|
1274
|
+
export interface ManagersListFeatureSupportStatusOptionalParams extends coreClient.OperationOptions {
|
|
1275
|
+
filter?: string;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
// @public
|
|
1279
|
+
export type ManagersListFeatureSupportStatusResponse = FeatureList;
|
|
1280
|
+
|
|
1281
|
+
// @public
|
|
1282
|
+
export interface ManagersListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
// @public
|
|
1286
|
+
export type ManagersListMetricDefinitionResponse = MetricDefinitionList;
|
|
1287
|
+
|
|
1288
|
+
// @public
|
|
1289
|
+
export interface ManagersListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
// @public
|
|
1293
|
+
export type ManagersListMetricsResponse = MetricList;
|
|
1294
|
+
|
|
1295
|
+
// @public
|
|
1296
|
+
export interface ManagersListOptionalParams extends coreClient.OperationOptions {
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
// @public
|
|
1300
|
+
export type ManagersListResponse = ManagerList;
|
|
1301
|
+
|
|
1302
|
+
// @public
|
|
1303
|
+
export interface ManagersRegenerateActivationKeyOptionalParams extends coreClient.OperationOptions {
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
// @public
|
|
1307
|
+
export type ManagersRegenerateActivationKeyResponse = Key;
|
|
1308
|
+
|
|
1309
|
+
// @public
|
|
1310
|
+
export interface ManagersUpdateExtendedInfoOptionalParams extends coreClient.OperationOptions {
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
// @public
|
|
1314
|
+
export type ManagersUpdateExtendedInfoResponse = ManagerExtendedInfo;
|
|
1315
|
+
|
|
1316
|
+
// @public
|
|
1317
|
+
export interface ManagersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
// @public
|
|
1321
|
+
export type ManagersUpdateResponse = Manager;
|
|
1322
|
+
|
|
1323
|
+
// @public
|
|
1324
|
+
export type ManagerType = "GardaV1" | "HelsinkiV1";
|
|
1325
|
+
|
|
1326
|
+
// @public
|
|
1327
|
+
export type MetricAggregationType = "Average" | "Last" | "Maximum" | "Minimum" | "None" | "Total";
|
|
1328
|
+
|
|
1329
|
+
// @public
|
|
1330
|
+
export interface MetricAvailablity {
|
|
1331
|
+
retention?: string;
|
|
1332
|
+
timeGrain?: string;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
// @public
|
|
1336
|
+
export interface MetricData {
|
|
1337
|
+
average?: number;
|
|
1338
|
+
count?: number;
|
|
1339
|
+
maximum?: number;
|
|
1340
|
+
minimum?: number;
|
|
1341
|
+
sum?: number;
|
|
1342
|
+
timeStamp?: Date;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
// @public
|
|
1346
|
+
export interface MetricDefinition {
|
|
1347
|
+
category?: string;
|
|
1348
|
+
dimensions?: MetricDimension[];
|
|
1349
|
+
metricAvailabilities?: MetricAvailablity[];
|
|
1350
|
+
name?: MetricName;
|
|
1351
|
+
primaryAggregationType?: MetricAggregationType;
|
|
1352
|
+
resourceId?: string;
|
|
1353
|
+
type?: string;
|
|
1354
|
+
unit?: MetricUnit;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
// @public
|
|
1358
|
+
export interface MetricDefinitionList {
|
|
1359
|
+
value?: MetricDefinition[];
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
// @public
|
|
1363
|
+
export interface MetricDimension {
|
|
1364
|
+
name?: string;
|
|
1365
|
+
value?: string;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
// @public
|
|
1369
|
+
export interface MetricFilter {
|
|
1370
|
+
category: string;
|
|
1371
|
+
dimensions?: DimensionFilter;
|
|
1372
|
+
endTime?: Date;
|
|
1373
|
+
name?: MetricNameFilter;
|
|
1374
|
+
startTime?: Date;
|
|
1375
|
+
timeGrain?: string;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
// @public
|
|
1379
|
+
export interface MetricList {
|
|
1380
|
+
value?: Metrics[];
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
// @public
|
|
1384
|
+
export interface MetricName {
|
|
1385
|
+
localizedValue?: string;
|
|
1386
|
+
value?: string;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
// @public
|
|
1390
|
+
export interface MetricNameFilter {
|
|
1391
|
+
value?: string;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
// @public
|
|
1395
|
+
export interface Metrics {
|
|
1396
|
+
dimensions?: MetricDimension[];
|
|
1397
|
+
endTime?: Date;
|
|
1398
|
+
name?: MetricName;
|
|
1399
|
+
primaryAggregation?: MetricAggregationType;
|
|
1400
|
+
resourceId?: string;
|
|
1401
|
+
startTime?: Date;
|
|
1402
|
+
timeGrain?: string;
|
|
1403
|
+
type?: string;
|
|
1404
|
+
unit?: MetricUnit;
|
|
1405
|
+
values?: MetricData[];
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
// @public
|
|
1409
|
+
export type MetricUnit = "Bytes" | "BytesPerSecond" | "Count" | "CountPerSecond" | "Percent" | "Seconds";
|
|
1410
|
+
|
|
1411
|
+
// @public
|
|
1412
|
+
export type MonitoringStatus = "Enabled" | "Disabled";
|
|
1413
|
+
|
|
1414
|
+
// @public
|
|
1415
|
+
export type NetInterfaceId = "Invalid" | "Data0" | "Data1" | "Data2" | "Data3" | "Data4" | "Data5";
|
|
1416
|
+
|
|
1417
|
+
// @public
|
|
1418
|
+
export type NetInterfaceStatus = "Enabled" | "Disabled";
|
|
1419
|
+
|
|
1420
|
+
// @public
|
|
1421
|
+
export interface NetworkAdapterList {
|
|
1422
|
+
value: NetworkAdapters[];
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
// @public
|
|
1426
|
+
export interface NetworkAdapters {
|
|
1427
|
+
interfaceId: NetInterfaceId;
|
|
1428
|
+
iscsiAndCloudStatus: IscsiAndCloudStatus;
|
|
1429
|
+
isDefault?: boolean;
|
|
1430
|
+
mode: NetworkMode;
|
|
1431
|
+
netInterfaceStatus: NetInterfaceStatus;
|
|
1432
|
+
nicIpv4Settings?: NicIPv4;
|
|
1433
|
+
nicIpv6Settings?: NicIPv6;
|
|
1434
|
+
speed?: number;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
// @public
|
|
1438
|
+
export interface NetworkInterfaceData0Settings {
|
|
1439
|
+
controllerOneIp?: string;
|
|
1440
|
+
controllerZeroIp?: string;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
// @public
|
|
1444
|
+
export type NetworkMode = "Invalid" | "IPV4" | "IPV6" | "BOTH";
|
|
1445
|
+
|
|
1446
|
+
// @public
|
|
1447
|
+
export interface NetworkSettings extends BaseModel {
|
|
1448
|
+
dnsSettings: DNSSettings;
|
|
1449
|
+
networkAdapters: NetworkAdapterList;
|
|
1450
|
+
webproxySettings: WebproxySettings;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
// @public
|
|
1454
|
+
export interface NetworkSettingsPatch {
|
|
1455
|
+
dnsSettings?: DNSSettings;
|
|
1456
|
+
networkAdapters?: NetworkAdapterList;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
// @public
|
|
1460
|
+
export interface NicIPv4 {
|
|
1461
|
+
controller0Ipv4Address?: string;
|
|
1462
|
+
controller1Ipv4Address?: string;
|
|
1463
|
+
ipv4Address?: string;
|
|
1464
|
+
ipv4Gateway?: string;
|
|
1465
|
+
ipv4Netmask?: string;
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
// @public
|
|
1469
|
+
export interface NicIPv6 {
|
|
1470
|
+
controller0Ipv6Address?: string;
|
|
1471
|
+
controller1Ipv6Address?: string;
|
|
1472
|
+
ipv6Address?: string;
|
|
1473
|
+
ipv6Gateway?: string;
|
|
1474
|
+
ipv6Prefix?: string;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
// @public
|
|
1478
|
+
export interface Operations {
|
|
1479
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<AvailableProviderOperation>;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
// @public
|
|
1483
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
// @public
|
|
1487
|
+
export type OperationsListNextResponse = AvailableProviderOperationList;
|
|
1488
|
+
|
|
1489
|
+
// @public
|
|
1490
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
// @public
|
|
1494
|
+
export type OperationsListResponse = AvailableProviderOperationList;
|
|
1495
|
+
|
|
1496
|
+
// @public
|
|
1497
|
+
export type OperationStatus = "None" | "Updating" | "Deleting" | "Restoring";
|
|
1498
|
+
|
|
1499
|
+
// @public
|
|
1500
|
+
export type OwnerShipStatus = "Owned" | "NotOwned";
|
|
1501
|
+
|
|
1502
|
+
// @public
|
|
1503
|
+
export interface PublicKey {
|
|
1504
|
+
key: string;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
// @public
|
|
1508
|
+
export type RecurrenceType = "Minutes" | "Hourly" | "Daily" | "Weekly";
|
|
1509
|
+
|
|
1510
|
+
// @public
|
|
1511
|
+
export type RemoteManagementModeConfiguration = "Unknown" | "Disabled" | "HttpsEnabled" | "HttpsAndHttpEnabled";
|
|
1512
|
+
|
|
1513
|
+
// @public
|
|
1514
|
+
export interface RemoteManagementSettings {
|
|
1515
|
+
remoteManagementCertificate?: string;
|
|
1516
|
+
remoteManagementMode: RemoteManagementModeConfiguration;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
// @public
|
|
1520
|
+
export interface RemoteManagementSettingsPatch {
|
|
1521
|
+
remoteManagementMode: RemoteManagementModeConfiguration;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
// @public
|
|
1525
|
+
export interface Resource {
|
|
1526
|
+
readonly id?: string;
|
|
1527
|
+
location: string;
|
|
1528
|
+
readonly name?: string;
|
|
1529
|
+
tags?: {
|
|
1530
|
+
[propertyName: string]: string;
|
|
1531
|
+
};
|
|
1532
|
+
readonly type?: string;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
// @public
|
|
1536
|
+
export type ScheduledBackupStatus = "Disabled" | "Enabled";
|
|
1537
|
+
|
|
1538
|
+
// @public
|
|
1539
|
+
export interface ScheduleRecurrence {
|
|
1540
|
+
recurrenceType: RecurrenceType;
|
|
1541
|
+
recurrenceValue: number;
|
|
1542
|
+
weeklyDaysList?: DayOfWeek[];
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
// @public
|
|
1546
|
+
export type ScheduleStatus = "Enabled" | "Disabled";
|
|
1547
|
+
|
|
1548
|
+
// @public
|
|
1549
|
+
export interface SecondaryDNSSettings {
|
|
1550
|
+
secondaryDnsServers?: string[];
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
// @public
|
|
1554
|
+
export interface SecuritySettings extends BaseModel {
|
|
1555
|
+
chapSettings: ChapSettings;
|
|
1556
|
+
remoteManagementSettings: RemoteManagementSettings;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
// @public
|
|
1560
|
+
export interface SecuritySettingsPatch {
|
|
1561
|
+
chapSettings?: ChapSettings;
|
|
1562
|
+
cloudApplianceSettings?: CloudApplianceSettings;
|
|
1563
|
+
deviceAdminPassword?: AsymmetricEncryptedSecret;
|
|
1564
|
+
remoteManagementSettings?: RemoteManagementSettingsPatch;
|
|
1565
|
+
snapshotPassword?: AsymmetricEncryptedSecret;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
// @public
|
|
1569
|
+
export interface SendTestAlertEmailRequest {
|
|
1570
|
+
emailList: string[];
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
// @public
|
|
1574
|
+
export type SslStatus = "Enabled" | "Disabled";
|
|
1575
|
+
|
|
1576
|
+
// @public
|
|
1577
|
+
export interface StorageAccountCredential extends BaseModel {
|
|
1578
|
+
accessKey?: AsymmetricEncryptedSecret;
|
|
1579
|
+
endPoint: string;
|
|
1580
|
+
sslStatus: SslStatus;
|
|
1581
|
+
readonly volumesCount?: number;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
// @public
|
|
1585
|
+
export interface StorageAccountCredentialList {
|
|
1586
|
+
value: StorageAccountCredential[];
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
// @public
|
|
1590
|
+
export interface StorageAccountCredentials {
|
|
1591
|
+
beginCreateOrUpdate(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, parameters: StorageAccountCredential, options?: StorageAccountCredentialsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<StorageAccountCredentialsCreateOrUpdateResponse>, StorageAccountCredentialsCreateOrUpdateResponse>>;
|
|
1592
|
+
beginCreateOrUpdateAndWait(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, parameters: StorageAccountCredential, options?: StorageAccountCredentialsCreateOrUpdateOptionalParams): Promise<StorageAccountCredentialsCreateOrUpdateResponse>;
|
|
1593
|
+
beginDelete(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1594
|
+
beginDeleteAndWait(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsDeleteOptionalParams): Promise<void>;
|
|
1595
|
+
get(storageAccountCredentialName: string, resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsGetOptionalParams): Promise<StorageAccountCredentialsGetResponse>;
|
|
1596
|
+
listByManager(resourceGroupName: string, managerName: string, options?: StorageAccountCredentialsListByManagerOptionalParams): PagedAsyncIterableIterator<StorageAccountCredential>;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
// @public
|
|
1600
|
+
export interface StorageAccountCredentialsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1601
|
+
resumeFrom?: string;
|
|
1602
|
+
updateIntervalInMs?: number;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
// @public
|
|
1606
|
+
export type StorageAccountCredentialsCreateOrUpdateResponse = StorageAccountCredential;
|
|
1607
|
+
|
|
1608
|
+
// @public
|
|
1609
|
+
export interface StorageAccountCredentialsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1610
|
+
resumeFrom?: string;
|
|
1611
|
+
updateIntervalInMs?: number;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
// @public
|
|
1615
|
+
export interface StorageAccountCredentialsGetOptionalParams extends coreClient.OperationOptions {
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
// @public
|
|
1619
|
+
export type StorageAccountCredentialsGetResponse = StorageAccountCredential;
|
|
1620
|
+
|
|
1621
|
+
// @public
|
|
1622
|
+
export interface StorageAccountCredentialsListByManagerOptionalParams extends coreClient.OperationOptions {
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
// @public
|
|
1626
|
+
export type StorageAccountCredentialsListByManagerResponse = StorageAccountCredentialList;
|
|
1627
|
+
|
|
1628
|
+
// @public (undocumented)
|
|
1629
|
+
export class StorSimple8000SeriesManagementClient extends coreClient.ServiceClient {
|
|
1630
|
+
// (undocumented)
|
|
1631
|
+
$host: string;
|
|
1632
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorSimple8000SeriesManagementClientOptionalParams);
|
|
1633
|
+
// (undocumented)
|
|
1634
|
+
accessControlRecords: AccessControlRecords;
|
|
1635
|
+
// (undocumented)
|
|
1636
|
+
alerts: Alerts;
|
|
1637
|
+
// (undocumented)
|
|
1638
|
+
apiVersion: string;
|
|
1639
|
+
// (undocumented)
|
|
1640
|
+
backupPolicies: BackupPolicies;
|
|
1641
|
+
// (undocumented)
|
|
1642
|
+
backups: Backups;
|
|
1643
|
+
// (undocumented)
|
|
1644
|
+
backupSchedules: BackupSchedules;
|
|
1645
|
+
// (undocumented)
|
|
1646
|
+
bandwidthSettings: BandwidthSettings;
|
|
1647
|
+
// (undocumented)
|
|
1648
|
+
cloudAppliances: CloudAppliances;
|
|
1649
|
+
// (undocumented)
|
|
1650
|
+
devices: Devices;
|
|
1651
|
+
// (undocumented)
|
|
1652
|
+
deviceSettings: DeviceSettings;
|
|
1653
|
+
// (undocumented)
|
|
1654
|
+
hardwareComponentGroups: HardwareComponentGroups;
|
|
1655
|
+
// (undocumented)
|
|
1656
|
+
jobs: Jobs;
|
|
1657
|
+
// (undocumented)
|
|
1658
|
+
managers: Managers;
|
|
1659
|
+
// (undocumented)
|
|
1660
|
+
operations: Operations;
|
|
1661
|
+
// (undocumented)
|
|
1662
|
+
storageAccountCredentials: StorageAccountCredentials;
|
|
1663
|
+
// (undocumented)
|
|
1664
|
+
subscriptionId: string;
|
|
1665
|
+
// (undocumented)
|
|
1666
|
+
volumeContainers: VolumeContainers;
|
|
1667
|
+
// (undocumented)
|
|
1668
|
+
volumes: Volumes;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
// @public
|
|
1672
|
+
export interface StorSimple8000SeriesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
1673
|
+
$host?: string;
|
|
1674
|
+
apiVersion?: string;
|
|
1675
|
+
endpoint?: string;
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
// @public
|
|
1679
|
+
export interface SymmetricEncryptedSecret {
|
|
1680
|
+
encryptionAlgorithm: EncryptionAlgorithm;
|
|
1681
|
+
value: string;
|
|
1682
|
+
valueCertificateThumbprint?: string;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
// @public
|
|
1686
|
+
export interface TargetEligibilityErrorMessage {
|
|
1687
|
+
message?: string;
|
|
1688
|
+
resolution?: string;
|
|
1689
|
+
resultCode?: TargetEligibilityResultCode;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
// @public
|
|
1693
|
+
export interface TargetEligibilityResult {
|
|
1694
|
+
eligibilityStatus?: TargetEligibilityStatus;
|
|
1695
|
+
messages?: TargetEligibilityErrorMessage[];
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
// @public
|
|
1699
|
+
export type TargetEligibilityResultCode = "TargetAndSourceCannotBeSameError" | "TargetIsNotOnlineError" | "TargetSourceIncompatibleVersionError" | "LocalToTieredVolumesConversionWarning" | "TargetInsufficientCapacityError" | "TargetInsufficientLocalVolumeMemoryError" | "TargetInsufficientTieredVolumeMemoryError";
|
|
1700
|
+
|
|
1701
|
+
// @public
|
|
1702
|
+
export type TargetEligibilityStatus = "NotEligible" | "Eligible";
|
|
1703
|
+
|
|
1704
|
+
// @public
|
|
1705
|
+
export interface Time {
|
|
1706
|
+
hours: number;
|
|
1707
|
+
minutes: number;
|
|
1708
|
+
seconds: number;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
// @public
|
|
1712
|
+
export interface TimeSettings extends BaseModel {
|
|
1713
|
+
primaryTimeServer?: string;
|
|
1714
|
+
secondaryTimeServer?: string[];
|
|
1715
|
+
timeZone: string;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
// @public
|
|
1719
|
+
export interface Updates extends BaseModel {
|
|
1720
|
+
isUpdateInProgress?: boolean;
|
|
1721
|
+
lastUpdatedTime?: Date;
|
|
1722
|
+
maintenanceModeUpdatesAvailable?: boolean;
|
|
1723
|
+
regularUpdatesAvailable?: boolean;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
// @public
|
|
1727
|
+
export type VirtualMachineApiType = "Classic" | "Arm";
|
|
1728
|
+
|
|
1729
|
+
// @public
|
|
1730
|
+
export interface VmImage {
|
|
1731
|
+
name: string;
|
|
1732
|
+
offer: string;
|
|
1733
|
+
publisher: string;
|
|
1734
|
+
sku: string;
|
|
1735
|
+
version: string;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
// @public
|
|
1739
|
+
export interface Volume extends BaseModel {
|
|
1740
|
+
accessControlRecordIds: string[];
|
|
1741
|
+
readonly backupPolicyIds?: string[];
|
|
1742
|
+
readonly backupStatus?: BackupStatus;
|
|
1743
|
+
monitoringStatus: MonitoringStatus;
|
|
1744
|
+
readonly operationStatus?: OperationStatus;
|
|
1745
|
+
sizeInBytes: number;
|
|
1746
|
+
readonly volumeContainerId?: string;
|
|
1747
|
+
volumeStatus: VolumeStatus;
|
|
1748
|
+
volumeType: VolumeType;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
// @public
|
|
1752
|
+
export interface VolumeContainer extends BaseModel {
|
|
1753
|
+
bandWidthRateInMbps?: number;
|
|
1754
|
+
bandwidthSettingId?: string;
|
|
1755
|
+
encryptionKey?: AsymmetricEncryptedSecret;
|
|
1756
|
+
readonly encryptionStatus?: EncryptionStatus;
|
|
1757
|
+
readonly ownerShipStatus?: OwnerShipStatus;
|
|
1758
|
+
storageAccountCredentialId: string;
|
|
1759
|
+
readonly totalCloudStorageUsageInBytes?: number;
|
|
1760
|
+
readonly volumeCount?: number;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
// @public
|
|
1764
|
+
export interface VolumeContainerFailoverMetadata {
|
|
1765
|
+
volumeContainerId?: string;
|
|
1766
|
+
volumes?: VolumeFailoverMetadata[];
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
// @public
|
|
1770
|
+
export interface VolumeContainerList {
|
|
1771
|
+
value: VolumeContainer[];
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
// @public
|
|
1775
|
+
export interface VolumeContainers {
|
|
1776
|
+
beginCreateOrUpdate(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, parameters: VolumeContainer, options?: VolumeContainersCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<VolumeContainersCreateOrUpdateResponse>, VolumeContainersCreateOrUpdateResponse>>;
|
|
1777
|
+
beginCreateOrUpdateAndWait(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, parameters: VolumeContainer, options?: VolumeContainersCreateOrUpdateOptionalParams): Promise<VolumeContainersCreateOrUpdateResponse>;
|
|
1778
|
+
beginDelete(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1779
|
+
beginDeleteAndWait(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersDeleteOptionalParams): Promise<void>;
|
|
1780
|
+
get(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersGetOptionalParams): Promise<VolumeContainersGetResponse>;
|
|
1781
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersListByDeviceOptionalParams): PagedAsyncIterableIterator<VolumeContainer>;
|
|
1782
|
+
listMetricDefinition(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumeContainersListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1783
|
+
listMetrics(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, filter: string, options?: VolumeContainersListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
// @public
|
|
1787
|
+
export interface VolumeContainersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1788
|
+
resumeFrom?: string;
|
|
1789
|
+
updateIntervalInMs?: number;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
// @public
|
|
1793
|
+
export type VolumeContainersCreateOrUpdateResponse = VolumeContainer;
|
|
1794
|
+
|
|
1795
|
+
// @public
|
|
1796
|
+
export interface VolumeContainersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1797
|
+
resumeFrom?: string;
|
|
1798
|
+
updateIntervalInMs?: number;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
// @public
|
|
1802
|
+
export interface VolumeContainersGetOptionalParams extends coreClient.OperationOptions {
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
// @public
|
|
1806
|
+
export type VolumeContainersGetResponse = VolumeContainer;
|
|
1807
|
+
|
|
1808
|
+
// @public
|
|
1809
|
+
export interface VolumeContainersListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
// @public
|
|
1813
|
+
export type VolumeContainersListByDeviceResponse = VolumeContainerList;
|
|
1814
|
+
|
|
1815
|
+
// @public
|
|
1816
|
+
export interface VolumeContainersListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
// @public
|
|
1820
|
+
export type VolumeContainersListMetricDefinitionResponse = MetricDefinitionList;
|
|
1821
|
+
|
|
1822
|
+
// @public
|
|
1823
|
+
export interface VolumeContainersListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
// @public
|
|
1827
|
+
export type VolumeContainersListMetricsResponse = MetricList;
|
|
1828
|
+
|
|
1829
|
+
// @public
|
|
1830
|
+
export interface VolumeFailoverMetadata {
|
|
1831
|
+
backupCreatedDate?: Date;
|
|
1832
|
+
backupElementId?: string;
|
|
1833
|
+
backupId?: string;
|
|
1834
|
+
backupPolicyId?: string;
|
|
1835
|
+
sizeInBytes?: number;
|
|
1836
|
+
volumeId?: string;
|
|
1837
|
+
volumeType?: VolumeType;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
// @public
|
|
1841
|
+
export interface VolumeList {
|
|
1842
|
+
value: Volume[];
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
// @public
|
|
1846
|
+
export interface Volumes {
|
|
1847
|
+
beginCreateOrUpdate(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, parameters: Volume, options?: VolumesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<VolumesCreateOrUpdateResponse>, VolumesCreateOrUpdateResponse>>;
|
|
1848
|
+
beginCreateOrUpdateAndWait(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, parameters: Volume, options?: VolumesCreateOrUpdateOptionalParams): Promise<VolumesCreateOrUpdateResponse>;
|
|
1849
|
+
beginDelete(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1850
|
+
beginDeleteAndWait(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesDeleteOptionalParams): Promise<void>;
|
|
1851
|
+
get(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesGetOptionalParams): Promise<VolumesGetResponse>;
|
|
1852
|
+
listByDevice(deviceName: string, resourceGroupName: string, managerName: string, options?: VolumesListByDeviceOptionalParams): PagedAsyncIterableIterator<Volume>;
|
|
1853
|
+
listByVolumeContainer(deviceName: string, volumeContainerName: string, resourceGroupName: string, managerName: string, options?: VolumesListByVolumeContainerOptionalParams): PagedAsyncIterableIterator<Volume>;
|
|
1854
|
+
listMetricDefinition(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, options?: VolumesListMetricDefinitionOptionalParams): PagedAsyncIterableIterator<MetricDefinition>;
|
|
1855
|
+
listMetrics(deviceName: string, volumeContainerName: string, volumeName: string, resourceGroupName: string, managerName: string, filter: string, options?: VolumesListMetricsOptionalParams): PagedAsyncIterableIterator<Metrics>;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
// @public
|
|
1859
|
+
export interface VolumesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1860
|
+
resumeFrom?: string;
|
|
1861
|
+
updateIntervalInMs?: number;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
// @public
|
|
1865
|
+
export type VolumesCreateOrUpdateResponse = Volume;
|
|
1866
|
+
|
|
1867
|
+
// @public
|
|
1868
|
+
export interface VolumesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1869
|
+
resumeFrom?: string;
|
|
1870
|
+
updateIntervalInMs?: number;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
// @public
|
|
1874
|
+
export interface VolumesGetOptionalParams extends coreClient.OperationOptions {
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
// @public
|
|
1878
|
+
export type VolumesGetResponse = Volume;
|
|
1879
|
+
|
|
1880
|
+
// @public
|
|
1881
|
+
export interface VolumesListByDeviceOptionalParams extends coreClient.OperationOptions {
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
// @public
|
|
1885
|
+
export type VolumesListByDeviceResponse = VolumeList;
|
|
1886
|
+
|
|
1887
|
+
// @public
|
|
1888
|
+
export interface VolumesListByVolumeContainerOptionalParams extends coreClient.OperationOptions {
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
// @public
|
|
1892
|
+
export type VolumesListByVolumeContainerResponse = VolumeList;
|
|
1893
|
+
|
|
1894
|
+
// @public
|
|
1895
|
+
export interface VolumesListMetricDefinitionOptionalParams extends coreClient.OperationOptions {
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
// @public
|
|
1899
|
+
export type VolumesListMetricDefinitionResponse = MetricDefinitionList;
|
|
1900
|
+
|
|
1901
|
+
// @public
|
|
1902
|
+
export interface VolumesListMetricsOptionalParams extends coreClient.OperationOptions {
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
// @public
|
|
1906
|
+
export type VolumesListMetricsResponse = MetricList;
|
|
1907
|
+
|
|
1908
|
+
// @public
|
|
1909
|
+
export type VolumeStatus = "Online" | "Offline";
|
|
1910
|
+
|
|
1911
|
+
// @public
|
|
1912
|
+
export type VolumeType = "Tiered" | "Archival" | "LocallyPinned";
|
|
1913
|
+
|
|
1914
|
+
// @public
|
|
1915
|
+
export interface WebproxySettings {
|
|
1916
|
+
authentication: AuthenticationType;
|
|
1917
|
+
connectionUri?: string;
|
|
1918
|
+
username: string;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
// (No @packageDocumentation comment for this package)
|
|
1922
|
+
|
|
1923
|
+
```
|