@azure/arm-databox 5.0.0-beta.3 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/index.js +791 -161
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/jobsBookShipmentPickUpSample.js +12 -5
- package/dist-esm/samples-dev/jobsBookShipmentPickUpSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsCancelSample.js +12 -5
- package/dist-esm/samples-dev/jobsCancelSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsCreateSample.js +93 -86
- package/dist-esm/samples-dev/jobsCreateSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsDeleteSample.js +12 -5
- package/dist-esm/samples-dev/jobsDeleteSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsGetSample.js +32 -25
- package/dist-esm/samples-dev/jobsGetSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsListByResourceGroupSample.js +23 -9
- package/dist-esm/samples-dev/jobsListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsListCredentialsSample.js +24 -10
- package/dist-esm/samples-dev/jobsListCredentialsSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsListSample.js +22 -8
- package/dist-esm/samples-dev/jobsListSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsMarkDevicesShippedSample.js +16 -6
- package/dist-esm/samples-dev/jobsMarkDevicesShippedSample.js.map +1 -1
- package/dist-esm/samples-dev/jobsUpdateSample.js +39 -32
- package/dist-esm/samples-dev/jobsUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/mitigateSample.js +16 -6
- package/dist-esm/samples-dev/mitigateSample.js.map +1 -1
- package/dist-esm/samples-dev/operationsListSample.js +23 -8
- package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceListAvailableSkusByResourceGroupSample.js +24 -10
- package/dist-esm/samples-dev/serviceListAvailableSkusByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceRegionConfigurationByResourceGroupSample.js +11 -4
- package/dist-esm/samples-dev/serviceRegionConfigurationByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceRegionConfigurationSample.js +10 -3
- package/dist-esm/samples-dev/serviceRegionConfigurationSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceValidateAddressSample.js +17 -10
- package/dist-esm/samples-dev/serviceValidateAddressSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceValidateInputsByResourceGroupSample.js +20 -13
- package/dist-esm/samples-dev/serviceValidateInputsByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/serviceValidateInputsSample.js +19 -12
- package/dist-esm/samples-dev/serviceValidateInputsSample.js.map +1 -1
- package/dist-esm/src/dataBoxManagementClient.js +2 -2
- package/dist-esm/src/dataBoxManagementClient.js.map +1 -1
- package/dist-esm/src/lroImpl.d.ts +6 -11
- package/dist-esm/src/lroImpl.d.ts.map +1 -1
- package/dist-esm/src/lroImpl.js +12 -20
- package/dist-esm/src/lroImpl.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +361 -77
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +19 -1
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +11 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +614 -46
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +1 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/jobs.d.ts +4 -4
- package/dist-esm/src/operations/jobs.d.ts.map +1 -1
- package/dist-esm/src/operations/jobs.js +62 -31
- package/dist-esm/src/operations/jobs.js.map +1 -1
- package/dist-esm/src/operations/operations.js +12 -6
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/service.js +12 -6
- package/dist-esm/src/operations/service.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/jobs.d.ts +4 -4
- package/dist-esm/src/operationsInterfaces/jobs.d.ts.map +1 -1
- package/dist-esm/src/pagingHelper.d.ts +4 -4
- package/dist-esm/src/pagingHelper.js +4 -4
- package/dist-esm/test/databox_operations_test.spec.d.ts +4 -0
- package/dist-esm/test/databox_operations_test.spec.d.ts.map +1 -0
- package/dist-esm/test/databox_operations_test.spec.js +78 -0
- package/dist-esm/test/databox_operations_test.spec.js.map +1 -0
- package/package.json +11 -10
- package/review/arm-databox.api.md +123 -10
- package/src/dataBoxManagementClient.ts +2 -2
- package/src/lroImpl.ts +31 -23
- package/src/models/index.ts +336 -30
- package/src/models/mappers.ts +634 -42
- package/src/models/parameters.ts +1 -1
- package/src/operations/jobs.ts +39 -31
- package/src/operations/operations.ts +0 -1
- package/src/operations/service.ts +0 -1
- package/src/operationsInterfaces/jobs.ts +4 -4
- package/src/pagingHelper.ts +4 -4
- package/types/arm-databox.d.ts +332 -35
- package/types/tsdoc-metadata.json +1 -1
- package/dist-esm/test/sampleTest.d.ts +0 -2
- package/dist-esm/test/sampleTest.d.ts.map +0 -1
- package/dist-esm/test/sampleTest.js +0 -38
- package/dist-esm/test/sampleTest.js.map +0 -1
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as coreClient from "@azure/core-client";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
2
|
+
export type JobDetailsUnion = JobDetails | DataBoxCustomerDiskJobDetails | DataBoxDiskJobDetails | DataBoxHeavyJobDetails | DataBoxJobDetails;
|
|
3
|
+
export type DataAccountDetailsUnion = DataAccountDetails | ManagedDiskDetails | StorageAccountDetails;
|
|
4
|
+
export type CopyLogDetailsUnion = CopyLogDetails | DataBoxAccountCopyLogDetails | DataBoxCustomerDiskCopyLogDetails | DataBoxDiskCopyLogDetails | DataBoxHeavyAccountCopyLogDetails;
|
|
5
|
+
export type DatacenterAddressResponseUnion = DatacenterAddressResponse | DatacenterAddressInstructionResponse | DatacenterAddressLocationResponse;
|
|
6
|
+
export type ValidationInputRequestUnion = ValidationInputRequest | ValidateAddress | CreateOrderLimitForSubscriptionValidationRequest | DataTransferDetailsValidationRequest | PreferencesValidationRequest | SkuAvailabilityValidationRequest | SubscriptionIsAllowedToCreateJobValidationRequest;
|
|
7
|
+
export type ValidationInputResponseUnion = ValidationInputResponse | AddressValidationProperties | CreateOrderLimitForSubscriptionValidationResponseProperties | DataTransferDetailsValidationResponseProperties | PreferencesValidationResponseProperties | SkuAvailabilityValidationResponseProperties | SubscriptionIsAllowedToCreateJobValidationResponseProperties;
|
|
8
|
+
export type ValidationRequestUnion = ValidationRequest | CreateJobValidations;
|
|
9
|
+
export type JobSecretsUnion = JobSecrets | CustomerDiskJobSecrets | DataBoxDiskJobSecrets | DataBoxHeavyJobSecrets | DataboxJobSecrets;
|
|
10
|
+
export type ScheduleAvailabilityRequestUnion = ScheduleAvailabilityRequest | DataBoxScheduleAvailabilityRequest | DiskScheduleAvailabilityRequest | HeavyScheduleAvailabilityRequest;
|
|
11
|
+
export type GranularCopyLogDetailsUnion = GranularCopyLogDetails | DataBoxDiskGranularCopyLogDetails;
|
|
11
12
|
/** Operation Collection. */
|
|
12
13
|
export interface OperationList {
|
|
13
14
|
/**
|
|
@@ -74,31 +75,31 @@ export interface JobResourceList {
|
|
|
74
75
|
/** Link for the next set of job resources. */
|
|
75
76
|
nextLink?: string;
|
|
76
77
|
}
|
|
77
|
-
/**
|
|
78
|
+
/** Provides additional information about an http error response. */
|
|
78
79
|
export interface CloudError {
|
|
79
|
-
/** Cloud error code. */
|
|
80
|
-
code?: string;
|
|
81
|
-
/** Cloud error message. */
|
|
82
|
-
message?: string;
|
|
83
|
-
/** Cloud error target. */
|
|
84
|
-
target?: string;
|
|
85
80
|
/**
|
|
86
|
-
*
|
|
81
|
+
* Gets or sets additional error info.
|
|
87
82
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
88
83
|
*/
|
|
89
|
-
readonly
|
|
84
|
+
readonly additionalInfo?: AdditionalErrorInfo[];
|
|
85
|
+
/** Error code. */
|
|
86
|
+
code?: string;
|
|
90
87
|
/**
|
|
91
|
-
*
|
|
88
|
+
* Gets or sets details for the error.
|
|
92
89
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
93
90
|
*/
|
|
94
|
-
readonly
|
|
91
|
+
readonly details?: CloudError[];
|
|
92
|
+
/** The error message parsed from the body of the http error response. */
|
|
93
|
+
message?: string;
|
|
94
|
+
/** Gets or sets the target of the error. */
|
|
95
|
+
target?: string;
|
|
95
96
|
}
|
|
96
|
-
/**
|
|
97
|
+
/** This class represents additional info which Resource Providers pass when an error occurs. */
|
|
97
98
|
export interface AdditionalErrorInfo {
|
|
98
|
-
/** Additional
|
|
99
|
-
type?: string;
|
|
100
|
-
/** Additional error info. */
|
|
99
|
+
/** Additional information of the type of error. */
|
|
101
100
|
info?: Record<string, unknown>;
|
|
101
|
+
/** Type of error (e.g. CustomerIntervention, PolicyViolation, SecurityViolation). */
|
|
102
|
+
type?: string;
|
|
102
103
|
}
|
|
103
104
|
/** Job details. */
|
|
104
105
|
export interface JobDetails {
|
|
@@ -129,6 +130,8 @@ export interface JobDetails {
|
|
|
129
130
|
dataExportDetails?: DataExportDetails[];
|
|
130
131
|
/** Preferences for the order. */
|
|
131
132
|
preferences?: Preferences;
|
|
133
|
+
/** Optional Reverse Shipping details for order. */
|
|
134
|
+
reverseShippingDetails?: ReverseShippingDetails;
|
|
132
135
|
/**
|
|
133
136
|
* List of copy log details.
|
|
134
137
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -144,6 +147,11 @@ export interface JobDetails {
|
|
|
144
147
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
145
148
|
*/
|
|
146
149
|
readonly chainOfCustodySasKey?: string;
|
|
150
|
+
/**
|
|
151
|
+
* Holds device data erasure details
|
|
152
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
153
|
+
*/
|
|
154
|
+
readonly deviceErasureDetails?: DeviceErasureDetails;
|
|
147
155
|
/** Details about which key encryption type is being used. */
|
|
148
156
|
keyEncryptionKey?: KeyEncryptionKey;
|
|
149
157
|
/** The expected size of the data, which needs to be transferred in this job, in terabytes. */
|
|
@@ -241,6 +249,10 @@ export interface ShippingAddress {
|
|
|
241
249
|
companyName?: string;
|
|
242
250
|
/** Type of address. */
|
|
243
251
|
addressType?: AddressType;
|
|
252
|
+
/** Flag to indicate if customer has chosen to skip default address validation */
|
|
253
|
+
skipAddressValidation?: boolean;
|
|
254
|
+
/** Tax Identification Number */
|
|
255
|
+
taxIdentificationNumber?: string;
|
|
244
256
|
}
|
|
245
257
|
/** package shipping details */
|
|
246
258
|
export interface PackageShippingDetails {
|
|
@@ -353,24 +365,72 @@ export interface Preferences {
|
|
|
353
365
|
preferredDataCenterRegion?: string[];
|
|
354
366
|
/** Preferences related to the shipment logistics of the sku. */
|
|
355
367
|
transportPreferences?: TransportPreferences;
|
|
368
|
+
/** Optional Preferences related to the reverse shipment logistics of the sku. */
|
|
369
|
+
reverseTransportPreferences?: TransportPreferences;
|
|
356
370
|
/** Preferences related to the Encryption. */
|
|
357
371
|
encryptionPreferences?: EncryptionPreferences;
|
|
372
|
+
/** Preferences related to the Access Tier of storage accounts. */
|
|
373
|
+
storageAccountAccessTierPreferences?: string[];
|
|
358
374
|
}
|
|
359
375
|
/** Preferences related to the shipment logistics of the sku */
|
|
360
376
|
export interface TransportPreferences {
|
|
361
377
|
/** Indicates Shipment Logistics type that the customer preferred. */
|
|
362
378
|
preferredShipmentType: TransportShipmentTypes;
|
|
379
|
+
/**
|
|
380
|
+
* Read only property which indicates whether transport preferences has been updated or not after device is prepared.
|
|
381
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
382
|
+
*/
|
|
383
|
+
readonly isUpdated?: boolean;
|
|
363
384
|
}
|
|
364
385
|
/** Preferences related to the Encryption. */
|
|
365
386
|
export interface EncryptionPreferences {
|
|
366
387
|
/** Defines secondary layer of software-based encryption enablement. */
|
|
367
388
|
doubleEncryption?: DoubleEncryption;
|
|
389
|
+
/** Defines Hardware level encryption (Only for disk) */
|
|
390
|
+
hardwareEncryption?: HardwareEncryption;
|
|
391
|
+
}
|
|
392
|
+
/** Reverse Shipping Address and contact details for a job. */
|
|
393
|
+
export interface ReverseShippingDetails {
|
|
394
|
+
/** Contact Info. */
|
|
395
|
+
contactDetails?: ContactInfo;
|
|
396
|
+
/** Shipping address where customer wishes to receive the device. */
|
|
397
|
+
shippingAddress?: ShippingAddress;
|
|
398
|
+
/**
|
|
399
|
+
* A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared.
|
|
400
|
+
* Read only field
|
|
401
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
402
|
+
*/
|
|
403
|
+
readonly isUpdated?: boolean;
|
|
404
|
+
}
|
|
405
|
+
/** Contact Info. */
|
|
406
|
+
export interface ContactInfo {
|
|
407
|
+
/** Contact name of the person. */
|
|
408
|
+
contactName: string;
|
|
409
|
+
/** Phone number of the contact person. */
|
|
410
|
+
phone: string;
|
|
411
|
+
/** Phone extension number of the contact person. */
|
|
412
|
+
phoneExtension?: string;
|
|
413
|
+
/** Mobile number of the contact person. */
|
|
414
|
+
mobile?: string;
|
|
368
415
|
}
|
|
369
416
|
/** Details for log generated during copy. */
|
|
370
417
|
export interface CopyLogDetails {
|
|
371
418
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
372
419
|
copyLogDetailsType: "DataBox" | "DataBoxCustomerDisk" | "DataBoxDisk" | "DataBoxHeavy";
|
|
373
420
|
}
|
|
421
|
+
/** Device erasure details with erasure completion status and erasureordestructionlog sas key */
|
|
422
|
+
export interface DeviceErasureDetails {
|
|
423
|
+
/**
|
|
424
|
+
* Holds the device erasure completion status
|
|
425
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
426
|
+
*/
|
|
427
|
+
readonly deviceErasureStatus?: StageStatus;
|
|
428
|
+
/**
|
|
429
|
+
* Shared access key to download cleanup or destruction certificate for device
|
|
430
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
431
|
+
*/
|
|
432
|
+
readonly erasureOrDestructionCertificateSasKey?: string;
|
|
433
|
+
}
|
|
374
434
|
/** Encryption key containing details about key to encrypt different keys. */
|
|
375
435
|
export interface KeyEncryptionKey {
|
|
376
436
|
/** Type of encryption key used for key encryption. */
|
|
@@ -516,7 +576,11 @@ export interface UserAssignedIdentity {
|
|
|
516
576
|
/** The Mitigate Job captured from request body for Mitigate API */
|
|
517
577
|
export interface MitigateJobRequest {
|
|
518
578
|
/** Resolution code for the job */
|
|
519
|
-
customerResolutionCode
|
|
579
|
+
customerResolutionCode?: CustomerResolutionCode;
|
|
580
|
+
/** Serial number and the customer resolution code corresponding to each serial number */
|
|
581
|
+
serialNumberCustomerResolutionMap?: {
|
|
582
|
+
[propertyName: string]: CustomerResolutionCode;
|
|
583
|
+
};
|
|
520
584
|
}
|
|
521
585
|
/** The request body to provide the delivery package details of job */
|
|
522
586
|
export interface MarkDevicesShippedRequest {
|
|
@@ -598,6 +662,11 @@ export interface SkuInformation {
|
|
|
598
662
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
599
663
|
*/
|
|
600
664
|
readonly requiredFeature?: string;
|
|
665
|
+
/**
|
|
666
|
+
* List of all the Countries in the SKU specific commerce boundary
|
|
667
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
668
|
+
*/
|
|
669
|
+
readonly countriesWithinCommerceBoundary?: string[];
|
|
601
670
|
}
|
|
602
671
|
/** Map of data location to service location */
|
|
603
672
|
export interface DataLocationToServiceLocationMap {
|
|
@@ -715,6 +784,10 @@ export interface UpdateJobDetails {
|
|
|
715
784
|
contactDetails?: ContactDetails;
|
|
716
785
|
/** Shipping address of the customer. */
|
|
717
786
|
shippingAddress?: ShippingAddress;
|
|
787
|
+
/** Reverse Shipping Address and contact details for a job. */
|
|
788
|
+
reverseShippingDetails?: ReverseShippingDetails;
|
|
789
|
+
/** Preferences related to the order */
|
|
790
|
+
preferences?: Preferences;
|
|
718
791
|
/** Key encryption key for the job. */
|
|
719
792
|
keyEncryptionKey?: KeyEncryptionKey;
|
|
720
793
|
/** Return package details of job. */
|
|
@@ -952,6 +1025,11 @@ export interface ArmBaseObject {
|
|
|
952
1025
|
*/
|
|
953
1026
|
readonly type?: string;
|
|
954
1027
|
}
|
|
1028
|
+
/** Granular Details for log generated during copy. */
|
|
1029
|
+
export interface GranularCopyLogDetails {
|
|
1030
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1031
|
+
copyLogDetailsType: "DataBoxCustomerDisk";
|
|
1032
|
+
}
|
|
955
1033
|
/** Copy progress. */
|
|
956
1034
|
export interface CopyProgress {
|
|
957
1035
|
/**
|
|
@@ -1030,6 +1108,105 @@ export interface CopyProgress {
|
|
|
1030
1108
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1031
1109
|
*/
|
|
1032
1110
|
readonly isEnumerationInProgress?: boolean;
|
|
1111
|
+
/**
|
|
1112
|
+
* Error, if any, in the stage
|
|
1113
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1114
|
+
*/
|
|
1115
|
+
readonly error?: CloudError;
|
|
1116
|
+
/**
|
|
1117
|
+
* Available actions on the job.
|
|
1118
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1119
|
+
*/
|
|
1120
|
+
readonly actions?: CustomerResolutionCode[];
|
|
1121
|
+
}
|
|
1122
|
+
/** Granular Copy progress. */
|
|
1123
|
+
export interface GranularCopyProgress {
|
|
1124
|
+
/**
|
|
1125
|
+
* Name of the storage account. This will be empty for data account types other than storage account.
|
|
1126
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1127
|
+
*/
|
|
1128
|
+
readonly storageAccountName?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* Transfer type of data
|
|
1131
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1132
|
+
*/
|
|
1133
|
+
readonly transferType?: TransferType;
|
|
1134
|
+
/**
|
|
1135
|
+
* Data Account Type.
|
|
1136
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1137
|
+
*/
|
|
1138
|
+
readonly dataAccountType?: DataAccountType;
|
|
1139
|
+
/**
|
|
1140
|
+
* Id of the account where the data needs to be uploaded.
|
|
1141
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1142
|
+
*/
|
|
1143
|
+
readonly accountId?: string;
|
|
1144
|
+
/**
|
|
1145
|
+
* To indicate bytes transferred.
|
|
1146
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1147
|
+
*/
|
|
1148
|
+
readonly bytesProcessed?: number;
|
|
1149
|
+
/**
|
|
1150
|
+
* Total amount of data to be processed by the job.
|
|
1151
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1152
|
+
*/
|
|
1153
|
+
readonly totalBytesToProcess?: number;
|
|
1154
|
+
/**
|
|
1155
|
+
* Number of files processed
|
|
1156
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1157
|
+
*/
|
|
1158
|
+
readonly filesProcessed?: number;
|
|
1159
|
+
/**
|
|
1160
|
+
* Total files to process
|
|
1161
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1162
|
+
*/
|
|
1163
|
+
readonly totalFilesToProcess?: number;
|
|
1164
|
+
/**
|
|
1165
|
+
* Number of files not adhering to azure naming conventions which were processed by automatic renaming
|
|
1166
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1167
|
+
*/
|
|
1168
|
+
readonly invalidFilesProcessed?: number;
|
|
1169
|
+
/**
|
|
1170
|
+
* Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
|
|
1171
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1172
|
+
*/
|
|
1173
|
+
readonly invalidFileBytesUploaded?: number;
|
|
1174
|
+
/**
|
|
1175
|
+
* Number of folders not adhering to azure naming conventions which were processed by automatic renaming
|
|
1176
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1177
|
+
*/
|
|
1178
|
+
readonly renamedContainerCount?: number;
|
|
1179
|
+
/**
|
|
1180
|
+
* Number of files which could not be copied
|
|
1181
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1182
|
+
*/
|
|
1183
|
+
readonly filesErroredOut?: number;
|
|
1184
|
+
/**
|
|
1185
|
+
* To indicate directories errored out in the job.
|
|
1186
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1187
|
+
*/
|
|
1188
|
+
readonly directoriesErroredOut?: number;
|
|
1189
|
+
/**
|
|
1190
|
+
* To indicate directories renamed
|
|
1191
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1192
|
+
*/
|
|
1193
|
+
readonly invalidDirectoriesProcessed?: number;
|
|
1194
|
+
/**
|
|
1195
|
+
* To indicate if enumeration of data is in progress.
|
|
1196
|
+
* Until this is true, the TotalBytesToProcess may not be valid.
|
|
1197
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1198
|
+
*/
|
|
1199
|
+
readonly isEnumerationInProgress?: boolean;
|
|
1200
|
+
/**
|
|
1201
|
+
* Error, if any, in the stage
|
|
1202
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1203
|
+
*/
|
|
1204
|
+
readonly error?: CloudError;
|
|
1205
|
+
/**
|
|
1206
|
+
* Available actions on the job.
|
|
1207
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1208
|
+
*/
|
|
1209
|
+
readonly actions?: CustomerResolutionCode[];
|
|
1033
1210
|
}
|
|
1034
1211
|
/** Import disk details */
|
|
1035
1212
|
export interface ImportDiskDetails {
|
|
@@ -1098,6 +1275,16 @@ export interface DataBoxDiskCopyProgress {
|
|
|
1098
1275
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1099
1276
|
*/
|
|
1100
1277
|
readonly status?: CopyStatus;
|
|
1278
|
+
/**
|
|
1279
|
+
* Error, if any, in the stage
|
|
1280
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1281
|
+
*/
|
|
1282
|
+
readonly error?: CloudError;
|
|
1283
|
+
/**
|
|
1284
|
+
* Available actions on the job.
|
|
1285
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1286
|
+
*/
|
|
1287
|
+
readonly actions?: CustomerResolutionCode[];
|
|
1101
1288
|
}
|
|
1102
1289
|
/** The secrets related to a databox heavy. */
|
|
1103
1290
|
export interface DataBoxHeavySecret {
|
|
@@ -1198,6 +1385,16 @@ export interface DataBoxDiskJobDetails extends JobDetails {
|
|
|
1198
1385
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1199
1386
|
*/
|
|
1200
1387
|
readonly copyProgress?: DataBoxDiskCopyProgress[];
|
|
1388
|
+
/**
|
|
1389
|
+
* Copy progress per disk.
|
|
1390
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1391
|
+
*/
|
|
1392
|
+
readonly granularCopyProgress?: DataBoxDiskGranularCopyProgress[];
|
|
1393
|
+
/**
|
|
1394
|
+
* Copy progress per disk.
|
|
1395
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1396
|
+
*/
|
|
1397
|
+
readonly granularCopyLogDetails?: DataBoxDiskGranularCopyLogDetails[];
|
|
1201
1398
|
/**
|
|
1202
1399
|
* Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
|
|
1203
1400
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -1447,6 +1644,16 @@ export interface JobResource extends Resource {
|
|
|
1447
1644
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1448
1645
|
*/
|
|
1449
1646
|
readonly isShippingAddressEditable?: boolean;
|
|
1647
|
+
/**
|
|
1648
|
+
* The Editable status for Reverse Shipping Address and Contact Info
|
|
1649
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1650
|
+
*/
|
|
1651
|
+
readonly reverseShippingDetailsUpdate?: ReverseShippingDetailsEditStatus;
|
|
1652
|
+
/**
|
|
1653
|
+
* The Editable status for Reverse Transport preferences
|
|
1654
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1655
|
+
*/
|
|
1656
|
+
readonly reverseTransportPreferenceUpdate?: ReverseTransportPreferenceEditStatus;
|
|
1450
1657
|
/**
|
|
1451
1658
|
* Is Prepare To Ship Enabled on this job
|
|
1452
1659
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -1681,6 +1888,31 @@ export interface HeavyScheduleAvailabilityRequest extends ScheduleAvailabilityRe
|
|
|
1681
1888
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1682
1889
|
skuName: "DataBoxHeavy";
|
|
1683
1890
|
}
|
|
1891
|
+
/** Granular Copy Log Details for customer disk */
|
|
1892
|
+
export interface DataBoxDiskGranularCopyLogDetails extends GranularCopyLogDetails {
|
|
1893
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1894
|
+
copyLogDetailsType: "DataBoxCustomerDisk";
|
|
1895
|
+
/**
|
|
1896
|
+
* Disk Serial Number.
|
|
1897
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1898
|
+
*/
|
|
1899
|
+
readonly serialNumber?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
* Account id.
|
|
1902
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1903
|
+
*/
|
|
1904
|
+
readonly accountId?: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* Link for copy error logs.
|
|
1907
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1908
|
+
*/
|
|
1909
|
+
readonly errorLogLink?: string;
|
|
1910
|
+
/**
|
|
1911
|
+
* Link for copy verbose logs.
|
|
1912
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1913
|
+
*/
|
|
1914
|
+
readonly verboseLogLink?: string;
|
|
1915
|
+
}
|
|
1684
1916
|
/** DataBox CustomerDisk Copy Progress */
|
|
1685
1917
|
export interface DataBoxCustomerDiskCopyProgress extends CopyProgress {
|
|
1686
1918
|
/**
|
|
@@ -1694,6 +1926,29 @@ export interface DataBoxCustomerDiskCopyProgress extends CopyProgress {
|
|
|
1694
1926
|
*/
|
|
1695
1927
|
readonly copyStatus?: CopyStatus;
|
|
1696
1928
|
}
|
|
1929
|
+
/** DataBox Disk Granular Copy Progress */
|
|
1930
|
+
export interface DataBoxDiskGranularCopyProgress extends GranularCopyProgress {
|
|
1931
|
+
/**
|
|
1932
|
+
* Disk Serial Number.
|
|
1933
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1934
|
+
*/
|
|
1935
|
+
readonly serialNumber?: string;
|
|
1936
|
+
/**
|
|
1937
|
+
* The Status of the copy
|
|
1938
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1939
|
+
*/
|
|
1940
|
+
readonly copyStatus?: CopyStatus;
|
|
1941
|
+
}
|
|
1942
|
+
/** Defines headers for Jobs_delete operation. */
|
|
1943
|
+
export interface JobsDeleteHeaders {
|
|
1944
|
+
/** The URI to poll for completion status. */
|
|
1945
|
+
location?: string;
|
|
1946
|
+
}
|
|
1947
|
+
/** Defines headers for Jobs_update operation. */
|
|
1948
|
+
export interface JobsUpdateHeaders {
|
|
1949
|
+
/** The URI to poll for completion status. */
|
|
1950
|
+
location?: string;
|
|
1951
|
+
}
|
|
1697
1952
|
/** Known values of {@link StageName} that the service accepts. */
|
|
1698
1953
|
export declare enum KnownStageName {
|
|
1699
1954
|
/** An order has been created. */
|
|
@@ -1766,7 +2021,7 @@ export declare enum KnownStageName {
|
|
|
1766
2021
|
* **PreparingToShipFromAzureDC**: Preparing the device to ship to customer. \
|
|
1767
2022
|
* **ShippedToCustomer**: Shipped the device to customer.
|
|
1768
2023
|
*/
|
|
1769
|
-
export
|
|
2024
|
+
export type StageName = string;
|
|
1770
2025
|
/** Known values of {@link NotificationStageName} that the service accepts. */
|
|
1771
2026
|
export declare enum KnownNotificationStageName {
|
|
1772
2027
|
/** Notification at device prepared stage. */
|
|
@@ -1800,7 +2055,7 @@ export declare enum KnownNotificationStageName {
|
|
|
1800
2055
|
* **Created**: Notification at job created stage. \
|
|
1801
2056
|
* **ShippedToCustomer**: Notification at shipped devices to customer stage.
|
|
1802
2057
|
*/
|
|
1803
|
-
export
|
|
2058
|
+
export type NotificationStageName = string;
|
|
1804
2059
|
/** Known values of {@link DataCenterCode} that the service accepts. */
|
|
1805
2060
|
export declare enum KnownDataCenterCode {
|
|
1806
2061
|
/** Invalid */
|
|
@@ -1902,7 +2157,25 @@ export declare enum KnownDataCenterCode {
|
|
|
1902
2157
|
/** CH1 */
|
|
1903
2158
|
CH1 = "CH1",
|
|
1904
2159
|
/** DSM05 */
|
|
1905
|
-
DSM05 = "DSM05"
|
|
2160
|
+
DSM05 = "DSM05",
|
|
2161
|
+
/** DUB07 */
|
|
2162
|
+
DUB07 = "DUB07",
|
|
2163
|
+
/** PNQ01 */
|
|
2164
|
+
PNQ01 = "PNQ01",
|
|
2165
|
+
/** SVG20 */
|
|
2166
|
+
SVG20 = "SVG20",
|
|
2167
|
+
/** OSA02 */
|
|
2168
|
+
OSA02 = "OSA02",
|
|
2169
|
+
/** OSA22 */
|
|
2170
|
+
OSA22 = "OSA22",
|
|
2171
|
+
/** PAR22 */
|
|
2172
|
+
PAR22 = "PAR22",
|
|
2173
|
+
/** BN7 */
|
|
2174
|
+
BN7 = "BN7",
|
|
2175
|
+
/** SN6 */
|
|
2176
|
+
SN6 = "SN6",
|
|
2177
|
+
/** BJS20 */
|
|
2178
|
+
BJS20 = "BJS20"
|
|
1906
2179
|
}
|
|
1907
2180
|
/**
|
|
1908
2181
|
* Defines values for DataCenterCode. \
|
|
@@ -1958,9 +2231,18 @@ export declare enum KnownDataCenterCode {
|
|
|
1958
2231
|
* **PUS20** \
|
|
1959
2232
|
* **AdHoc** \
|
|
1960
2233
|
* **CH1** \
|
|
1961
|
-
* **DSM05**
|
|
2234
|
+
* **DSM05** \
|
|
2235
|
+
* **DUB07** \
|
|
2236
|
+
* **PNQ01** \
|
|
2237
|
+
* **SVG20** \
|
|
2238
|
+
* **OSA02** \
|
|
2239
|
+
* **OSA22** \
|
|
2240
|
+
* **PAR22** \
|
|
2241
|
+
* **BN7** \
|
|
2242
|
+
* **SN6** \
|
|
2243
|
+
* **BJS20**
|
|
1962
2244
|
*/
|
|
1963
|
-
export
|
|
2245
|
+
export type DataCenterCode = string;
|
|
1964
2246
|
/** Known values of {@link CopyStatus} that the service accepts. */
|
|
1965
2247
|
export declare enum KnownCopyStatus {
|
|
1966
2248
|
/** Data copy hasn't started yet. */
|
|
@@ -1997,7 +2279,7 @@ export declare enum KnownCopyStatus {
|
|
|
1997
2279
|
DriveNotDetected = "DriveNotDetected",
|
|
1998
2280
|
/** Copy failed due to corrupted drive. */
|
|
1999
2281
|
DriveCorrupted = "DriveCorrupted",
|
|
2000
|
-
/** Copy failed due to modified
|
|
2282
|
+
/** Copy failed due to modified or removed metadata files. */
|
|
2001
2283
|
MetadataFilesModifiedOrRemoved = "MetadataFilesModifiedOrRemoved"
|
|
2002
2284
|
}
|
|
2003
2285
|
/**
|
|
@@ -2022,70 +2304,76 @@ export declare enum KnownCopyStatus {
|
|
|
2022
2304
|
* **OtherUserError**: Copy failed due to user error. \
|
|
2023
2305
|
* **DriveNotDetected**: Copy failed due to disk detection error. \
|
|
2024
2306
|
* **DriveCorrupted**: Copy failed due to corrupted drive. \
|
|
2025
|
-
* **MetadataFilesModifiedOrRemoved**: Copy failed due to modified
|
|
2307
|
+
* **MetadataFilesModifiedOrRemoved**: Copy failed due to modified or removed metadata files.
|
|
2026
2308
|
*/
|
|
2027
|
-
export
|
|
2309
|
+
export type CopyStatus = string;
|
|
2028
2310
|
/** Defines values for TransferType. */
|
|
2029
|
-
export
|
|
2311
|
+
export type TransferType = "ImportToAzure" | "ExportFromAzure";
|
|
2312
|
+
/** Defines values for ReverseShippingDetailsEditStatus. */
|
|
2313
|
+
export type ReverseShippingDetailsEditStatus = "Enabled" | "Disabled" | "NotSupported";
|
|
2314
|
+
/** Defines values for ReverseTransportPreferenceEditStatus. */
|
|
2315
|
+
export type ReverseTransportPreferenceEditStatus = "Enabled" | "Disabled" | "NotSupported";
|
|
2030
2316
|
/** Defines values for StageStatus. */
|
|
2031
|
-
export
|
|
2317
|
+
export type StageStatus = "None" | "InProgress" | "Succeeded" | "Failed" | "Cancelled" | "Cancelling" | "SucceededWithErrors" | "WaitingForCustomerAction" | "SucceededWithWarnings" | "WaitingForCustomerActionForKek" | "WaitingForCustomerActionForCleanUp" | "CustomerActionPerformedForCleanUp" | "CustomerActionPerformed";
|
|
2032
2318
|
/** Defines values for AddressType. */
|
|
2033
|
-
export
|
|
2319
|
+
export type AddressType = "None" | "Residential" | "Commercial";
|
|
2034
2320
|
/** Defines values for DataAccountType. */
|
|
2035
|
-
export
|
|
2321
|
+
export type DataAccountType = "StorageAccount" | "ManagedDisk";
|
|
2036
2322
|
/** Defines values for LogCollectionLevel. */
|
|
2037
|
-
export
|
|
2323
|
+
export type LogCollectionLevel = "Error" | "Verbose";
|
|
2038
2324
|
/** Defines values for TransferConfigurationType. */
|
|
2039
|
-
export
|
|
2325
|
+
export type TransferConfigurationType = "TransferAll" | "TransferUsingFilter";
|
|
2040
2326
|
/** Defines values for FilterFileType. */
|
|
2041
|
-
export
|
|
2327
|
+
export type FilterFileType = "AzureBlob" | "AzureFile";
|
|
2042
2328
|
/** Defines values for ClassDiscriminator. */
|
|
2043
|
-
export
|
|
2329
|
+
export type ClassDiscriminator = "DataBox" | "DataBoxDisk" | "DataBoxHeavy" | "DataBoxCustomerDisk";
|
|
2044
2330
|
/** Defines values for TransportShipmentTypes. */
|
|
2045
|
-
export
|
|
2331
|
+
export type TransportShipmentTypes = "CustomerManaged" | "MicrosoftManaged";
|
|
2046
2332
|
/** Defines values for DoubleEncryption. */
|
|
2047
|
-
export
|
|
2333
|
+
export type DoubleEncryption = "Enabled" | "Disabled";
|
|
2334
|
+
/** Defines values for HardwareEncryption. */
|
|
2335
|
+
export type HardwareEncryption = "Enabled" | "Disabled";
|
|
2048
2336
|
/** Defines values for KekType. */
|
|
2049
|
-
export
|
|
2337
|
+
export type KekType = "MicrosoftManaged" | "CustomerManaged";
|
|
2050
2338
|
/** Defines values for CustomerResolutionCode. */
|
|
2051
|
-
export
|
|
2339
|
+
export type CustomerResolutionCode = "None" | "MoveToCleanUpDevice" | "Resume" | "Restart" | "ReachOutToOperation";
|
|
2052
2340
|
/** Defines values for DatacenterAddressType. */
|
|
2053
|
-
export
|
|
2341
|
+
export type DatacenterAddressType = "DatacenterAddressLocation" | "DatacenterAddressInstruction";
|
|
2054
2342
|
/** Defines values for JobDeliveryType. */
|
|
2055
|
-
export
|
|
2343
|
+
export type JobDeliveryType = "NonScheduled" | "Scheduled";
|
|
2056
2344
|
/** Defines values for SkuName. */
|
|
2057
|
-
export
|
|
2345
|
+
export type SkuName = "DataBox" | "DataBoxDisk" | "DataBoxHeavy" | "DataBoxCustomerDisk";
|
|
2058
2346
|
/** Defines values for SkuDisabledReason. */
|
|
2059
|
-
export
|
|
2347
|
+
export type SkuDisabledReason = "None" | "Country" | "Region" | "Feature" | "OfferType" | "NoSubscriptionInfo";
|
|
2060
2348
|
/** Defines values for ValidationInputDiscriminator. */
|
|
2061
|
-
export
|
|
2349
|
+
export type ValidationInputDiscriminator = "ValidateAddress" | "ValidateSubscriptionIsAllowedToCreateJob" | "ValidatePreferences" | "ValidateCreateOrderLimit" | "ValidateSkuAvailability" | "ValidateDataTransferDetails";
|
|
2062
2350
|
/** Defines values for AddressValidationStatus. */
|
|
2063
|
-
export
|
|
2351
|
+
export type AddressValidationStatus = "Valid" | "Invalid" | "Ambiguous";
|
|
2064
2352
|
/** Defines values for OverallValidationStatus. */
|
|
2065
|
-
export
|
|
2353
|
+
export type OverallValidationStatus = "AllValidToProceed" | "InputsRevisitRequired" | "CertainInputValidationsSkipped";
|
|
2066
2354
|
/** Defines values for ShareDestinationFormatType. */
|
|
2067
|
-
export
|
|
2355
|
+
export type ShareDestinationFormatType = "UnknownType" | "HCS" | "BlockBlob" | "PageBlob" | "AzureFile" | "ManagedDisk";
|
|
2068
2356
|
/** Defines values for AccessProtocol. */
|
|
2069
|
-
export
|
|
2357
|
+
export type AccessProtocol = "SMB" | "NFS";
|
|
2070
2358
|
/** Defines values for ValidationStatus. */
|
|
2071
|
-
export
|
|
2359
|
+
export type ValidationStatus = "Valid" | "Invalid" | "Skipped";
|
|
2072
2360
|
/** Optional parameters. */
|
|
2073
2361
|
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
2074
2362
|
}
|
|
2075
2363
|
/** Contains response data for the list operation. */
|
|
2076
|
-
export
|
|
2364
|
+
export type OperationsListResponse = OperationList;
|
|
2077
2365
|
/** Optional parameters. */
|
|
2078
2366
|
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2079
2367
|
}
|
|
2080
2368
|
/** Contains response data for the listNext operation. */
|
|
2081
|
-
export
|
|
2369
|
+
export type OperationsListNextResponse = OperationList;
|
|
2082
2370
|
/** Optional parameters. */
|
|
2083
2371
|
export interface JobsListOptionalParams extends coreClient.OperationOptions {
|
|
2084
2372
|
/** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */
|
|
2085
2373
|
skipToken?: string;
|
|
2086
2374
|
}
|
|
2087
2375
|
/** Contains response data for the list operation. */
|
|
2088
|
-
export
|
|
2376
|
+
export type JobsListResponse = JobResourceList;
|
|
2089
2377
|
/** Optional parameters. */
|
|
2090
2378
|
export interface JobsMarkDevicesShippedOptionalParams extends coreClient.OperationOptions {
|
|
2091
2379
|
}
|
|
@@ -2095,14 +2383,14 @@ export interface JobsListByResourceGroupOptionalParams extends coreClient.Operat
|
|
|
2095
2383
|
skipToken?: string;
|
|
2096
2384
|
}
|
|
2097
2385
|
/** Contains response data for the listByResourceGroup operation. */
|
|
2098
|
-
export
|
|
2386
|
+
export type JobsListByResourceGroupResponse = JobResourceList;
|
|
2099
2387
|
/** Optional parameters. */
|
|
2100
2388
|
export interface JobsGetOptionalParams extends coreClient.OperationOptions {
|
|
2101
2389
|
/** $expand is supported on details parameter for job, which provides details on the job stages. */
|
|
2102
2390
|
expand?: string;
|
|
2103
2391
|
}
|
|
2104
2392
|
/** Contains response data for the get operation. */
|
|
2105
|
-
export
|
|
2393
|
+
export type JobsGetResponse = JobResource;
|
|
2106
2394
|
/** Optional parameters. */
|
|
2107
2395
|
export interface JobsCreateOptionalParams extends coreClient.OperationOptions {
|
|
2108
2396
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2111,7 +2399,7 @@ export interface JobsCreateOptionalParams extends coreClient.OperationOptions {
|
|
|
2111
2399
|
resumeFrom?: string;
|
|
2112
2400
|
}
|
|
2113
2401
|
/** Contains response data for the create operation. */
|
|
2114
|
-
export
|
|
2402
|
+
export type JobsCreateResponse = JobResource;
|
|
2115
2403
|
/** Optional parameters. */
|
|
2116
2404
|
export interface JobsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2117
2405
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2129,12 +2417,12 @@ export interface JobsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
|
2129
2417
|
resumeFrom?: string;
|
|
2130
2418
|
}
|
|
2131
2419
|
/** Contains response data for the update operation. */
|
|
2132
|
-
export
|
|
2420
|
+
export type JobsUpdateResponse = JobResource;
|
|
2133
2421
|
/** Optional parameters. */
|
|
2134
2422
|
export interface JobsBookShipmentPickUpOptionalParams extends coreClient.OperationOptions {
|
|
2135
2423
|
}
|
|
2136
2424
|
/** Contains response data for the bookShipmentPickUp operation. */
|
|
2137
|
-
export
|
|
2425
|
+
export type JobsBookShipmentPickUpResponse = ShipmentPickUpResponse;
|
|
2138
2426
|
/** Optional parameters. */
|
|
2139
2427
|
export interface JobsCancelOptionalParams extends coreClient.OperationOptions {
|
|
2140
2428
|
}
|
|
@@ -2142,21 +2430,17 @@ export interface JobsCancelOptionalParams extends coreClient.OperationOptions {
|
|
|
2142
2430
|
export interface JobsListCredentialsOptionalParams extends coreClient.OperationOptions {
|
|
2143
2431
|
}
|
|
2144
2432
|
/** Contains response data for the listCredentials operation. */
|
|
2145
|
-
export
|
|
2433
|
+
export type JobsListCredentialsResponse = UnencryptedCredentialsList;
|
|
2146
2434
|
/** Optional parameters. */
|
|
2147
2435
|
export interface JobsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2148
|
-
/** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */
|
|
2149
|
-
skipToken?: string;
|
|
2150
2436
|
}
|
|
2151
2437
|
/** Contains response data for the listNext operation. */
|
|
2152
|
-
export
|
|
2438
|
+
export type JobsListNextResponse = JobResourceList;
|
|
2153
2439
|
/** Optional parameters. */
|
|
2154
2440
|
export interface JobsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2155
|
-
/** $skipToken is supported on Get list of jobs, which provides the next page in the list of jobs. */
|
|
2156
|
-
skipToken?: string;
|
|
2157
2441
|
}
|
|
2158
2442
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
2159
|
-
export
|
|
2443
|
+
export type JobsListByResourceGroupNextResponse = JobResourceList;
|
|
2160
2444
|
/** Optional parameters. */
|
|
2161
2445
|
export interface MitigateOptionalParams extends coreClient.OperationOptions {
|
|
2162
2446
|
}
|
|
@@ -2164,37 +2448,37 @@ export interface MitigateOptionalParams extends coreClient.OperationOptions {
|
|
|
2164
2448
|
export interface ServiceListAvailableSkusByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2165
2449
|
}
|
|
2166
2450
|
/** Contains response data for the listAvailableSkusByResourceGroup operation. */
|
|
2167
|
-
export
|
|
2451
|
+
export type ServiceListAvailableSkusByResourceGroupResponse = AvailableSkusResult;
|
|
2168
2452
|
/** Optional parameters. */
|
|
2169
2453
|
export interface ServiceValidateAddressOptionalParams extends coreClient.OperationOptions {
|
|
2170
2454
|
}
|
|
2171
2455
|
/** Contains response data for the validateAddress operation. */
|
|
2172
|
-
export
|
|
2456
|
+
export type ServiceValidateAddressResponse = AddressValidationOutput;
|
|
2173
2457
|
/** Optional parameters. */
|
|
2174
2458
|
export interface ServiceValidateInputsByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2175
2459
|
}
|
|
2176
2460
|
/** Contains response data for the validateInputsByResourceGroup operation. */
|
|
2177
|
-
export
|
|
2461
|
+
export type ServiceValidateInputsByResourceGroupResponse = ValidationResponse;
|
|
2178
2462
|
/** Optional parameters. */
|
|
2179
2463
|
export interface ServiceValidateInputsOptionalParams extends coreClient.OperationOptions {
|
|
2180
2464
|
}
|
|
2181
2465
|
/** Contains response data for the validateInputs operation. */
|
|
2182
|
-
export
|
|
2466
|
+
export type ServiceValidateInputsResponse = ValidationResponse;
|
|
2183
2467
|
/** Optional parameters. */
|
|
2184
2468
|
export interface ServiceRegionConfigurationOptionalParams extends coreClient.OperationOptions {
|
|
2185
2469
|
}
|
|
2186
2470
|
/** Contains response data for the regionConfiguration operation. */
|
|
2187
|
-
export
|
|
2471
|
+
export type ServiceRegionConfigurationResponse = RegionConfigurationResponse;
|
|
2188
2472
|
/** Optional parameters. */
|
|
2189
2473
|
export interface ServiceRegionConfigurationByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2190
2474
|
}
|
|
2191
2475
|
/** Contains response data for the regionConfigurationByResourceGroup operation. */
|
|
2192
|
-
export
|
|
2476
|
+
export type ServiceRegionConfigurationByResourceGroupResponse = RegionConfigurationResponse;
|
|
2193
2477
|
/** Optional parameters. */
|
|
2194
2478
|
export interface ServiceListAvailableSkusByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2195
2479
|
}
|
|
2196
2480
|
/** Contains response data for the listAvailableSkusByResourceGroupNext operation. */
|
|
2197
|
-
export
|
|
2481
|
+
export type ServiceListAvailableSkusByResourceGroupNextResponse = AvailableSkusResult;
|
|
2198
2482
|
/** Optional parameters. */
|
|
2199
2483
|
export interface DataBoxManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
2200
2484
|
/** server parameter */
|