@aws-sdk/client-snowball 3.300.0 → 3.301.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/commands/CancelClusterCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateAddressCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +21 -21
- package/dist-types/commands/CreateJobCommand.d.ts +24 -24
- package/dist-types/commands/CreateLongTermPricingCommand.d.ts +1 -1
- package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddressCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddressesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/GetJobManifestCommand.d.ts +1 -1
- package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +1 -1
- package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +1 -1
- package/dist-types/commands/ListClusterJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListCompatibleImagesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListLongTermPricingCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceVersionsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateClusterCommand.d.ts +19 -19
- package/dist-types/commands/UpdateJobCommand.d.ts +19 -19
- package/dist-types/commands/UpdateJobShipmentStateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLongTermPricingCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -28,7 +28,7 @@ export interface CancelClusterCommandOutput extends CancelClusterResult, __Metad
|
|
|
28
28
|
* import { SnowballClient, CancelClusterCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, CancelClusterCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CancelClusterRequest
|
|
32
32
|
* ClusterId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CancelClusterCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface CancelJobCommandOutput extends CancelJobResult, __MetadataBeare
|
|
|
29
29
|
* import { SnowballClient, CancelJobCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
30
30
|
* // const { SnowballClient, CancelJobCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
31
31
|
* const client = new SnowballClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CancelJobRequest
|
|
33
33
|
* JobId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CancelJobCommand(input);
|
|
@@ -29,8 +29,8 @@ export interface CreateAddressCommandOutput extends CreateAddressResult, __Metad
|
|
|
29
29
|
* import { SnowballClient, CreateAddressCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
30
30
|
* // const { SnowballClient, CreateAddressCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
31
31
|
* const client = new SnowballClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* Address: {
|
|
32
|
+
* const input = { // CreateAddressRequest
|
|
33
|
+
* Address: { // Address
|
|
34
34
|
* AddressId: "STRING_VALUE",
|
|
35
35
|
* Name: "STRING_VALUE",
|
|
36
36
|
* Company: "STRING_VALUE",
|
|
@@ -27,51 +27,51 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
27
27
|
* import { SnowballClient, CreateClusterCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, CreateClusterCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateClusterRequest
|
|
31
31
|
* JobType: "IMPORT" || "EXPORT" || "LOCAL_USE", // required
|
|
32
|
-
* Resources: {
|
|
33
|
-
* S3Resources: [
|
|
34
|
-
* {
|
|
32
|
+
* Resources: { // JobResource
|
|
33
|
+
* S3Resources: [ // S3ResourceList
|
|
34
|
+
* { // S3Resource
|
|
35
35
|
* BucketArn: "STRING_VALUE",
|
|
36
|
-
* KeyRange: {
|
|
36
|
+
* KeyRange: { // KeyRange
|
|
37
37
|
* BeginMarker: "STRING_VALUE",
|
|
38
38
|
* EndMarker: "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
|
-
* TargetOnDeviceServices: [
|
|
41
|
-
* {
|
|
40
|
+
* TargetOnDeviceServices: [ // TargetOnDeviceServiceList
|
|
41
|
+
* { // TargetOnDeviceService
|
|
42
42
|
* ServiceName: "NFS_ON_DEVICE_SERVICE" || "S3_ON_DEVICE_SERVICE",
|
|
43
43
|
* TransferOption: "IMPORT" || "EXPORT" || "LOCAL_USE",
|
|
44
44
|
* },
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
47
47
|
* ],
|
|
48
|
-
* LambdaResources: [
|
|
49
|
-
* {
|
|
48
|
+
* LambdaResources: [ // LambdaResourceList
|
|
49
|
+
* { // LambdaResource
|
|
50
50
|
* LambdaArn: "STRING_VALUE",
|
|
51
|
-
* EventTriggers: [
|
|
52
|
-
* {
|
|
51
|
+
* EventTriggers: [ // EventTriggerDefinitionList
|
|
52
|
+
* { // EventTriggerDefinition
|
|
53
53
|
* EventResourceARN: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
|
-
* Ec2AmiResources: [
|
|
59
|
-
* {
|
|
58
|
+
* Ec2AmiResources: [ // Ec2AmiResourceList
|
|
59
|
+
* { // Ec2AmiResource
|
|
60
60
|
* AmiId: "STRING_VALUE", // required
|
|
61
61
|
* SnowballAmiId: "STRING_VALUE",
|
|
62
62
|
* },
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
65
|
-
* OnDeviceServiceConfiguration: {
|
|
66
|
-
* NFSOnDeviceService: {
|
|
65
|
+
* OnDeviceServiceConfiguration: { // OnDeviceServiceConfiguration
|
|
66
|
+
* NFSOnDeviceService: { // NFSOnDeviceServiceConfiguration
|
|
67
67
|
* StorageLimit: Number("int"),
|
|
68
68
|
* StorageUnit: "TB",
|
|
69
69
|
* },
|
|
70
|
-
* TGWOnDeviceService: {
|
|
70
|
+
* TGWOnDeviceService: { // TGWOnDeviceServiceConfiguration
|
|
71
71
|
* StorageLimit: Number("int"),
|
|
72
72
|
* StorageUnit: "TB",
|
|
73
73
|
* },
|
|
74
|
-
* EKSOnDeviceService: {
|
|
74
|
+
* EKSOnDeviceService: { // EKSOnDeviceServiceConfiguration
|
|
75
75
|
* KubernetesVersion: "STRING_VALUE",
|
|
76
76
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
77
77
|
* },
|
|
@@ -82,16 +82,16 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
82
82
|
* RoleARN: "STRING_VALUE", // required
|
|
83
83
|
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C", // required
|
|
84
84
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD", // required
|
|
85
|
-
* Notification: {
|
|
85
|
+
* Notification: { // Notification
|
|
86
86
|
* SnsTopicARN: "STRING_VALUE",
|
|
87
|
-
* JobStatesToNotify: [
|
|
87
|
+
* JobStatesToNotify: [ // JobStateList
|
|
88
88
|
* "New" || "PreparingAppliance" || "PreparingShipment" || "InTransitToCustomer" || "WithCustomer" || "InTransitToAWS" || "WithAWSSortingFacility" || "WithAWS" || "InProgress" || "Complete" || "Cancelled" || "Listing" || "Pending",
|
|
89
89
|
* ],
|
|
90
90
|
* NotifyAll: true || false,
|
|
91
91
|
* },
|
|
92
92
|
* ForwardingAddressId: "STRING_VALUE",
|
|
93
|
-
* TaxDocuments: {
|
|
94
|
-
* IND: {
|
|
93
|
+
* TaxDocuments: { // TaxDocuments
|
|
94
|
+
* IND: { // INDTaxDocuments
|
|
95
95
|
* GSTIN: "STRING_VALUE",
|
|
96
96
|
* },
|
|
97
97
|
* },
|
|
@@ -153,51 +153,51 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
153
153
|
* import { SnowballClient, CreateJobCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
154
154
|
* // const { SnowballClient, CreateJobCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
155
155
|
* const client = new SnowballClient(config);
|
|
156
|
-
* const input = {
|
|
156
|
+
* const input = { // CreateJobRequest
|
|
157
157
|
* JobType: "IMPORT" || "EXPORT" || "LOCAL_USE",
|
|
158
|
-
* Resources: {
|
|
159
|
-
* S3Resources: [
|
|
160
|
-
* {
|
|
158
|
+
* Resources: { // JobResource
|
|
159
|
+
* S3Resources: [ // S3ResourceList
|
|
160
|
+
* { // S3Resource
|
|
161
161
|
* BucketArn: "STRING_VALUE",
|
|
162
|
-
* KeyRange: {
|
|
162
|
+
* KeyRange: { // KeyRange
|
|
163
163
|
* BeginMarker: "STRING_VALUE",
|
|
164
164
|
* EndMarker: "STRING_VALUE",
|
|
165
165
|
* },
|
|
166
|
-
* TargetOnDeviceServices: [
|
|
167
|
-
* {
|
|
166
|
+
* TargetOnDeviceServices: [ // TargetOnDeviceServiceList
|
|
167
|
+
* { // TargetOnDeviceService
|
|
168
168
|
* ServiceName: "NFS_ON_DEVICE_SERVICE" || "S3_ON_DEVICE_SERVICE",
|
|
169
169
|
* TransferOption: "IMPORT" || "EXPORT" || "LOCAL_USE",
|
|
170
170
|
* },
|
|
171
171
|
* ],
|
|
172
172
|
* },
|
|
173
173
|
* ],
|
|
174
|
-
* LambdaResources: [
|
|
175
|
-
* {
|
|
174
|
+
* LambdaResources: [ // LambdaResourceList
|
|
175
|
+
* { // LambdaResource
|
|
176
176
|
* LambdaArn: "STRING_VALUE",
|
|
177
|
-
* EventTriggers: [
|
|
178
|
-
* {
|
|
177
|
+
* EventTriggers: [ // EventTriggerDefinitionList
|
|
178
|
+
* { // EventTriggerDefinition
|
|
179
179
|
* EventResourceARN: "STRING_VALUE",
|
|
180
180
|
* },
|
|
181
181
|
* ],
|
|
182
182
|
* },
|
|
183
183
|
* ],
|
|
184
|
-
* Ec2AmiResources: [
|
|
185
|
-
* {
|
|
184
|
+
* Ec2AmiResources: [ // Ec2AmiResourceList
|
|
185
|
+
* { // Ec2AmiResource
|
|
186
186
|
* AmiId: "STRING_VALUE", // required
|
|
187
187
|
* SnowballAmiId: "STRING_VALUE",
|
|
188
188
|
* },
|
|
189
189
|
* ],
|
|
190
190
|
* },
|
|
191
|
-
* OnDeviceServiceConfiguration: {
|
|
192
|
-
* NFSOnDeviceService: {
|
|
191
|
+
* OnDeviceServiceConfiguration: { // OnDeviceServiceConfiguration
|
|
192
|
+
* NFSOnDeviceService: { // NFSOnDeviceServiceConfiguration
|
|
193
193
|
* StorageLimit: Number("int"),
|
|
194
194
|
* StorageUnit: "TB",
|
|
195
195
|
* },
|
|
196
|
-
* TGWOnDeviceService: {
|
|
196
|
+
* TGWOnDeviceService: { // TGWOnDeviceServiceConfiguration
|
|
197
197
|
* StorageLimit: Number("int"),
|
|
198
198
|
* StorageUnit: "TB",
|
|
199
199
|
* },
|
|
200
|
-
* EKSOnDeviceService: {
|
|
200
|
+
* EKSOnDeviceService: { // EKSOnDeviceServiceConfiguration
|
|
201
201
|
* KubernetesVersion: "STRING_VALUE",
|
|
202
202
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
203
203
|
* },
|
|
@@ -208,9 +208,9 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
208
208
|
* RoleARN: "STRING_VALUE",
|
|
209
209
|
* SnowballCapacityPreference: "T50" || "T80" || "T100" || "T42" || "T98" || "T8" || "T14" || "T32" || "NoPreference",
|
|
210
210
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD",
|
|
211
|
-
* Notification: {
|
|
211
|
+
* Notification: { // Notification
|
|
212
212
|
* SnsTopicARN: "STRING_VALUE",
|
|
213
|
-
* JobStatesToNotify: [
|
|
213
|
+
* JobStatesToNotify: [ // JobStateList
|
|
214
214
|
* "New" || "PreparingAppliance" || "PreparingShipment" || "InTransitToCustomer" || "WithCustomer" || "InTransitToAWS" || "WithAWSSortingFacility" || "WithAWS" || "InProgress" || "Complete" || "Cancelled" || "Listing" || "Pending",
|
|
215
215
|
* ],
|
|
216
216
|
* NotifyAll: true || false,
|
|
@@ -218,14 +218,14 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
218
218
|
* ClusterId: "STRING_VALUE",
|
|
219
219
|
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C",
|
|
220
220
|
* ForwardingAddressId: "STRING_VALUE",
|
|
221
|
-
* TaxDocuments: {
|
|
222
|
-
* IND: {
|
|
221
|
+
* TaxDocuments: { // TaxDocuments
|
|
222
|
+
* IND: { // INDTaxDocuments
|
|
223
223
|
* GSTIN: "STRING_VALUE",
|
|
224
224
|
* },
|
|
225
225
|
* },
|
|
226
|
-
* DeviceConfiguration: {
|
|
227
|
-
* SnowconeDeviceConfiguration: {
|
|
228
|
-
* WirelessConnection: {
|
|
226
|
+
* DeviceConfiguration: { // DeviceConfiguration
|
|
227
|
+
* SnowconeDeviceConfiguration: { // SnowconeDeviceConfiguration
|
|
228
|
+
* WirelessConnection: { // WirelessConnection
|
|
229
229
|
* IsWifiEnabled: true || false,
|
|
230
230
|
* },
|
|
231
231
|
* },
|
|
@@ -28,7 +28,7 @@ export interface CreateLongTermPricingCommandOutput extends CreateLongTermPricin
|
|
|
28
28
|
* import { SnowballClient, CreateLongTermPricingCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, CreateLongTermPricingCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateLongTermPricingRequest
|
|
32
32
|
* LongTermPricingType: "OneYear" || "ThreeYear", // required
|
|
33
33
|
* IsLongTermPricingAutoRenew: true || false,
|
|
34
34
|
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C",
|
|
@@ -26,7 +26,7 @@ export interface CreateReturnShippingLabelCommandOutput extends CreateReturnShip
|
|
|
26
26
|
* import { SnowballClient, CreateReturnShippingLabelCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
27
27
|
* // const { SnowballClient, CreateReturnShippingLabelCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
28
28
|
* const client = new SnowballClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateReturnShippingLabelRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DescribeAddressCommandOutput extends DescribeAddressResult, __M
|
|
|
27
27
|
* import { SnowballClient, DescribeAddressCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, DescribeAddressCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeAddressRequest
|
|
31
31
|
* AddressId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeAddressCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeAddressesCommandOutput extends DescribeAddressesResult,
|
|
|
28
28
|
* import { SnowballClient, DescribeAddressesCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, DescribeAddressesCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeAddressesRequest
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResult, __M
|
|
|
27
27
|
* import { SnowballClient, DescribeClusterCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, DescribeClusterCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeClusterRequest
|
|
31
31
|
* ClusterId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeClusterCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB
|
|
|
27
27
|
* import { SnowballClient, DescribeJobCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, DescribeJobCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeJobRequest
|
|
31
31
|
* JobId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeJobCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturn
|
|
|
26
26
|
* import { SnowballClient, DescribeReturnShippingLabelCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
27
27
|
* // const { SnowballClient, DescribeReturnShippingLabelCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
28
28
|
* const client = new SnowballClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeReturnShippingLabelRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeReturnShippingLabelCommand(input);
|
|
@@ -41,7 +41,7 @@ export interface GetJobManifestCommandOutput extends GetJobManifestResult, __Met
|
|
|
41
41
|
* import { SnowballClient, GetJobManifestCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
42
42
|
* // const { SnowballClient, GetJobManifestCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
43
43
|
* const client = new SnowballClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // GetJobManifestRequest
|
|
45
45
|
* JobId: "STRING_VALUE", // required
|
|
46
46
|
* };
|
|
47
47
|
* const command = new GetJobManifestCommand(input);
|
|
@@ -38,7 +38,7 @@ export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, _
|
|
|
38
38
|
* import { SnowballClient, GetJobUnlockCodeCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
39
39
|
* // const { SnowballClient, GetJobUnlockCodeCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
40
40
|
* const client = new SnowballClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // GetJobUnlockCodeRequest
|
|
42
42
|
* JobId: "STRING_VALUE", // required
|
|
43
43
|
* };
|
|
44
44
|
* const command = new GetJobUnlockCodeCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResul
|
|
|
27
27
|
* import { SnowballClient, GetSoftwareUpdatesCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, GetSoftwareUpdatesCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetSoftwareUpdatesRequest
|
|
31
31
|
* JobId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSoftwareUpdatesCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __M
|
|
|
28
28
|
* import { SnowballClient, ListClusterJobsCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, ListClusterJobsCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListClusterJobsRequest
|
|
32
32
|
* ClusterId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListClustersCommandOutput extends ListClustersResult, __Metadat
|
|
|
28
28
|
* import { SnowballClient, ListClustersCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, ListClustersCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListClustersRequest
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -30,7 +30,7 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR
|
|
|
30
30
|
* import { SnowballClient, ListCompatibleImagesCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
31
31
|
* // const { SnowballClient, ListCompatibleImagesCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
32
32
|
* const client = new SnowballClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListCompatibleImagesRequest
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -30,7 +30,7 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
|
|
|
30
30
|
* import { SnowballClient, ListJobsCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
31
31
|
* // const { SnowballClient, ListJobsCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
32
32
|
* const client = new SnowballClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListJobsRequest
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListLongTermPricingCommandOutput extends ListLongTermPricingRes
|
|
|
26
26
|
* import { SnowballClient, ListLongTermPricingCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
27
27
|
* // const { SnowballClient, ListLongTermPricingCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
28
28
|
* const client = new SnowballClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListLongTermPricingRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,12 +27,12 @@ export interface ListServiceVersionsCommandOutput extends ListServiceVersionsRes
|
|
|
27
27
|
* import { SnowballClient, ListServiceVersionsCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
28
28
|
* // const { SnowballClient, ListServiceVersionsCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
29
29
|
* const client = new SnowballClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListServiceVersionsRequest
|
|
31
31
|
* ServiceName: "KUBERNETES" || "EKS_ANYWHERE", // required
|
|
32
|
-
* DependentServices: [
|
|
33
|
-
* {
|
|
32
|
+
* DependentServices: [ // DependentServiceList
|
|
33
|
+
* { // DependentService
|
|
34
34
|
* ServiceName: "KUBERNETES" || "EKS_ANYWHERE",
|
|
35
|
-
* ServiceVersion: {
|
|
35
|
+
* ServiceVersion: { // ServiceVersion
|
|
36
36
|
* Version: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* },
|
|
@@ -29,62 +29,62 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResult, __Metad
|
|
|
29
29
|
* import { SnowballClient, UpdateClusterCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
30
30
|
* // const { SnowballClient, UpdateClusterCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
31
31
|
* const client = new SnowballClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateClusterRequest
|
|
33
33
|
* ClusterId: "STRING_VALUE", // required
|
|
34
34
|
* RoleARN: "STRING_VALUE",
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
|
-
* Resources: {
|
|
37
|
-
* S3Resources: [
|
|
38
|
-
* {
|
|
36
|
+
* Resources: { // JobResource
|
|
37
|
+
* S3Resources: [ // S3ResourceList
|
|
38
|
+
* { // S3Resource
|
|
39
39
|
* BucketArn: "STRING_VALUE",
|
|
40
|
-
* KeyRange: {
|
|
40
|
+
* KeyRange: { // KeyRange
|
|
41
41
|
* BeginMarker: "STRING_VALUE",
|
|
42
42
|
* EndMarker: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* TargetOnDeviceServices: [
|
|
45
|
-
* {
|
|
44
|
+
* TargetOnDeviceServices: [ // TargetOnDeviceServiceList
|
|
45
|
+
* { // TargetOnDeviceService
|
|
46
46
|
* ServiceName: "NFS_ON_DEVICE_SERVICE" || "S3_ON_DEVICE_SERVICE",
|
|
47
47
|
* TransferOption: "IMPORT" || "EXPORT" || "LOCAL_USE",
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
51
51
|
* ],
|
|
52
|
-
* LambdaResources: [
|
|
53
|
-
* {
|
|
52
|
+
* LambdaResources: [ // LambdaResourceList
|
|
53
|
+
* { // LambdaResource
|
|
54
54
|
* LambdaArn: "STRING_VALUE",
|
|
55
|
-
* EventTriggers: [
|
|
56
|
-
* {
|
|
55
|
+
* EventTriggers: [ // EventTriggerDefinitionList
|
|
56
|
+
* { // EventTriggerDefinition
|
|
57
57
|
* EventResourceARN: "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* ],
|
|
60
60
|
* },
|
|
61
61
|
* ],
|
|
62
|
-
* Ec2AmiResources: [
|
|
63
|
-
* {
|
|
62
|
+
* Ec2AmiResources: [ // Ec2AmiResourceList
|
|
63
|
+
* { // Ec2AmiResource
|
|
64
64
|
* AmiId: "STRING_VALUE", // required
|
|
65
65
|
* SnowballAmiId: "STRING_VALUE",
|
|
66
66
|
* },
|
|
67
67
|
* ],
|
|
68
68
|
* },
|
|
69
|
-
* OnDeviceServiceConfiguration: {
|
|
70
|
-
* NFSOnDeviceService: {
|
|
69
|
+
* OnDeviceServiceConfiguration: { // OnDeviceServiceConfiguration
|
|
70
|
+
* NFSOnDeviceService: { // NFSOnDeviceServiceConfiguration
|
|
71
71
|
* StorageLimit: Number("int"),
|
|
72
72
|
* StorageUnit: "TB",
|
|
73
73
|
* },
|
|
74
|
-
* TGWOnDeviceService: {
|
|
74
|
+
* TGWOnDeviceService: { // TGWOnDeviceServiceConfiguration
|
|
75
75
|
* StorageLimit: Number("int"),
|
|
76
76
|
* StorageUnit: "TB",
|
|
77
77
|
* },
|
|
78
|
-
* EKSOnDeviceService: {
|
|
78
|
+
* EKSOnDeviceService: { // EKSOnDeviceServiceConfiguration
|
|
79
79
|
* KubernetesVersion: "STRING_VALUE",
|
|
80
80
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
81
81
|
* },
|
|
82
82
|
* },
|
|
83
83
|
* AddressId: "STRING_VALUE",
|
|
84
84
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD",
|
|
85
|
-
* Notification: {
|
|
85
|
+
* Notification: { // Notification
|
|
86
86
|
* SnsTopicARN: "STRING_VALUE",
|
|
87
|
-
* JobStatesToNotify: [
|
|
87
|
+
* JobStatesToNotify: [ // JobStateList
|
|
88
88
|
* "New" || "PreparingAppliance" || "PreparingShipment" || "InTransitToCustomer" || "WithCustomer" || "InTransitToAWS" || "WithAWSSortingFacility" || "WithAWS" || "InProgress" || "Complete" || "Cancelled" || "Listing" || "Pending",
|
|
89
89
|
* ],
|
|
90
90
|
* NotifyAll: true || false,
|
|
@@ -28,59 +28,59 @@ export interface UpdateJobCommandOutput extends UpdateJobResult, __MetadataBeare
|
|
|
28
28
|
* import { SnowballClient, UpdateJobCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
29
29
|
* // const { SnowballClient, UpdateJobCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateJobRequest
|
|
32
32
|
* JobId: "STRING_VALUE", // required
|
|
33
33
|
* RoleARN: "STRING_VALUE",
|
|
34
|
-
* Notification: {
|
|
34
|
+
* Notification: { // Notification
|
|
35
35
|
* SnsTopicARN: "STRING_VALUE",
|
|
36
|
-
* JobStatesToNotify: [
|
|
36
|
+
* JobStatesToNotify: [ // JobStateList
|
|
37
37
|
* "New" || "PreparingAppliance" || "PreparingShipment" || "InTransitToCustomer" || "WithCustomer" || "InTransitToAWS" || "WithAWSSortingFacility" || "WithAWS" || "InProgress" || "Complete" || "Cancelled" || "Listing" || "Pending",
|
|
38
38
|
* ],
|
|
39
39
|
* NotifyAll: true || false,
|
|
40
40
|
* },
|
|
41
|
-
* Resources: {
|
|
42
|
-
* S3Resources: [
|
|
43
|
-
* {
|
|
41
|
+
* Resources: { // JobResource
|
|
42
|
+
* S3Resources: [ // S3ResourceList
|
|
43
|
+
* { // S3Resource
|
|
44
44
|
* BucketArn: "STRING_VALUE",
|
|
45
|
-
* KeyRange: {
|
|
45
|
+
* KeyRange: { // KeyRange
|
|
46
46
|
* BeginMarker: "STRING_VALUE",
|
|
47
47
|
* EndMarker: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
|
-
* TargetOnDeviceServices: [
|
|
50
|
-
* {
|
|
49
|
+
* TargetOnDeviceServices: [ // TargetOnDeviceServiceList
|
|
50
|
+
* { // TargetOnDeviceService
|
|
51
51
|
* ServiceName: "NFS_ON_DEVICE_SERVICE" || "S3_ON_DEVICE_SERVICE",
|
|
52
52
|
* TransferOption: "IMPORT" || "EXPORT" || "LOCAL_USE",
|
|
53
53
|
* },
|
|
54
54
|
* ],
|
|
55
55
|
* },
|
|
56
56
|
* ],
|
|
57
|
-
* LambdaResources: [
|
|
58
|
-
* {
|
|
57
|
+
* LambdaResources: [ // LambdaResourceList
|
|
58
|
+
* { // LambdaResource
|
|
59
59
|
* LambdaArn: "STRING_VALUE",
|
|
60
|
-
* EventTriggers: [
|
|
61
|
-
* {
|
|
60
|
+
* EventTriggers: [ // EventTriggerDefinitionList
|
|
61
|
+
* { // EventTriggerDefinition
|
|
62
62
|
* EventResourceARN: "STRING_VALUE",
|
|
63
63
|
* },
|
|
64
64
|
* ],
|
|
65
65
|
* },
|
|
66
66
|
* ],
|
|
67
|
-
* Ec2AmiResources: [
|
|
68
|
-
* {
|
|
67
|
+
* Ec2AmiResources: [ // Ec2AmiResourceList
|
|
68
|
+
* { // Ec2AmiResource
|
|
69
69
|
* AmiId: "STRING_VALUE", // required
|
|
70
70
|
* SnowballAmiId: "STRING_VALUE",
|
|
71
71
|
* },
|
|
72
72
|
* ],
|
|
73
73
|
* },
|
|
74
|
-
* OnDeviceServiceConfiguration: {
|
|
75
|
-
* NFSOnDeviceService: {
|
|
74
|
+
* OnDeviceServiceConfiguration: { // OnDeviceServiceConfiguration
|
|
75
|
+
* NFSOnDeviceService: { // NFSOnDeviceServiceConfiguration
|
|
76
76
|
* StorageLimit: Number("int"),
|
|
77
77
|
* StorageUnit: "TB",
|
|
78
78
|
* },
|
|
79
|
-
* TGWOnDeviceService: {
|
|
79
|
+
* TGWOnDeviceService: { // TGWOnDeviceServiceConfiguration
|
|
80
80
|
* StorageLimit: Number("int"),
|
|
81
81
|
* StorageUnit: "TB",
|
|
82
82
|
* },
|
|
83
|
-
* EKSOnDeviceService: {
|
|
83
|
+
* EKSOnDeviceService: { // EKSOnDeviceServiceConfiguration
|
|
84
84
|
* KubernetesVersion: "STRING_VALUE",
|
|
85
85
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
86
86
|
* },
|
|
@@ -26,7 +26,7 @@ export interface UpdateJobShipmentStateCommandOutput extends UpdateJobShipmentSt
|
|
|
26
26
|
* import { SnowballClient, UpdateJobShipmentStateCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
27
27
|
* // const { SnowballClient, UpdateJobShipmentStateCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
28
28
|
* const client = new SnowballClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateJobShipmentStateRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* ShipmentState: "RECEIVED" || "RETURNED", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateLongTermPricingCommandOutput extends UpdateLongTermPricin
|
|
|
26
26
|
* import { SnowballClient, UpdateLongTermPricingCommand } from "@aws-sdk/client-snowball"; // ES Modules import
|
|
27
27
|
* // const { SnowballClient, UpdateLongTermPricingCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
28
28
|
* const client = new SnowballClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateLongTermPricingRequest
|
|
30
30
|
* LongTermPricingId: "STRING_VALUE", // required
|
|
31
31
|
* ReplacementJob: "STRING_VALUE",
|
|
32
32
|
* IsLongTermPricingAutoRenew: true || false,
|
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.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|