@aws-sdk/client-snowball 3.427.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +47 -47
- package/dist-types/ts3.4/models/models_0.d.ts +47 -47
- package/package.json +31 -31
|
@@ -100,7 +100,7 @@ export interface Address {
|
|
|
100
100
|
* @public
|
|
101
101
|
* <p>Differentiates between delivery address and pickup address in the customer account. Provided at job creation.</p>
|
|
102
102
|
*/
|
|
103
|
-
Type?: AddressType
|
|
103
|
+
Type?: AddressType;
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* @public
|
|
@@ -293,7 +293,7 @@ export interface Notification {
|
|
|
293
293
|
* @public
|
|
294
294
|
* <p>The list of job states that will trigger a notification for this job.</p>
|
|
295
295
|
*/
|
|
296
|
-
JobStatesToNotify?:
|
|
296
|
+
JobStatesToNotify?: JobState[];
|
|
297
297
|
/**
|
|
298
298
|
* @public
|
|
299
299
|
* <p>Any change in job state will trigger a notification for this job.</p>
|
|
@@ -348,7 +348,7 @@ export interface NFSOnDeviceServiceConfiguration {
|
|
|
348
348
|
* <p>The scale unit of the NFS storage on the device.</p>
|
|
349
349
|
* <p>Valid values: TB.</p>
|
|
350
350
|
*/
|
|
351
|
-
StorageUnit?: StorageUnit
|
|
351
|
+
StorageUnit?: StorageUnit;
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
354
354
|
* @public
|
|
@@ -366,7 +366,7 @@ export interface S3OnDeviceServiceConfiguration {
|
|
|
366
366
|
* @public
|
|
367
367
|
* <p>Storage unit. Currently the only supported unit is TB.</p>
|
|
368
368
|
*/
|
|
369
|
-
StorageUnit?: StorageUnit
|
|
369
|
+
StorageUnit?: StorageUnit;
|
|
370
370
|
/**
|
|
371
371
|
* @public
|
|
372
372
|
* <p>Applicable when creating a cluster. Specifies how many nodes are needed for Amazon S3 compatible storage on Snow family devices. If specified, the other input can be omitted.</p>
|
|
@@ -394,7 +394,7 @@ export interface TGWOnDeviceServiceConfiguration {
|
|
|
394
394
|
* @public
|
|
395
395
|
* <p>The scale unit of the virtual tapes on the device.</p>
|
|
396
396
|
*/
|
|
397
|
-
StorageUnit?: StorageUnit
|
|
397
|
+
StorageUnit?: StorageUnit;
|
|
398
398
|
}
|
|
399
399
|
/**
|
|
400
400
|
* @public
|
|
@@ -540,13 +540,13 @@ export interface TargetOnDeviceService {
|
|
|
540
540
|
* <p>Specifies the name of the service on the Snow Family device that your transferred data
|
|
541
541
|
* will be exported from or imported into.</p>
|
|
542
542
|
*/
|
|
543
|
-
ServiceName?: DeviceServiceName
|
|
543
|
+
ServiceName?: DeviceServiceName;
|
|
544
544
|
/**
|
|
545
545
|
* @public
|
|
546
546
|
* <p>Specifies whether the data is being imported or exported. You can import or export the
|
|
547
547
|
* data, or use it locally on the device.</p>
|
|
548
548
|
*/
|
|
549
|
-
TransferOption?: TransferOption
|
|
549
|
+
TransferOption?: TransferOption;
|
|
550
550
|
}
|
|
551
551
|
/**
|
|
552
552
|
* @public
|
|
@@ -693,7 +693,7 @@ export interface CreateClusterRequest {
|
|
|
693
693
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
694
694
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
695
695
|
*/
|
|
696
|
-
JobType: JobType |
|
|
696
|
+
JobType: JobType | undefined;
|
|
697
697
|
/**
|
|
698
698
|
* @public
|
|
699
699
|
* <p>The resources associated with the cluster job. These resources include Amazon S3
|
|
@@ -744,7 +744,7 @@ export interface CreateClusterRequest {
|
|
|
744
744
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
745
745
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
746
746
|
*/
|
|
747
|
-
SnowballType: SnowballType |
|
|
747
|
+
SnowballType: SnowballType | undefined;
|
|
748
748
|
/**
|
|
749
749
|
* @public
|
|
750
750
|
* <p>The shipping speed for each node in this cluster. This speed doesn't dictate how soon
|
|
@@ -788,7 +788,7 @@ export interface CreateClusterRequest {
|
|
|
788
788
|
* </li>
|
|
789
789
|
* </ul>
|
|
790
790
|
*/
|
|
791
|
-
ShippingOption: ShippingOption |
|
|
791
|
+
ShippingOption: ShippingOption | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* @public
|
|
794
794
|
* <p>The Amazon Simple Notification Service (Amazon SNS) notification settings for this
|
|
@@ -813,7 +813,7 @@ export interface CreateClusterRequest {
|
|
|
813
813
|
* automatically be available when the device arrives at your location. Otherwise, you need to
|
|
814
814
|
* use the Snowball Client to manage the device.</p>
|
|
815
815
|
*/
|
|
816
|
-
RemoteManagement?: RemoteManagement
|
|
816
|
+
RemoteManagement?: RemoteManagement;
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
819
819
|
* <p>If provided, each job will be automatically created and associated with the new cluster. If not provided, will be treated as 0.</p>
|
|
@@ -841,7 +841,7 @@ export interface CreateClusterRequest {
|
|
|
841
841
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
842
842
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
843
843
|
*/
|
|
844
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
844
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
845
845
|
}
|
|
846
846
|
/**
|
|
847
847
|
* @public
|
|
@@ -859,7 +859,7 @@ export interface JobListEntry {
|
|
|
859
859
|
* @public
|
|
860
860
|
* <p>The current state of this job.</p>
|
|
861
861
|
*/
|
|
862
|
-
JobState?: JobState
|
|
862
|
+
JobState?: JobState;
|
|
863
863
|
/**
|
|
864
864
|
* @public
|
|
865
865
|
* <p>A value that indicates that this job is a main job. A main job represents a successful
|
|
@@ -873,12 +873,12 @@ export interface JobListEntry {
|
|
|
873
873
|
* @public
|
|
874
874
|
* <p>The type of job.</p>
|
|
875
875
|
*/
|
|
876
|
-
JobType?: JobType
|
|
876
|
+
JobType?: JobType;
|
|
877
877
|
/**
|
|
878
878
|
* @public
|
|
879
879
|
* <p>The type of device used with this job.</p>
|
|
880
880
|
*/
|
|
881
|
-
SnowballType?: SnowballType
|
|
881
|
+
SnowballType?: SnowballType;
|
|
882
882
|
/**
|
|
883
883
|
* @public
|
|
884
884
|
* <p>The creation date for this job.</p>
|
|
@@ -1047,7 +1047,7 @@ export interface CreateJobRequest {
|
|
|
1047
1047
|
* <p>Defines the type of job that you're creating.
|
|
1048
1048
|
* </p>
|
|
1049
1049
|
*/
|
|
1050
|
-
JobType?: JobType
|
|
1050
|
+
JobType?: JobType;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* @public
|
|
1053
1053
|
* <p>Defines the Amazon S3 buckets associated with this job.</p>
|
|
@@ -1103,7 +1103,7 @@ export interface CreateJobRequest {
|
|
|
1103
1103
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
1104
1104
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
1105
1105
|
*/
|
|
1106
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
1106
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* @public
|
|
1109
1109
|
* <p>The shipping speed for this job. This speed doesn't dictate how soon you'll get the
|
|
@@ -1128,7 +1128,7 @@ export interface CreateJobRequest {
|
|
|
1128
1128
|
* </li>
|
|
1129
1129
|
* </ul>
|
|
1130
1130
|
*/
|
|
1131
|
-
ShippingOption?: ShippingOption
|
|
1131
|
+
ShippingOption?: ShippingOption;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* @public
|
|
1134
1134
|
* <p>Defines the Amazon Simple Notification Service (Amazon SNS) notification settings for
|
|
@@ -1160,7 +1160,7 @@ export interface CreateJobRequest {
|
|
|
1160
1160
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
1161
1161
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
1162
1162
|
*/
|
|
1163
|
-
SnowballType?: SnowballType
|
|
1163
|
+
SnowballType?: SnowballType;
|
|
1164
1164
|
/**
|
|
1165
1165
|
* @public
|
|
1166
1166
|
* <p>The forwarding address ID for a job. This field is not supported in most
|
|
@@ -1189,7 +1189,7 @@ export interface CreateJobRequest {
|
|
|
1189
1189
|
* automatically be available when the device arrives at your location. Otherwise, you need to
|
|
1190
1190
|
* use the Snowball Edge client to manage the device. When set to <code>NOT_INSTALLED</code>, remote management will not be available on the device. </p>
|
|
1191
1191
|
*/
|
|
1192
|
-
RemoteManagement?: RemoteManagement
|
|
1192
|
+
RemoteManagement?: RemoteManagement;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* @public
|
|
1195
1195
|
* <p>The ID of the long-term pricing type for the device.</p>
|
|
@@ -1199,7 +1199,7 @@ export interface CreateJobRequest {
|
|
|
1199
1199
|
* @public
|
|
1200
1200
|
* <p>The highest impact level of data that will be stored or processed on the device, provided at job creation.</p>
|
|
1201
1201
|
*/
|
|
1202
|
-
ImpactLevel?: ImpactLevel
|
|
1202
|
+
ImpactLevel?: ImpactLevel;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* @public
|
|
1205
1205
|
* <p>Information identifying the person picking up the device.</p>
|
|
@@ -1239,7 +1239,7 @@ export interface CreateLongTermPricingRequest {
|
|
|
1239
1239
|
* <p>The type of long-term pricing option you want for the device, either 1-year or 3-year
|
|
1240
1240
|
* long-term pricing.</p>
|
|
1241
1241
|
*/
|
|
1242
|
-
LongTermPricingType: LongTermPricingType |
|
|
1242
|
+
LongTermPricingType: LongTermPricingType | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* @public
|
|
1245
1245
|
* <p>Specifies whether the current long-term pricing type for the device should be
|
|
@@ -1250,7 +1250,7 @@ export interface CreateLongTermPricingRequest {
|
|
|
1250
1250
|
* @public
|
|
1251
1251
|
* <p>The type of Snow Family devices to use for the long-term pricing job.</p>
|
|
1252
1252
|
*/
|
|
1253
|
-
SnowballType: SnowballType |
|
|
1253
|
+
SnowballType: SnowballType | undefined;
|
|
1254
1254
|
}
|
|
1255
1255
|
/**
|
|
1256
1256
|
* @public
|
|
@@ -1297,7 +1297,7 @@ export interface CreateReturnShippingLabelRequest {
|
|
|
1297
1297
|
* is returned to Amazon Web Services. This speed represents how quickly it moves to its
|
|
1298
1298
|
* destination while in transit. Regional shipping speeds are as follows:</p>
|
|
1299
1299
|
*/
|
|
1300
|
-
ShippingOption?: ShippingOption
|
|
1300
|
+
ShippingOption?: ShippingOption;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
1303
1303
|
* @public
|
|
@@ -1321,7 +1321,7 @@ export interface CreateReturnShippingLabelResult {
|
|
|
1321
1321
|
* @public
|
|
1322
1322
|
* <p>The status information of the task on a Snow device that is being returned to Amazon Web Services.</p>
|
|
1323
1323
|
*/
|
|
1324
|
-
Status?: ShippingLabelStatus
|
|
1324
|
+
Status?: ShippingLabelStatus;
|
|
1325
1325
|
}
|
|
1326
1326
|
/**
|
|
1327
1327
|
* @public
|
|
@@ -1464,13 +1464,13 @@ export interface ClusterMetadata {
|
|
|
1464
1464
|
* @public
|
|
1465
1465
|
* <p>The current status of the cluster.</p>
|
|
1466
1466
|
*/
|
|
1467
|
-
ClusterState?: ClusterState
|
|
1467
|
+
ClusterState?: ClusterState;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* @public
|
|
1470
1470
|
* <p>The type of job for this cluster. Currently, the only job type supported for clusters
|
|
1471
1471
|
* is <code>LOCAL_USE</code>.</p>
|
|
1472
1472
|
*/
|
|
1473
|
-
JobType?: JobType
|
|
1473
|
+
JobType?: JobType;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* @public
|
|
1476
1476
|
* <p>The type of Snowcone device to use for this cluster.
|
|
@@ -1480,7 +1480,7 @@ export interface ClusterMetadata {
|
|
|
1480
1480
|
* <code>EDGE</code> device type.</p>
|
|
1481
1481
|
* </note>
|
|
1482
1482
|
*/
|
|
1483
|
-
SnowballType?: SnowballType
|
|
1483
|
+
SnowballType?: SnowballType;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* @public
|
|
1486
1486
|
* <p>The creation date for this cluster.</p>
|
|
@@ -1520,7 +1520,7 @@ export interface ClusterMetadata {
|
|
|
1520
1520
|
* </li>
|
|
1521
1521
|
* </ul>
|
|
1522
1522
|
*/
|
|
1523
|
-
ShippingOption?: ShippingOption
|
|
1523
|
+
ShippingOption?: ShippingOption;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* @public
|
|
1526
1526
|
* <p>The Amazon Simple Notification Service (Amazon SNS) notification settings for this
|
|
@@ -1685,7 +1685,7 @@ export interface ShippingDetails {
|
|
|
1685
1685
|
* </li>
|
|
1686
1686
|
* </ul>
|
|
1687
1687
|
*/
|
|
1688
|
-
ShippingOption?: ShippingOption
|
|
1688
|
+
ShippingOption?: ShippingOption;
|
|
1689
1689
|
/**
|
|
1690
1690
|
* @public
|
|
1691
1691
|
* <p>The <code>Status</code> and <code>TrackingNumber</code> values for a Snow device being
|
|
@@ -1716,17 +1716,17 @@ export interface JobMetadata {
|
|
|
1716
1716
|
* @public
|
|
1717
1717
|
* <p>The current status of the jobs.</p>
|
|
1718
1718
|
*/
|
|
1719
|
-
JobState?: JobState
|
|
1719
|
+
JobState?: JobState;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* @public
|
|
1722
1722
|
* <p>The type of job.</p>
|
|
1723
1723
|
*/
|
|
1724
|
-
JobType?: JobType
|
|
1724
|
+
JobType?: JobType;
|
|
1725
1725
|
/**
|
|
1726
1726
|
* @public
|
|
1727
1727
|
* <p>The type of device used with this job.</p>
|
|
1728
1728
|
*/
|
|
1729
|
-
SnowballType?: SnowballType
|
|
1729
|
+
SnowballType?: SnowballType;
|
|
1730
1730
|
/**
|
|
1731
1731
|
* @public
|
|
1732
1732
|
* <p>The creation date for this job.</p>
|
|
@@ -1778,7 +1778,7 @@ export interface JobMetadata {
|
|
|
1778
1778
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
1779
1779
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
1780
1780
|
*/
|
|
1781
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
1781
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
1782
1782
|
/**
|
|
1783
1783
|
* @public
|
|
1784
1784
|
* <p>The Amazon Simple Notification Service (Amazon SNS) notification settings associated
|
|
@@ -1832,7 +1832,7 @@ export interface JobMetadata {
|
|
|
1832
1832
|
* automatically be available when the device arrives at your location. Otherwise, you need to
|
|
1833
1833
|
* use the Snowball Client to manage the device.</p>
|
|
1834
1834
|
*/
|
|
1835
|
-
RemoteManagement?: RemoteManagement
|
|
1835
|
+
RemoteManagement?: RemoteManagement;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* @public
|
|
1838
1838
|
* <p>The ID of the long-term pricing type for the device.</p>
|
|
@@ -1848,7 +1848,7 @@ export interface JobMetadata {
|
|
|
1848
1848
|
* @public
|
|
1849
1849
|
* <p>The highest impact level of data that will be stored or processed on the device, provided at job creation.</p>
|
|
1850
1850
|
*/
|
|
1851
|
-
ImpactLevel?: ImpactLevel
|
|
1851
|
+
ImpactLevel?: ImpactLevel;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* @public
|
|
1854
1854
|
* <p>Information identifying the person picking up the device.</p>
|
|
@@ -1896,7 +1896,7 @@ export interface DescribeReturnShippingLabelResult {
|
|
|
1896
1896
|
* @public
|
|
1897
1897
|
* <p>The status information of the task on a Snow device that is being returned to Amazon Web Services.</p>
|
|
1898
1898
|
*/
|
|
1899
|
-
Status?: ShippingLabelStatus
|
|
1899
|
+
Status?: ShippingLabelStatus;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
1902
1902
|
* <p>The expiration date of the current return shipping label.</p>
|
|
@@ -2071,7 +2071,7 @@ export interface ClusterListEntry {
|
|
|
2071
2071
|
* <p>The current state of this cluster. For information about the state of a specific node,
|
|
2072
2072
|
* see <a>JobListEntry$JobState</a>.</p>
|
|
2073
2073
|
*/
|
|
2074
|
-
ClusterState?: ClusterState
|
|
2074
|
+
ClusterState?: ClusterState;
|
|
2075
2075
|
/**
|
|
2076
2076
|
* @public
|
|
2077
2077
|
* <p>The creation date for this cluster.</p>
|
|
@@ -2232,7 +2232,7 @@ export interface LongTermPricingListEntry {
|
|
|
2232
2232
|
* @public
|
|
2233
2233
|
* <p>The type of long-term pricing that was selected for the device.</p>
|
|
2234
2234
|
*/
|
|
2235
|
-
LongTermPricingType?: LongTermPricingType
|
|
2235
|
+
LongTermPricingType?: LongTermPricingType;
|
|
2236
2236
|
/**
|
|
2237
2237
|
* @public
|
|
2238
2238
|
* <p>The current active jobs on the device the long-term pricing type.</p>
|
|
@@ -2258,7 +2258,7 @@ export interface LongTermPricingListEntry {
|
|
|
2258
2258
|
* @public
|
|
2259
2259
|
* <p>The type of Snow Family devices associated with this long-term pricing job.</p>
|
|
2260
2260
|
*/
|
|
2261
|
-
SnowballType?: SnowballType
|
|
2261
|
+
SnowballType?: SnowballType;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* @public
|
|
2264
2264
|
* <p>The IDs of the jobs that are associated with a long-term pricing type.</p>
|
|
@@ -2344,7 +2344,7 @@ export interface DependentService {
|
|
|
2344
2344
|
* @public
|
|
2345
2345
|
* <p>The name of the dependent service.</p>
|
|
2346
2346
|
*/
|
|
2347
|
-
ServiceName?: ServiceName
|
|
2347
|
+
ServiceName?: ServiceName;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* @public
|
|
2350
2350
|
* <p>The version of the dependent service.</p>
|
|
@@ -2359,7 +2359,7 @@ export interface ListServiceVersionsRequest {
|
|
|
2359
2359
|
* @public
|
|
2360
2360
|
* <p>The name of the service for which you're requesting supported versions.</p>
|
|
2361
2361
|
*/
|
|
2362
|
-
ServiceName: ServiceName |
|
|
2362
|
+
ServiceName: ServiceName | undefined;
|
|
2363
2363
|
/**
|
|
2364
2364
|
* @public
|
|
2365
2365
|
* <p>A list of names and versions of dependant services of the requested service.</p>
|
|
@@ -2390,7 +2390,7 @@ export interface ListServiceVersionsResult {
|
|
|
2390
2390
|
* @public
|
|
2391
2391
|
* <p>The name of the service for which the system provided supported versions.</p>
|
|
2392
2392
|
*/
|
|
2393
|
-
ServiceName: ServiceName |
|
|
2393
|
+
ServiceName: ServiceName | undefined;
|
|
2394
2394
|
/**
|
|
2395
2395
|
* @public
|
|
2396
2396
|
* <p>A list of names and versions of dependant services of the service for which the system provided supported versions.</p>
|
|
@@ -2447,7 +2447,7 @@ export interface UpdateClusterRequest {
|
|
|
2447
2447
|
* <p>The updated shipping option value of this cluster's <a>ShippingDetails</a>
|
|
2448
2448
|
* object.</p>
|
|
2449
2449
|
*/
|
|
2450
|
-
ShippingOption?: ShippingOption
|
|
2450
|
+
ShippingOption?: ShippingOption;
|
|
2451
2451
|
/**
|
|
2452
2452
|
* @public
|
|
2453
2453
|
* <p>The new or updated <a>Notification</a> object.</p>
|
|
@@ -2509,7 +2509,7 @@ export interface UpdateJobRequest {
|
|
|
2509
2509
|
* <p>The updated shipping option value of this job's <a>ShippingDetails</a>
|
|
2510
2510
|
* object.</p>
|
|
2511
2511
|
*/
|
|
2512
|
-
ShippingOption?: ShippingOption
|
|
2512
|
+
ShippingOption?: ShippingOption;
|
|
2513
2513
|
/**
|
|
2514
2514
|
* @public
|
|
2515
2515
|
* <p>The updated description of this job's <a>JobMetadata</a> object.</p>
|
|
@@ -2525,7 +2525,7 @@ export interface UpdateJobRequest {
|
|
|
2525
2525
|
* "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow
|
|
2526
2526
|
* Family Devices and Capacity) in the <i>Snowcone User Guide</i>.</p>
|
|
2527
2527
|
*/
|
|
2528
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
2528
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* @public
|
|
2531
2531
|
* <p>The updated ID for the forwarding address for a job. This field is not
|
|
@@ -2571,7 +2571,7 @@ export interface UpdateJobShipmentStateRequest {
|
|
|
2571
2571
|
* <p>Set to <code>RECEIVED</code> when the device arrives at your location.</p>
|
|
2572
2572
|
* <p>Set to <code>RETURNED</code> when you have returned the device to Amazon Web Services.</p>
|
|
2573
2573
|
*/
|
|
2574
|
-
ShipmentState: ShipmentState |
|
|
2574
|
+
ShipmentState: ShipmentState | undefined;
|
|
2575
2575
|
}
|
|
2576
2576
|
/**
|
|
2577
2577
|
* @public
|
|
@@ -20,7 +20,7 @@ export interface Address {
|
|
|
20
20
|
PostalCode?: string;
|
|
21
21
|
PhoneNumber?: string;
|
|
22
22
|
IsRestricted?: boolean;
|
|
23
|
-
Type?: AddressType
|
|
23
|
+
Type?: AddressType;
|
|
24
24
|
}
|
|
25
25
|
export interface CancelClusterRequest {
|
|
26
26
|
ClusterId: string | undefined;
|
|
@@ -101,7 +101,7 @@ export declare const JobState: {
|
|
|
101
101
|
export type JobState = (typeof JobState)[keyof typeof JobState];
|
|
102
102
|
export interface Notification {
|
|
103
103
|
SnsTopicARN?: string;
|
|
104
|
-
JobStatesToNotify?:
|
|
104
|
+
JobStatesToNotify?: JobState[];
|
|
105
105
|
NotifyAll?: boolean;
|
|
106
106
|
DevicePickupSnsTopicARN?: string;
|
|
107
107
|
}
|
|
@@ -115,17 +115,17 @@ export declare const StorageUnit: {
|
|
|
115
115
|
export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
|
|
116
116
|
export interface NFSOnDeviceServiceConfiguration {
|
|
117
117
|
StorageLimit?: number;
|
|
118
|
-
StorageUnit?: StorageUnit
|
|
118
|
+
StorageUnit?: StorageUnit;
|
|
119
119
|
}
|
|
120
120
|
export interface S3OnDeviceServiceConfiguration {
|
|
121
121
|
StorageLimit?: number;
|
|
122
|
-
StorageUnit?: StorageUnit
|
|
122
|
+
StorageUnit?: StorageUnit;
|
|
123
123
|
ServiceSize?: number;
|
|
124
124
|
FaultTolerance?: number;
|
|
125
125
|
}
|
|
126
126
|
export interface TGWOnDeviceServiceConfiguration {
|
|
127
127
|
StorageLimit?: number;
|
|
128
|
-
StorageUnit?: StorageUnit
|
|
128
|
+
StorageUnit?: StorageUnit;
|
|
129
129
|
}
|
|
130
130
|
export interface OnDeviceServiceConfiguration {
|
|
131
131
|
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
@@ -169,8 +169,8 @@ export declare const TransferOption: {
|
|
|
169
169
|
export type TransferOption =
|
|
170
170
|
(typeof TransferOption)[keyof typeof TransferOption];
|
|
171
171
|
export interface TargetOnDeviceService {
|
|
172
|
-
ServiceName?: DeviceServiceName
|
|
173
|
-
TransferOption?: TransferOption
|
|
172
|
+
ServiceName?: DeviceServiceName;
|
|
173
|
+
TransferOption?: TransferOption;
|
|
174
174
|
}
|
|
175
175
|
export interface S3Resource {
|
|
176
176
|
BucketArn?: string;
|
|
@@ -225,30 +225,30 @@ export interface TaxDocuments {
|
|
|
225
225
|
IND?: INDTaxDocuments;
|
|
226
226
|
}
|
|
227
227
|
export interface CreateClusterRequest {
|
|
228
|
-
JobType: JobType |
|
|
228
|
+
JobType: JobType | undefined;
|
|
229
229
|
Resources?: JobResource;
|
|
230
230
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
231
231
|
Description?: string;
|
|
232
232
|
AddressId: string | undefined;
|
|
233
233
|
KmsKeyARN?: string;
|
|
234
234
|
RoleARN?: string;
|
|
235
|
-
SnowballType: SnowballType |
|
|
236
|
-
ShippingOption: ShippingOption |
|
|
235
|
+
SnowballType: SnowballType | undefined;
|
|
236
|
+
ShippingOption: ShippingOption | undefined;
|
|
237
237
|
Notification?: Notification;
|
|
238
238
|
ForwardingAddressId?: string;
|
|
239
239
|
TaxDocuments?: TaxDocuments;
|
|
240
|
-
RemoteManagement?: RemoteManagement
|
|
240
|
+
RemoteManagement?: RemoteManagement;
|
|
241
241
|
InitialClusterSize?: number;
|
|
242
242
|
ForceCreateJobs?: boolean;
|
|
243
243
|
LongTermPricingIds?: string[];
|
|
244
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
244
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
245
245
|
}
|
|
246
246
|
export interface JobListEntry {
|
|
247
247
|
JobId?: string;
|
|
248
|
-
JobState?: JobState
|
|
248
|
+
JobState?: JobState;
|
|
249
249
|
IsMaster?: boolean;
|
|
250
|
-
JobType?: JobType
|
|
251
|
-
SnowballType?: SnowballType
|
|
250
|
+
JobType?: JobType;
|
|
251
|
+
SnowballType?: SnowballType;
|
|
252
252
|
CreationDate?: Date;
|
|
253
253
|
Description?: string;
|
|
254
254
|
}
|
|
@@ -310,24 +310,24 @@ export interface PickupDetails {
|
|
|
310
310
|
DevicePickupId?: string;
|
|
311
311
|
}
|
|
312
312
|
export interface CreateJobRequest {
|
|
313
|
-
JobType?: JobType
|
|
313
|
+
JobType?: JobType;
|
|
314
314
|
Resources?: JobResource;
|
|
315
315
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
316
316
|
Description?: string;
|
|
317
317
|
AddressId?: string;
|
|
318
318
|
KmsKeyARN?: string;
|
|
319
319
|
RoleARN?: string;
|
|
320
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
321
|
-
ShippingOption?: ShippingOption
|
|
320
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
321
|
+
ShippingOption?: ShippingOption;
|
|
322
322
|
Notification?: Notification;
|
|
323
323
|
ClusterId?: string;
|
|
324
|
-
SnowballType?: SnowballType
|
|
324
|
+
SnowballType?: SnowballType;
|
|
325
325
|
ForwardingAddressId?: string;
|
|
326
326
|
TaxDocuments?: TaxDocuments;
|
|
327
327
|
DeviceConfiguration?: DeviceConfiguration;
|
|
328
|
-
RemoteManagement?: RemoteManagement
|
|
328
|
+
RemoteManagement?: RemoteManagement;
|
|
329
329
|
LongTermPricingId?: string;
|
|
330
|
-
ImpactLevel?: ImpactLevel
|
|
330
|
+
ImpactLevel?: ImpactLevel;
|
|
331
331
|
PickupDetails?: PickupDetails;
|
|
332
332
|
}
|
|
333
333
|
export interface CreateJobResult {
|
|
@@ -341,9 +341,9 @@ export declare const LongTermPricingType: {
|
|
|
341
341
|
export type LongTermPricingType =
|
|
342
342
|
(typeof LongTermPricingType)[keyof typeof LongTermPricingType];
|
|
343
343
|
export interface CreateLongTermPricingRequest {
|
|
344
|
-
LongTermPricingType: LongTermPricingType |
|
|
344
|
+
LongTermPricingType: LongTermPricingType | undefined;
|
|
345
345
|
IsLongTermPricingAutoRenew?: boolean;
|
|
346
|
-
SnowballType: SnowballType |
|
|
346
|
+
SnowballType: SnowballType | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface CreateLongTermPricingResult {
|
|
349
349
|
LongTermPricingId?: string;
|
|
@@ -357,7 +357,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
357
357
|
}
|
|
358
358
|
export interface CreateReturnShippingLabelRequest {
|
|
359
359
|
JobId: string | undefined;
|
|
360
|
-
ShippingOption?: ShippingOption
|
|
360
|
+
ShippingOption?: ShippingOption;
|
|
361
361
|
}
|
|
362
362
|
export declare const ShippingLabelStatus: {
|
|
363
363
|
readonly FAILED: "Failed";
|
|
@@ -368,7 +368,7 @@ export declare const ShippingLabelStatus: {
|
|
|
368
368
|
export type ShippingLabelStatus =
|
|
369
369
|
(typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
|
|
370
370
|
export interface CreateReturnShippingLabelResult {
|
|
371
|
-
Status?: ShippingLabelStatus
|
|
371
|
+
Status?: ShippingLabelStatus;
|
|
372
372
|
}
|
|
373
373
|
export declare class ReturnShippingLabelAlreadyExistsException extends __BaseException {
|
|
374
374
|
readonly name: "ReturnShippingLabelAlreadyExistsException";
|
|
@@ -419,13 +419,13 @@ export interface ClusterMetadata {
|
|
|
419
419
|
Description?: string;
|
|
420
420
|
KmsKeyARN?: string;
|
|
421
421
|
RoleARN?: string;
|
|
422
|
-
ClusterState?: ClusterState
|
|
423
|
-
JobType?: JobType
|
|
424
|
-
SnowballType?: SnowballType
|
|
422
|
+
ClusterState?: ClusterState;
|
|
423
|
+
JobType?: JobType;
|
|
424
|
+
SnowballType?: SnowballType;
|
|
425
425
|
CreationDate?: Date;
|
|
426
426
|
Resources?: JobResource;
|
|
427
427
|
AddressId?: string;
|
|
428
|
-
ShippingOption?: ShippingOption
|
|
428
|
+
ShippingOption?: ShippingOption;
|
|
429
429
|
Notification?: Notification;
|
|
430
430
|
ForwardingAddressId?: string;
|
|
431
431
|
TaxDocuments?: TaxDocuments;
|
|
@@ -453,15 +453,15 @@ export interface Shipment {
|
|
|
453
453
|
TrackingNumber?: string;
|
|
454
454
|
}
|
|
455
455
|
export interface ShippingDetails {
|
|
456
|
-
ShippingOption?: ShippingOption
|
|
456
|
+
ShippingOption?: ShippingOption;
|
|
457
457
|
InboundShipment?: Shipment;
|
|
458
458
|
OutboundShipment?: Shipment;
|
|
459
459
|
}
|
|
460
460
|
export interface JobMetadata {
|
|
461
461
|
JobId?: string;
|
|
462
|
-
JobState?: JobState
|
|
463
|
-
JobType?: JobType
|
|
464
|
-
SnowballType?: SnowballType
|
|
462
|
+
JobState?: JobState;
|
|
463
|
+
JobType?: JobType;
|
|
464
|
+
SnowballType?: SnowballType;
|
|
465
465
|
CreationDate?: Date;
|
|
466
466
|
Resources?: JobResource;
|
|
467
467
|
Description?: string;
|
|
@@ -469,7 +469,7 @@ export interface JobMetadata {
|
|
|
469
469
|
RoleARN?: string;
|
|
470
470
|
AddressId?: string;
|
|
471
471
|
ShippingDetails?: ShippingDetails;
|
|
472
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
472
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
473
473
|
Notification?: Notification;
|
|
474
474
|
DataTransferProgress?: DataTransfer;
|
|
475
475
|
JobLogInfo?: JobLogs;
|
|
@@ -477,10 +477,10 @@ export interface JobMetadata {
|
|
|
477
477
|
ForwardingAddressId?: string;
|
|
478
478
|
TaxDocuments?: TaxDocuments;
|
|
479
479
|
DeviceConfiguration?: DeviceConfiguration;
|
|
480
|
-
RemoteManagement?: RemoteManagement
|
|
480
|
+
RemoteManagement?: RemoteManagement;
|
|
481
481
|
LongTermPricingId?: string;
|
|
482
482
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
483
|
-
ImpactLevel?: ImpactLevel
|
|
483
|
+
ImpactLevel?: ImpactLevel;
|
|
484
484
|
PickupDetails?: PickupDetails;
|
|
485
485
|
SnowballId?: string;
|
|
486
486
|
}
|
|
@@ -492,7 +492,7 @@ export interface DescribeReturnShippingLabelRequest {
|
|
|
492
492
|
JobId: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface DescribeReturnShippingLabelResult {
|
|
495
|
-
Status?: ShippingLabelStatus
|
|
495
|
+
Status?: ShippingLabelStatus;
|
|
496
496
|
ExpirationDate?: Date;
|
|
497
497
|
ReturnShippingLabelURI?: string;
|
|
498
498
|
}
|
|
@@ -534,7 +534,7 @@ export interface ListClustersRequest {
|
|
|
534
534
|
}
|
|
535
535
|
export interface ClusterListEntry {
|
|
536
536
|
ClusterId?: string;
|
|
537
|
-
ClusterState?: ClusterState
|
|
537
|
+
ClusterState?: ClusterState;
|
|
538
538
|
CreationDate?: Date;
|
|
539
539
|
Description?: string;
|
|
540
540
|
}
|
|
@@ -570,12 +570,12 @@ export interface LongTermPricingListEntry {
|
|
|
570
570
|
LongTermPricingId?: string;
|
|
571
571
|
LongTermPricingEndDate?: Date;
|
|
572
572
|
LongTermPricingStartDate?: Date;
|
|
573
|
-
LongTermPricingType?: LongTermPricingType
|
|
573
|
+
LongTermPricingType?: LongTermPricingType;
|
|
574
574
|
CurrentActiveJob?: string;
|
|
575
575
|
ReplacementJob?: string;
|
|
576
576
|
IsLongTermPricingAutoRenew?: boolean;
|
|
577
577
|
LongTermPricingStatus?: string;
|
|
578
|
-
SnowballType?: SnowballType
|
|
578
|
+
SnowballType?: SnowballType;
|
|
579
579
|
JobIds?: string[];
|
|
580
580
|
}
|
|
581
581
|
export interface ListLongTermPricingResult {
|
|
@@ -599,18 +599,18 @@ export interface ServiceVersion {
|
|
|
599
599
|
Version?: string;
|
|
600
600
|
}
|
|
601
601
|
export interface DependentService {
|
|
602
|
-
ServiceName?: ServiceName
|
|
602
|
+
ServiceName?: ServiceName;
|
|
603
603
|
ServiceVersion?: ServiceVersion;
|
|
604
604
|
}
|
|
605
605
|
export interface ListServiceVersionsRequest {
|
|
606
|
-
ServiceName: ServiceName |
|
|
606
|
+
ServiceName: ServiceName | undefined;
|
|
607
607
|
DependentServices?: DependentService[];
|
|
608
608
|
MaxResults?: number;
|
|
609
609
|
NextToken?: string;
|
|
610
610
|
}
|
|
611
611
|
export interface ListServiceVersionsResult {
|
|
612
612
|
ServiceVersions: ServiceVersion[] | undefined;
|
|
613
|
-
ServiceName: ServiceName |
|
|
613
|
+
ServiceName: ServiceName | undefined;
|
|
614
614
|
DependentServices?: DependentService[];
|
|
615
615
|
NextToken?: string;
|
|
616
616
|
}
|
|
@@ -621,7 +621,7 @@ export interface UpdateClusterRequest {
|
|
|
621
621
|
Resources?: JobResource;
|
|
622
622
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
623
623
|
AddressId?: string;
|
|
624
|
-
ShippingOption?: ShippingOption
|
|
624
|
+
ShippingOption?: ShippingOption;
|
|
625
625
|
Notification?: Notification;
|
|
626
626
|
ForwardingAddressId?: string;
|
|
627
627
|
}
|
|
@@ -633,9 +633,9 @@ export interface UpdateJobRequest {
|
|
|
633
633
|
Resources?: JobResource;
|
|
634
634
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
635
635
|
AddressId?: string;
|
|
636
|
-
ShippingOption?: ShippingOption
|
|
636
|
+
ShippingOption?: ShippingOption;
|
|
637
637
|
Description?: string;
|
|
638
|
-
SnowballCapacityPreference?: SnowballCapacity
|
|
638
|
+
SnowballCapacityPreference?: SnowballCapacity;
|
|
639
639
|
ForwardingAddressId?: string;
|
|
640
640
|
PickupDetails?: PickupDetails;
|
|
641
641
|
}
|
|
@@ -647,7 +647,7 @@ export declare const ShipmentState: {
|
|
|
647
647
|
export type ShipmentState = (typeof ShipmentState)[keyof typeof ShipmentState];
|
|
648
648
|
export interface UpdateJobShipmentStateRequest {
|
|
649
649
|
JobId: string | undefined;
|
|
650
|
-
ShipmentState: ShipmentState |
|
|
650
|
+
ShipmentState: ShipmentState | undefined;
|
|
651
651
|
}
|
|
652
652
|
export interface UpdateJobShipmentStateResult {}
|
|
653
653
|
export interface UpdateLongTermPricingRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snowball",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|