@aws-sdk/client-snow-device-management 3.379.1 → 3.385.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 +132 -0
- package/package.json +5 -5
|
@@ -31,6 +31,7 @@ export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof Attachment
|
|
|
31
31
|
*/
|
|
32
32
|
export interface CancelTaskInput {
|
|
33
33
|
/**
|
|
34
|
+
* @public
|
|
34
35
|
* <p>The ID of the task that you are attempting to cancel. You can retrieve a task ID by using
|
|
35
36
|
* the <code>ListTasks</code> operation.</p>
|
|
36
37
|
*/
|
|
@@ -41,6 +42,7 @@ export interface CancelTaskInput {
|
|
|
41
42
|
*/
|
|
42
43
|
export interface CancelTaskOutput {
|
|
43
44
|
/**
|
|
45
|
+
* @public
|
|
44
46
|
* <p>The ID of the task that you are attempting to cancel.</p>
|
|
45
47
|
*/
|
|
46
48
|
taskId?: string;
|
|
@@ -103,22 +105,27 @@ export declare class ValidationException extends __BaseException {
|
|
|
103
105
|
*/
|
|
104
106
|
export interface Capacity {
|
|
105
107
|
/**
|
|
108
|
+
* @public
|
|
106
109
|
* <p>The name of the type of capacity, such as memory.</p>
|
|
107
110
|
*/
|
|
108
111
|
name?: string;
|
|
109
112
|
/**
|
|
113
|
+
* @public
|
|
110
114
|
* <p>The unit of measure for the type of capacity.</p>
|
|
111
115
|
*/
|
|
112
116
|
unit?: string;
|
|
113
117
|
/**
|
|
118
|
+
* @public
|
|
114
119
|
* <p>The total capacity on the device.</p>
|
|
115
120
|
*/
|
|
116
121
|
total?: number;
|
|
117
122
|
/**
|
|
123
|
+
* @public
|
|
118
124
|
* <p>The amount of capacity used on the device.</p>
|
|
119
125
|
*/
|
|
120
126
|
used?: number;
|
|
121
127
|
/**
|
|
128
|
+
* @public
|
|
122
129
|
* <p>The amount of capacity available for use on the device.</p>
|
|
123
130
|
*/
|
|
124
131
|
available?: number;
|
|
@@ -145,6 +152,7 @@ export type Command = Command.RebootMember | Command.UnlockMember | Command.$Unk
|
|
|
145
152
|
*/
|
|
146
153
|
export declare namespace Command {
|
|
147
154
|
/**
|
|
155
|
+
* @public
|
|
148
156
|
* <p>Unlocks the device.</p>
|
|
149
157
|
*/
|
|
150
158
|
interface UnlockMember {
|
|
@@ -153,6 +161,7 @@ export declare namespace Command {
|
|
|
153
161
|
$unknown?: never;
|
|
154
162
|
}
|
|
155
163
|
/**
|
|
164
|
+
* @public
|
|
156
165
|
* <p>Reboots the device.</p>
|
|
157
166
|
*/
|
|
158
167
|
interface RebootMember {
|
|
@@ -160,6 +169,9 @@ export declare namespace Command {
|
|
|
160
169
|
reboot: Reboot;
|
|
161
170
|
$unknown?: never;
|
|
162
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
163
175
|
interface $UnknownMember {
|
|
164
176
|
unlock?: never;
|
|
165
177
|
reboot?: never;
|
|
@@ -178,10 +190,12 @@ export declare namespace Command {
|
|
|
178
190
|
*/
|
|
179
191
|
export interface CpuOptions {
|
|
180
192
|
/**
|
|
193
|
+
* @public
|
|
181
194
|
* <p>The number of cores that the CPU can use.</p>
|
|
182
195
|
*/
|
|
183
196
|
coreCount?: number;
|
|
184
197
|
/**
|
|
198
|
+
* @public
|
|
185
199
|
* <p>The number of threads per core in the CPU.</p>
|
|
186
200
|
*/
|
|
187
201
|
threadsPerCore?: number;
|
|
@@ -191,23 +205,28 @@ export interface CpuOptions {
|
|
|
191
205
|
*/
|
|
192
206
|
export interface CreateTaskInput {
|
|
193
207
|
/**
|
|
208
|
+
* @public
|
|
194
209
|
* <p>A list of managed device IDs.</p>
|
|
195
210
|
*/
|
|
196
211
|
targets: string[] | undefined;
|
|
197
212
|
/**
|
|
213
|
+
* @public
|
|
198
214
|
* <p>The task to be performed. Only one task is executed on a device at a time.</p>
|
|
199
215
|
*/
|
|
200
216
|
command: Command | undefined;
|
|
201
217
|
/**
|
|
218
|
+
* @public
|
|
202
219
|
* <p>A description of the task and its targets.</p>
|
|
203
220
|
*/
|
|
204
221
|
description?: string;
|
|
205
222
|
/**
|
|
223
|
+
* @public
|
|
206
224
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
207
225
|
* in different ways, such as by purpose, owner, or environment. </p>
|
|
208
226
|
*/
|
|
209
227
|
tags?: Record<string, string>;
|
|
210
228
|
/**
|
|
229
|
+
* @public
|
|
211
230
|
* <p>A token ensuring that the action is called only once with the specified details.</p>
|
|
212
231
|
*/
|
|
213
232
|
clientToken?: string;
|
|
@@ -217,10 +236,12 @@ export interface CreateTaskInput {
|
|
|
217
236
|
*/
|
|
218
237
|
export interface CreateTaskOutput {
|
|
219
238
|
/**
|
|
239
|
+
* @public
|
|
220
240
|
* <p>The ID of the task that you created.</p>
|
|
221
241
|
*/
|
|
222
242
|
taskId?: string;
|
|
223
243
|
/**
|
|
244
|
+
* @public
|
|
224
245
|
* <p>The Amazon Resource Name (ARN) of the task that you created.</p>
|
|
225
246
|
*/
|
|
226
247
|
taskArn?: string;
|
|
@@ -242,6 +263,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
242
263
|
*/
|
|
243
264
|
export interface DescribeDeviceInput {
|
|
244
265
|
/**
|
|
266
|
+
* @public
|
|
245
267
|
* <p>The ID of the device that you are checking the information of.</p>
|
|
246
268
|
*/
|
|
247
269
|
managedDeviceId: string | undefined;
|
|
@@ -292,32 +314,39 @@ export type PhysicalConnectorType = (typeof PhysicalConnectorType)[keyof typeof
|
|
|
292
314
|
*/
|
|
293
315
|
export interface PhysicalNetworkInterface {
|
|
294
316
|
/**
|
|
317
|
+
* @public
|
|
295
318
|
* <p>The physical network interface ID.</p>
|
|
296
319
|
*/
|
|
297
320
|
physicalNetworkInterfaceId?: string;
|
|
298
321
|
/**
|
|
322
|
+
* @public
|
|
299
323
|
* <p>The
|
|
300
324
|
* physical
|
|
301
325
|
* connector type.</p>
|
|
302
326
|
*/
|
|
303
327
|
physicalConnectorType?: PhysicalConnectorType | string;
|
|
304
328
|
/**
|
|
329
|
+
* @public
|
|
305
330
|
* <p>A value that describes whether the IP address is dynamic or persistent.</p>
|
|
306
331
|
*/
|
|
307
332
|
ipAddressAssignment?: IpAddressAssignment | string;
|
|
308
333
|
/**
|
|
334
|
+
* @public
|
|
309
335
|
* <p>The IP address of the device.</p>
|
|
310
336
|
*/
|
|
311
337
|
ipAddress?: string;
|
|
312
338
|
/**
|
|
339
|
+
* @public
|
|
313
340
|
* <p>The netmask used to divide the IP address into subnets.</p>
|
|
314
341
|
*/
|
|
315
342
|
netmask?: string;
|
|
316
343
|
/**
|
|
344
|
+
* @public
|
|
317
345
|
* <p>The default gateway of the device.</p>
|
|
318
346
|
*/
|
|
319
347
|
defaultGateway?: string;
|
|
320
348
|
/**
|
|
349
|
+
* @public
|
|
321
350
|
* <p>The MAC address of the device.</p>
|
|
322
351
|
*/
|
|
323
352
|
macAddress?: string;
|
|
@@ -328,14 +357,17 @@ export interface PhysicalNetworkInterface {
|
|
|
328
357
|
*/
|
|
329
358
|
export interface SoftwareInformation {
|
|
330
359
|
/**
|
|
360
|
+
* @public
|
|
331
361
|
* <p>The version of the software currently installed on the device.</p>
|
|
332
362
|
*/
|
|
333
363
|
installedVersion?: string;
|
|
334
364
|
/**
|
|
365
|
+
* @public
|
|
335
366
|
* <p>The version of the software being installed on the device.</p>
|
|
336
367
|
*/
|
|
337
368
|
installingVersion?: string;
|
|
338
369
|
/**
|
|
370
|
+
* @public
|
|
339
371
|
* <p>The state of the software that is installed or that is being installed on the
|
|
340
372
|
* device.</p>
|
|
341
373
|
*/
|
|
@@ -346,49 +378,60 @@ export interface SoftwareInformation {
|
|
|
346
378
|
*/
|
|
347
379
|
export interface DescribeDeviceOutput {
|
|
348
380
|
/**
|
|
381
|
+
* @public
|
|
349
382
|
* <p>When the device last contacted the Amazon Web Services Cloud. Indicates that the device is
|
|
350
383
|
* online.</p>
|
|
351
384
|
*/
|
|
352
385
|
lastReachedOutAt?: Date;
|
|
353
386
|
/**
|
|
387
|
+
* @public
|
|
354
388
|
* <p>When the device last pushed an update to the Amazon Web Services Cloud. Indicates when the device cache
|
|
355
389
|
* was refreshed.</p>
|
|
356
390
|
*/
|
|
357
391
|
lastUpdatedAt?: Date;
|
|
358
392
|
/**
|
|
393
|
+
* @public
|
|
359
394
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
360
395
|
* in different ways, such as by purpose, owner, or environment. </p>
|
|
361
396
|
*/
|
|
362
397
|
tags?: Record<string, string>;
|
|
363
398
|
/**
|
|
399
|
+
* @public
|
|
364
400
|
* <p>The ID of the device that you checked the information for.</p>
|
|
365
401
|
*/
|
|
366
402
|
managedDeviceId?: string;
|
|
367
403
|
/**
|
|
404
|
+
* @public
|
|
368
405
|
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
369
406
|
*/
|
|
370
407
|
managedDeviceArn?: string;
|
|
371
408
|
/**
|
|
409
|
+
* @public
|
|
372
410
|
* <p>The type of Amazon Web Services Snow Family device.</p>
|
|
373
411
|
*/
|
|
374
412
|
deviceType?: string;
|
|
375
413
|
/**
|
|
414
|
+
* @public
|
|
376
415
|
* <p>The ID of the job used when ordering the device.</p>
|
|
377
416
|
*/
|
|
378
417
|
associatedWithJob?: string;
|
|
379
418
|
/**
|
|
419
|
+
* @public
|
|
380
420
|
* <p>The current state of the device.</p>
|
|
381
421
|
*/
|
|
382
422
|
deviceState?: UnlockState | string;
|
|
383
423
|
/**
|
|
424
|
+
* @public
|
|
384
425
|
* <p>The network interfaces available on the device.</p>
|
|
385
426
|
*/
|
|
386
427
|
physicalNetworkInterfaces?: PhysicalNetworkInterface[];
|
|
387
428
|
/**
|
|
429
|
+
* @public
|
|
388
430
|
* <p>The hardware specifications of the device. </p>
|
|
389
431
|
*/
|
|
390
432
|
deviceCapacities?: Capacity[];
|
|
391
433
|
/**
|
|
434
|
+
* @public
|
|
392
435
|
* <p>The software installed on the device.</p>
|
|
393
436
|
*/
|
|
394
437
|
software?: SoftwareInformation;
|
|
@@ -398,10 +441,12 @@ export interface DescribeDeviceOutput {
|
|
|
398
441
|
*/
|
|
399
442
|
export interface DescribeDeviceEc2Input {
|
|
400
443
|
/**
|
|
444
|
+
* @public
|
|
401
445
|
* <p>The ID of the managed device.</p>
|
|
402
446
|
*/
|
|
403
447
|
managedDeviceId: string | undefined;
|
|
404
448
|
/**
|
|
449
|
+
* @public
|
|
405
450
|
* <p>A list of instance IDs associated with the managed device.</p>
|
|
406
451
|
*/
|
|
407
452
|
instanceIds: string[] | undefined;
|
|
@@ -413,18 +458,22 @@ export interface DescribeDeviceEc2Input {
|
|
|
413
458
|
*/
|
|
414
459
|
export interface EbsInstanceBlockDevice {
|
|
415
460
|
/**
|
|
461
|
+
* @public
|
|
416
462
|
* <p>When the attachment was initiated.</p>
|
|
417
463
|
*/
|
|
418
464
|
attachTime?: Date;
|
|
419
465
|
/**
|
|
466
|
+
* @public
|
|
420
467
|
* <p>A value that indicates whether the volume is deleted on instance termination.</p>
|
|
421
468
|
*/
|
|
422
469
|
deleteOnTermination?: boolean;
|
|
423
470
|
/**
|
|
471
|
+
* @public
|
|
424
472
|
* <p>The attachment state.</p>
|
|
425
473
|
*/
|
|
426
474
|
status?: AttachmentStatus | string;
|
|
427
475
|
/**
|
|
476
|
+
* @public
|
|
428
477
|
* <p>The ID of the Amazon EBS volume.</p>
|
|
429
478
|
*/
|
|
430
479
|
volumeId?: string;
|
|
@@ -435,10 +484,12 @@ export interface EbsInstanceBlockDevice {
|
|
|
435
484
|
*/
|
|
436
485
|
export interface InstanceBlockDeviceMapping {
|
|
437
486
|
/**
|
|
487
|
+
* @public
|
|
438
488
|
* <p>The block device name.</p>
|
|
439
489
|
*/
|
|
440
490
|
deviceName?: string;
|
|
441
491
|
/**
|
|
492
|
+
* @public
|
|
442
493
|
* <p>The parameters used to automatically set up Amazon Elastic Block Store (Amazon EBS)
|
|
443
494
|
* volumes when the instance is launched. </p>
|
|
444
495
|
*/
|
|
@@ -450,10 +501,12 @@ export interface InstanceBlockDeviceMapping {
|
|
|
450
501
|
*/
|
|
451
502
|
export interface SecurityGroupIdentifier {
|
|
452
503
|
/**
|
|
504
|
+
* @public
|
|
453
505
|
* <p>The security group ID.</p>
|
|
454
506
|
*/
|
|
455
507
|
groupId?: string;
|
|
456
508
|
/**
|
|
509
|
+
* @public
|
|
457
510
|
* <p>The security group name.</p>
|
|
458
511
|
*/
|
|
459
512
|
groupName?: string;
|
|
@@ -480,6 +533,7 @@ export type InstanceStateName = (typeof InstanceStateName)[keyof typeof Instance
|
|
|
480
533
|
*/
|
|
481
534
|
export interface InstanceState {
|
|
482
535
|
/**
|
|
536
|
+
* @public
|
|
483
537
|
* <p>The state of the instance as a 16-bit unsigned integer. </p>
|
|
484
538
|
* <p>The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values
|
|
485
539
|
* between 256 and 65,535. These numerical values are used for internal purposes and should be
|
|
@@ -525,6 +579,7 @@ export interface InstanceState {
|
|
|
525
579
|
*/
|
|
526
580
|
code?: number;
|
|
527
581
|
/**
|
|
582
|
+
* @public
|
|
528
583
|
* <p>The current
|
|
529
584
|
* state
|
|
530
585
|
* of the instance.</p>
|
|
@@ -539,55 +594,68 @@ export interface InstanceState {
|
|
|
539
594
|
*/
|
|
540
595
|
export interface Instance {
|
|
541
596
|
/**
|
|
597
|
+
* @public
|
|
542
598
|
* <p>The ID of the AMI used to launch the instance.</p>
|
|
543
599
|
*/
|
|
544
600
|
imageId?: string;
|
|
545
601
|
/**
|
|
602
|
+
* @public
|
|
546
603
|
* <p>The Amazon Machine Image (AMI) launch index, which you can use to find this instance in
|
|
547
604
|
* the launch group. </p>
|
|
548
605
|
*/
|
|
549
606
|
amiLaunchIndex?: number;
|
|
550
607
|
/**
|
|
608
|
+
* @public
|
|
551
609
|
* <p>The ID of the instance.</p>
|
|
552
610
|
*/
|
|
553
611
|
instanceId?: string;
|
|
554
612
|
/**
|
|
613
|
+
* @public
|
|
555
614
|
* <p>The description of the current state of an instance.</p>
|
|
556
615
|
*/
|
|
557
616
|
state?: InstanceState;
|
|
558
617
|
/**
|
|
618
|
+
* @public
|
|
559
619
|
* <p>The instance type.</p>
|
|
560
620
|
*/
|
|
561
621
|
instanceType?: string;
|
|
562
622
|
/**
|
|
623
|
+
* @public
|
|
563
624
|
* <p>The private IPv4 address assigned to the instance.</p>
|
|
564
625
|
*/
|
|
565
626
|
privateIpAddress?: string;
|
|
566
627
|
/**
|
|
628
|
+
* @public
|
|
567
629
|
* <p>The public IPv4 address assigned to the instance.</p>
|
|
568
630
|
*/
|
|
569
631
|
publicIpAddress?: string;
|
|
570
632
|
/**
|
|
633
|
+
* @public
|
|
571
634
|
* <p>When the instance was created.</p>
|
|
572
635
|
*/
|
|
573
636
|
createdAt?: Date;
|
|
574
637
|
/**
|
|
638
|
+
* @public
|
|
575
639
|
* <p>When the instance was last updated.</p>
|
|
576
640
|
*/
|
|
577
641
|
updatedAt?: Date;
|
|
578
642
|
/**
|
|
643
|
+
* @public
|
|
579
644
|
* <p>Any block device mapping entries for the instance.</p>
|
|
580
645
|
*/
|
|
581
646
|
blockDeviceMappings?: InstanceBlockDeviceMapping[];
|
|
582
647
|
/**
|
|
648
|
+
* @public
|
|
583
649
|
* <p>The security groups for the instance.</p>
|
|
584
650
|
*/
|
|
585
651
|
securityGroups?: SecurityGroupIdentifier[];
|
|
586
652
|
/**
|
|
653
|
+
* @public
|
|
587
654
|
* <p>The CPU options for the instance.</p>
|
|
588
655
|
*/
|
|
589
656
|
cpuOptions?: CpuOptions;
|
|
590
657
|
/**
|
|
658
|
+
* @public
|
|
591
659
|
* <p>The device name of the root device volume (for example, <code>/dev/sda1</code>). </p>
|
|
592
660
|
*/
|
|
593
661
|
rootDeviceName?: string;
|
|
@@ -598,10 +666,12 @@ export interface Instance {
|
|
|
598
666
|
*/
|
|
599
667
|
export interface InstanceSummary {
|
|
600
668
|
/**
|
|
669
|
+
* @public
|
|
601
670
|
* <p>A structure containing details about the instance.</p>
|
|
602
671
|
*/
|
|
603
672
|
instance?: Instance;
|
|
604
673
|
/**
|
|
674
|
+
* @public
|
|
605
675
|
* <p>When the instance summary was last updated.</p>
|
|
606
676
|
*/
|
|
607
677
|
lastUpdatedAt?: Date;
|
|
@@ -611,6 +681,7 @@ export interface InstanceSummary {
|
|
|
611
681
|
*/
|
|
612
682
|
export interface DescribeDeviceEc2Output {
|
|
613
683
|
/**
|
|
684
|
+
* @public
|
|
614
685
|
* <p>A list of structures containing information about each instance. </p>
|
|
615
686
|
*/
|
|
616
687
|
instances?: InstanceSummary[];
|
|
@@ -620,10 +691,12 @@ export interface DescribeDeviceEc2Output {
|
|
|
620
691
|
*/
|
|
621
692
|
export interface DescribeExecutionInput {
|
|
622
693
|
/**
|
|
694
|
+
* @public
|
|
623
695
|
* <p>The ID of the task that the action is describing.</p>
|
|
624
696
|
*/
|
|
625
697
|
taskId: string | undefined;
|
|
626
698
|
/**
|
|
699
|
+
* @public
|
|
627
700
|
* <p>The ID of the managed device.</p>
|
|
628
701
|
*/
|
|
629
702
|
managedDeviceId: string | undefined;
|
|
@@ -650,26 +723,32 @@ export type ExecutionState = (typeof ExecutionState)[keyof typeof ExecutionState
|
|
|
650
723
|
*/
|
|
651
724
|
export interface DescribeExecutionOutput {
|
|
652
725
|
/**
|
|
726
|
+
* @public
|
|
653
727
|
* <p>The ID of the task being executed on the device.</p>
|
|
654
728
|
*/
|
|
655
729
|
taskId?: string;
|
|
656
730
|
/**
|
|
731
|
+
* @public
|
|
657
732
|
* <p>The ID of the execution.</p>
|
|
658
733
|
*/
|
|
659
734
|
executionId?: string;
|
|
660
735
|
/**
|
|
736
|
+
* @public
|
|
661
737
|
* <p>The ID of the managed device that the task is being executed on.</p>
|
|
662
738
|
*/
|
|
663
739
|
managedDeviceId?: string;
|
|
664
740
|
/**
|
|
741
|
+
* @public
|
|
665
742
|
* <p>The current state of the execution.</p>
|
|
666
743
|
*/
|
|
667
744
|
state?: ExecutionState | string;
|
|
668
745
|
/**
|
|
746
|
+
* @public
|
|
669
747
|
* <p>When the execution began.</p>
|
|
670
748
|
*/
|
|
671
749
|
startedAt?: Date;
|
|
672
750
|
/**
|
|
751
|
+
* @public
|
|
673
752
|
* <p>When the status of the execution was last updated.</p>
|
|
674
753
|
*/
|
|
675
754
|
lastUpdatedAt?: Date;
|
|
@@ -679,6 +758,7 @@ export interface DescribeExecutionOutput {
|
|
|
679
758
|
*/
|
|
680
759
|
export interface DescribeTaskInput {
|
|
681
760
|
/**
|
|
761
|
+
* @public
|
|
682
762
|
* <p>The ID of the task to be described.</p>
|
|
683
763
|
*/
|
|
684
764
|
taskId: string | undefined;
|
|
@@ -701,38 +781,47 @@ export type TaskState = (typeof TaskState)[keyof typeof TaskState];
|
|
|
701
781
|
*/
|
|
702
782
|
export interface DescribeTaskOutput {
|
|
703
783
|
/**
|
|
784
|
+
* @public
|
|
704
785
|
* <p>The ID of the task.</p>
|
|
705
786
|
*/
|
|
706
787
|
taskId?: string;
|
|
707
788
|
/**
|
|
789
|
+
* @public
|
|
708
790
|
* <p>The Amazon Resource Name (ARN) of the task.</p>
|
|
709
791
|
*/
|
|
710
792
|
taskArn?: string;
|
|
711
793
|
/**
|
|
794
|
+
* @public
|
|
712
795
|
* <p>The managed devices that the task was sent to.</p>
|
|
713
796
|
*/
|
|
714
797
|
targets?: string[];
|
|
715
798
|
/**
|
|
799
|
+
* @public
|
|
716
800
|
* <p>The current state of the task.</p>
|
|
717
801
|
*/
|
|
718
802
|
state?: TaskState | string;
|
|
719
803
|
/**
|
|
804
|
+
* @public
|
|
720
805
|
* <p>When the <code>CreateTask</code> operation was called.</p>
|
|
721
806
|
*/
|
|
722
807
|
createdAt?: Date;
|
|
723
808
|
/**
|
|
809
|
+
* @public
|
|
724
810
|
* <p>When the state of the task was last updated.</p>
|
|
725
811
|
*/
|
|
726
812
|
lastUpdatedAt?: Date;
|
|
727
813
|
/**
|
|
814
|
+
* @public
|
|
728
815
|
* <p>When the task was completed.</p>
|
|
729
816
|
*/
|
|
730
817
|
completedAt?: Date;
|
|
731
818
|
/**
|
|
819
|
+
* @public
|
|
732
820
|
* <p>The description provided of the task and managed devices.</p>
|
|
733
821
|
*/
|
|
734
822
|
description?: string;
|
|
735
823
|
/**
|
|
824
|
+
* @public
|
|
736
825
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
737
826
|
* in different ways, such as by purpose, owner, or environment.</p>
|
|
738
827
|
*/
|
|
@@ -744,18 +833,22 @@ export interface DescribeTaskOutput {
|
|
|
744
833
|
*/
|
|
745
834
|
export interface DeviceSummary {
|
|
746
835
|
/**
|
|
836
|
+
* @public
|
|
747
837
|
* <p>The ID of the device.</p>
|
|
748
838
|
*/
|
|
749
839
|
managedDeviceId?: string;
|
|
750
840
|
/**
|
|
841
|
+
* @public
|
|
751
842
|
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
752
843
|
*/
|
|
753
844
|
managedDeviceArn?: string;
|
|
754
845
|
/**
|
|
846
|
+
* @public
|
|
755
847
|
* <p>The ID of the job used to order the device.</p>
|
|
756
848
|
*/
|
|
757
849
|
associatedWithJob?: string;
|
|
758
850
|
/**
|
|
851
|
+
* @public
|
|
759
852
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
760
853
|
* in different ways, such as by purpose, owner, or environment.</p>
|
|
761
854
|
*/
|
|
@@ -766,18 +859,22 @@ export interface DeviceSummary {
|
|
|
766
859
|
*/
|
|
767
860
|
export interface ListExecutionsInput {
|
|
768
861
|
/**
|
|
862
|
+
* @public
|
|
769
863
|
* <p>The ID of the task.</p>
|
|
770
864
|
*/
|
|
771
865
|
taskId: string | undefined;
|
|
772
866
|
/**
|
|
867
|
+
* @public
|
|
773
868
|
* <p>A structure used to filter the tasks by their current state.</p>
|
|
774
869
|
*/
|
|
775
870
|
state?: ExecutionState | string;
|
|
776
871
|
/**
|
|
872
|
+
* @public
|
|
777
873
|
* <p>The maximum number of tasks to list per page.</p>
|
|
778
874
|
*/
|
|
779
875
|
maxResults?: number;
|
|
780
876
|
/**
|
|
877
|
+
* @public
|
|
781
878
|
* <p>A pagination token to continue to the next page of tasks.</p>
|
|
782
879
|
*/
|
|
783
880
|
nextToken?: string;
|
|
@@ -788,18 +885,22 @@ export interface ListExecutionsInput {
|
|
|
788
885
|
*/
|
|
789
886
|
export interface ExecutionSummary {
|
|
790
887
|
/**
|
|
888
|
+
* @public
|
|
791
889
|
* <p>The ID of the task.</p>
|
|
792
890
|
*/
|
|
793
891
|
taskId?: string;
|
|
794
892
|
/**
|
|
893
|
+
* @public
|
|
795
894
|
* <p>The ID of the execution.</p>
|
|
796
895
|
*/
|
|
797
896
|
executionId?: string;
|
|
798
897
|
/**
|
|
898
|
+
* @public
|
|
799
899
|
* <p>The ID of the managed device that the task is being executed on.</p>
|
|
800
900
|
*/
|
|
801
901
|
managedDeviceId?: string;
|
|
802
902
|
/**
|
|
903
|
+
* @public
|
|
803
904
|
* <p>The state of the execution.</p>
|
|
804
905
|
*/
|
|
805
906
|
state?: ExecutionState | string;
|
|
@@ -809,11 +910,13 @@ export interface ExecutionSummary {
|
|
|
809
910
|
*/
|
|
810
911
|
export interface ListExecutionsOutput {
|
|
811
912
|
/**
|
|
913
|
+
* @public
|
|
812
914
|
* <p>A list of executions. Each execution contains the task ID, the device that the task is
|
|
813
915
|
* executing on, the execution ID, and the status of the execution.</p>
|
|
814
916
|
*/
|
|
815
917
|
executions?: ExecutionSummary[];
|
|
816
918
|
/**
|
|
919
|
+
* @public
|
|
817
920
|
* <p>A pagination token to continue to the next page of executions.</p>
|
|
818
921
|
*/
|
|
819
922
|
nextToken?: string;
|
|
@@ -823,18 +926,22 @@ export interface ListExecutionsOutput {
|
|
|
823
926
|
*/
|
|
824
927
|
export interface ListDeviceResourcesInput {
|
|
825
928
|
/**
|
|
929
|
+
* @public
|
|
826
930
|
* <p>The ID of the managed device that you are listing the resources of.</p>
|
|
827
931
|
*/
|
|
828
932
|
managedDeviceId: string | undefined;
|
|
829
933
|
/**
|
|
934
|
+
* @public
|
|
830
935
|
* <p>A structure used to filter the results by type of resource.</p>
|
|
831
936
|
*/
|
|
832
937
|
type?: string;
|
|
833
938
|
/**
|
|
939
|
+
* @public
|
|
834
940
|
* <p>The maximum number of resources per page.</p>
|
|
835
941
|
*/
|
|
836
942
|
maxResults?: number;
|
|
837
943
|
/**
|
|
944
|
+
* @public
|
|
838
945
|
* <p>A pagination token to continue to the next page of results.</p>
|
|
839
946
|
*/
|
|
840
947
|
nextToken?: string;
|
|
@@ -845,14 +952,17 @@ export interface ListDeviceResourcesInput {
|
|
|
845
952
|
*/
|
|
846
953
|
export interface ResourceSummary {
|
|
847
954
|
/**
|
|
955
|
+
* @public
|
|
848
956
|
* <p>The resource type.</p>
|
|
849
957
|
*/
|
|
850
958
|
resourceType: string | undefined;
|
|
851
959
|
/**
|
|
960
|
+
* @public
|
|
852
961
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
853
962
|
*/
|
|
854
963
|
arn?: string;
|
|
855
964
|
/**
|
|
965
|
+
* @public
|
|
856
966
|
* <p>The ID of the resource.</p>
|
|
857
967
|
*/
|
|
858
968
|
id?: string;
|
|
@@ -862,10 +972,12 @@ export interface ResourceSummary {
|
|
|
862
972
|
*/
|
|
863
973
|
export interface ListDeviceResourcesOutput {
|
|
864
974
|
/**
|
|
975
|
+
* @public
|
|
865
976
|
* <p>A structure defining the resource's type, Amazon Resource Name (ARN), and ID.</p>
|
|
866
977
|
*/
|
|
867
978
|
resources?: ResourceSummary[];
|
|
868
979
|
/**
|
|
980
|
+
* @public
|
|
869
981
|
* <p>A pagination token to continue to the next page of results.</p>
|
|
870
982
|
*/
|
|
871
983
|
nextToken?: string;
|
|
@@ -875,14 +987,17 @@ export interface ListDeviceResourcesOutput {
|
|
|
875
987
|
*/
|
|
876
988
|
export interface ListDevicesInput {
|
|
877
989
|
/**
|
|
990
|
+
* @public
|
|
878
991
|
* <p>The ID of the job used to order the device.</p>
|
|
879
992
|
*/
|
|
880
993
|
jobId?: string;
|
|
881
994
|
/**
|
|
995
|
+
* @public
|
|
882
996
|
* <p>The maximum number of devices to list per page.</p>
|
|
883
997
|
*/
|
|
884
998
|
maxResults?: number;
|
|
885
999
|
/**
|
|
1000
|
+
* @public
|
|
886
1001
|
* <p>A pagination token to continue to the next page of results.</p>
|
|
887
1002
|
*/
|
|
888
1003
|
nextToken?: string;
|
|
@@ -892,10 +1007,12 @@ export interface ListDevicesInput {
|
|
|
892
1007
|
*/
|
|
893
1008
|
export interface ListDevicesOutput {
|
|
894
1009
|
/**
|
|
1010
|
+
* @public
|
|
895
1011
|
* <p>A list of device structures that contain information about the device.</p>
|
|
896
1012
|
*/
|
|
897
1013
|
devices?: DeviceSummary[];
|
|
898
1014
|
/**
|
|
1015
|
+
* @public
|
|
899
1016
|
* <p>A pagination token to continue to the next page of devices.</p>
|
|
900
1017
|
*/
|
|
901
1018
|
nextToken?: string;
|
|
@@ -905,6 +1022,7 @@ export interface ListDevicesOutput {
|
|
|
905
1022
|
*/
|
|
906
1023
|
export interface ListTagsForResourceInput {
|
|
907
1024
|
/**
|
|
1025
|
+
* @public
|
|
908
1026
|
* <p>The Amazon Resource Name (ARN) of the device or task.</p>
|
|
909
1027
|
*/
|
|
910
1028
|
resourceArn: string | undefined;
|
|
@@ -914,6 +1032,7 @@ export interface ListTagsForResourceInput {
|
|
|
914
1032
|
*/
|
|
915
1033
|
export interface ListTagsForResourceOutput {
|
|
916
1034
|
/**
|
|
1035
|
+
* @public
|
|
917
1036
|
* <p>The list of tags for the device or task.</p>
|
|
918
1037
|
*/
|
|
919
1038
|
tags?: Record<string, string>;
|
|
@@ -923,14 +1042,17 @@ export interface ListTagsForResourceOutput {
|
|
|
923
1042
|
*/
|
|
924
1043
|
export interface ListTasksInput {
|
|
925
1044
|
/**
|
|
1045
|
+
* @public
|
|
926
1046
|
* <p>A structure used to filter the list of tasks.</p>
|
|
927
1047
|
*/
|
|
928
1048
|
state?: TaskState | string;
|
|
929
1049
|
/**
|
|
1050
|
+
* @public
|
|
930
1051
|
* <p>The maximum number of tasks per page.</p>
|
|
931
1052
|
*/
|
|
932
1053
|
maxResults?: number;
|
|
933
1054
|
/**
|
|
1055
|
+
* @public
|
|
934
1056
|
* <p>A pagination token to continue to the next page of tasks.</p>
|
|
935
1057
|
*/
|
|
936
1058
|
nextToken?: string;
|
|
@@ -941,18 +1063,22 @@ export interface ListTasksInput {
|
|
|
941
1063
|
*/
|
|
942
1064
|
export interface TaskSummary {
|
|
943
1065
|
/**
|
|
1066
|
+
* @public
|
|
944
1067
|
* <p>The task ID.</p>
|
|
945
1068
|
*/
|
|
946
1069
|
taskId: string | undefined;
|
|
947
1070
|
/**
|
|
1071
|
+
* @public
|
|
948
1072
|
* <p>The Amazon Resource Name (ARN) of the task.</p>
|
|
949
1073
|
*/
|
|
950
1074
|
taskArn?: string;
|
|
951
1075
|
/**
|
|
1076
|
+
* @public
|
|
952
1077
|
* <p>The state of the task assigned to one or many devices.</p>
|
|
953
1078
|
*/
|
|
954
1079
|
state?: TaskState | string;
|
|
955
1080
|
/**
|
|
1081
|
+
* @public
|
|
956
1082
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
957
1083
|
* in different ways, such as by purpose, owner, or environment.</p>
|
|
958
1084
|
*/
|
|
@@ -963,10 +1089,12 @@ export interface TaskSummary {
|
|
|
963
1089
|
*/
|
|
964
1090
|
export interface ListTasksOutput {
|
|
965
1091
|
/**
|
|
1092
|
+
* @public
|
|
966
1093
|
* <p>A list of task structures containing details about each task.</p>
|
|
967
1094
|
*/
|
|
968
1095
|
tasks?: TaskSummary[];
|
|
969
1096
|
/**
|
|
1097
|
+
* @public
|
|
970
1098
|
* <p>A pagination token to continue to the next page of tasks.</p>
|
|
971
1099
|
*/
|
|
972
1100
|
nextToken?: string;
|
|
@@ -976,10 +1104,12 @@ export interface ListTasksOutput {
|
|
|
976
1104
|
*/
|
|
977
1105
|
export interface TagResourceInput {
|
|
978
1106
|
/**
|
|
1107
|
+
* @public
|
|
979
1108
|
* <p>The Amazon Resource Name (ARN) of the device or task.</p>
|
|
980
1109
|
*/
|
|
981
1110
|
resourceArn: string | undefined;
|
|
982
1111
|
/**
|
|
1112
|
+
* @public
|
|
983
1113
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
984
1114
|
* in different ways, such as by purpose, owner, or environment.</p>
|
|
985
1115
|
*/
|
|
@@ -990,10 +1120,12 @@ export interface TagResourceInput {
|
|
|
990
1120
|
*/
|
|
991
1121
|
export interface UntagResourceInput {
|
|
992
1122
|
/**
|
|
1123
|
+
* @public
|
|
993
1124
|
* <p>The Amazon Resource Name (ARN) of the device or task.</p>
|
|
994
1125
|
*/
|
|
995
1126
|
resourceArn: string | undefined;
|
|
996
1127
|
/**
|
|
1128
|
+
* @public
|
|
997
1129
|
* <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
|
|
998
1130
|
* in different ways, such as by purpose, owner, or environment.</p>
|
|
999
1131
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snow-device-management",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snow Device Management Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.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,15 +21,15 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|