@aws-sdk/client-snow-device-management 3.321.1 → 3.326.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/CancelTaskCommand.d.ts +6 -0
- package/dist-types/commands/CreateTaskCommand.d.ts +7 -0
- package/dist-types/commands/DescribeDeviceCommand.d.ts +40 -0
- package/dist-types/commands/DescribeDeviceEc2InstancesCommand.d.ts +46 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +11 -0
- package/dist-types/commands/DescribeTaskCommand.d.ts +18 -0
- package/dist-types/commands/ListDeviceResourcesCommand.d.ts +13 -0
- package/dist-types/commands/ListDevicesCommand.d.ts +16 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListTasksCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -36,6 +36,10 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CancelTaskCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CancelTaskOutput
|
|
40
|
+
* // taskId: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param CancelTaskCommandInput - {@link CancelTaskCommandInput}
|
|
@@ -59,6 +63,8 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
59
63
|
* @throws {@link ValidationException} (client fault)
|
|
60
64
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
61
65
|
*
|
|
66
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
62
68
|
*
|
|
63
69
|
*/
|
|
64
70
|
export declare class CancelTaskCommand extends $Command<CancelTaskCommandInput, CancelTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -42,6 +42,11 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateTaskCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateTaskOutput
|
|
46
|
+
* // taskId: "STRING_VALUE",
|
|
47
|
+
* // taskArn: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
47
52
|
* @param CreateTaskCommandInput - {@link CreateTaskCommandInput}
|
|
@@ -68,6 +73,8 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
68
73
|
* @throws {@link ValidationException} (client fault)
|
|
69
74
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
70
75
|
*
|
|
76
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
71
78
|
*
|
|
72
79
|
*/
|
|
73
80
|
export declare class CreateTaskCommand extends $Command<CreateTaskCommandInput, CreateTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -32,6 +32,44 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeDeviceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeDeviceOutput
|
|
36
|
+
* // lastReachedOutAt: new Date("TIMESTAMP"),
|
|
37
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
38
|
+
* // tags: { // TagMap
|
|
39
|
+
* // "<keys>": "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // managedDeviceId: "STRING_VALUE",
|
|
42
|
+
* // managedDeviceArn: "STRING_VALUE",
|
|
43
|
+
* // deviceType: "STRING_VALUE",
|
|
44
|
+
* // associatedWithJob: "STRING_VALUE",
|
|
45
|
+
* // deviceState: "STRING_VALUE",
|
|
46
|
+
* // physicalNetworkInterfaces: [ // PhysicalNetworkInterfaceList
|
|
47
|
+
* // { // PhysicalNetworkInterface
|
|
48
|
+
* // physicalNetworkInterfaceId: "STRING_VALUE",
|
|
49
|
+
* // physicalConnectorType: "STRING_VALUE",
|
|
50
|
+
* // ipAddressAssignment: "STRING_VALUE",
|
|
51
|
+
* // ipAddress: "STRING_VALUE",
|
|
52
|
+
* // netmask: "STRING_VALUE",
|
|
53
|
+
* // defaultGateway: "STRING_VALUE",
|
|
54
|
+
* // macAddress: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // deviceCapacities: [ // CapacityList
|
|
58
|
+
* // { // Capacity
|
|
59
|
+
* // name: "STRING_VALUE",
|
|
60
|
+
* // unit: "STRING_VALUE",
|
|
61
|
+
* // total: Number("long"),
|
|
62
|
+
* // used: Number("long"),
|
|
63
|
+
* // available: Number("long"),
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // software: { // SoftwareInformation
|
|
67
|
+
* // installedVersion: "STRING_VALUE",
|
|
68
|
+
* // installingVersion: "STRING_VALUE",
|
|
69
|
+
* // installState: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
35
73
|
* ```
|
|
36
74
|
*
|
|
37
75
|
* @param DescribeDeviceCommandInput - {@link DescribeDeviceCommandInput}
|
|
@@ -55,6 +93,8 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
55
93
|
* @throws {@link ValidationException} (client fault)
|
|
56
94
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
57
95
|
*
|
|
96
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
58
98
|
*
|
|
59
99
|
*/
|
|
60
100
|
export declare class DescribeDeviceCommand extends $Command<DescribeDeviceCommandInput, DescribeDeviceCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -36,6 +36,50 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeDeviceEc2InstancesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DescribeDeviceEc2Output
|
|
40
|
+
* // instances: [ // InstanceSummaryList
|
|
41
|
+
* // { // InstanceSummary
|
|
42
|
+
* // instance: { // Instance
|
|
43
|
+
* // imageId: "STRING_VALUE",
|
|
44
|
+
* // amiLaunchIndex: Number("int"),
|
|
45
|
+
* // instanceId: "STRING_VALUE",
|
|
46
|
+
* // state: { // InstanceState
|
|
47
|
+
* // code: Number("int"),
|
|
48
|
+
* // name: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // instanceType: "STRING_VALUE",
|
|
51
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
52
|
+
* // publicIpAddress: "STRING_VALUE",
|
|
53
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // blockDeviceMappings: [ // InstanceBlockDeviceMappingList
|
|
56
|
+
* // { // InstanceBlockDeviceMapping
|
|
57
|
+
* // deviceName: "STRING_VALUE",
|
|
58
|
+
* // ebs: { // EbsInstanceBlockDevice
|
|
59
|
+
* // attachTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // deleteOnTermination: true || false,
|
|
61
|
+
* // status: "STRING_VALUE",
|
|
62
|
+
* // volumeId: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // securityGroups: [ // SecurityGroupIdentifierList
|
|
67
|
+
* // { // SecurityGroupIdentifier
|
|
68
|
+
* // groupId: "STRING_VALUE",
|
|
69
|
+
* // groupName: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // cpuOptions: { // CpuOptions
|
|
73
|
+
* // coreCount: Number("int"),
|
|
74
|
+
* // threadsPerCore: Number("int"),
|
|
75
|
+
* // },
|
|
76
|
+
* // rootDeviceName: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
39
83
|
* ```
|
|
40
84
|
*
|
|
41
85
|
* @param DescribeDeviceEc2InstancesCommandInput - {@link DescribeDeviceEc2InstancesCommandInput}
|
|
@@ -59,6 +103,8 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
59
103
|
* @throws {@link ValidationException} (client fault)
|
|
60
104
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
61
105
|
*
|
|
106
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
62
108
|
*
|
|
63
109
|
*/
|
|
64
110
|
export declare class DescribeDeviceEc2InstancesCommand extends $Command<DescribeDeviceEc2InstancesCommandInput, DescribeDeviceEc2InstancesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeExecutionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeExecutionOutput
|
|
36
|
+
* // taskId: "STRING_VALUE",
|
|
37
|
+
* // executionId: "STRING_VALUE",
|
|
38
|
+
* // managedDeviceId: "STRING_VALUE",
|
|
39
|
+
* // state: "STRING_VALUE",
|
|
40
|
+
* // startedAt: new Date("TIMESTAMP"),
|
|
41
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param DescribeExecutionCommandInput - {@link DescribeExecutionCommandInput}
|
|
@@ -55,6 +64,8 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
55
64
|
* @throws {@link ValidationException} (client fault)
|
|
56
65
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
57
66
|
*
|
|
67
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
58
69
|
*
|
|
59
70
|
*/
|
|
60
71
|
export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeTaskCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeTaskOutput
|
|
35
|
+
* // taskId: "STRING_VALUE",
|
|
36
|
+
* // taskArn: "STRING_VALUE",
|
|
37
|
+
* // targets: [ // TargetList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // state: "STRING_VALUE",
|
|
41
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
42
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // completedAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // description: "STRING_VALUE",
|
|
45
|
+
* // tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param DescribeTaskCommandInput - {@link DescribeTaskCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
54
70
|
* @throws {@link ValidationException} (client fault)
|
|
55
71
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class DescribeTaskCommand extends $Command<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -34,6 +34,17 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListDeviceResourcesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListDeviceResourcesOutput
|
|
38
|
+
* // resources: [ // ResourceSummaryList
|
|
39
|
+
* // { // ResourceSummary
|
|
40
|
+
* // resourceType: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE",
|
|
42
|
+
* // id: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
37
48
|
* ```
|
|
38
49
|
*
|
|
39
50
|
* @param ListDeviceResourcesCommandInput - {@link ListDeviceResourcesCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
57
68
|
* @throws {@link ValidationException} (client fault)
|
|
58
69
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class ListDeviceResourcesCommand extends $Command<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -34,6 +34,20 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListDevicesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListDevicesOutput
|
|
38
|
+
* // devices: [ // DeviceSummaryList
|
|
39
|
+
* // { // DeviceSummary
|
|
40
|
+
* // managedDeviceId: "STRING_VALUE",
|
|
41
|
+
* // managedDeviceArn: "STRING_VALUE",
|
|
42
|
+
* // associatedWithJob: "STRING_VALUE",
|
|
43
|
+
* // tags: { // TagMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
37
51
|
* ```
|
|
38
52
|
*
|
|
39
53
|
* @param ListDevicesCommandInput - {@link ListDevicesCommandInput}
|
|
@@ -54,6 +68,8 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
54
68
|
* @throws {@link ValidationException} (client fault)
|
|
55
69
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
56
70
|
*
|
|
71
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
57
73
|
*
|
|
58
74
|
*/
|
|
59
75
|
export declare class ListDevicesCommand extends $Command<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -34,6 +34,18 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListExecutionsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListExecutionsOutput
|
|
38
|
+
* // executions: [ // ExecutionSummaryList
|
|
39
|
+
* // { // ExecutionSummary
|
|
40
|
+
* // taskId: "STRING_VALUE",
|
|
41
|
+
* // executionId: "STRING_VALUE",
|
|
42
|
+
* // managedDeviceId: "STRING_VALUE",
|
|
43
|
+
* // state: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // nextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* @param ListExecutionsCommandInput - {@link ListExecutionsCommandInput}
|
|
@@ -57,6 +69,8 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
57
69
|
* @throws {@link ValidationException} (client fault)
|
|
58
70
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
59
71
|
*
|
|
72
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
60
74
|
*
|
|
61
75
|
*/
|
|
62
76
|
export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceOutput
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTasksCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTasksOutput
|
|
37
|
+
* // tasks: [ // TaskSummaryList
|
|
38
|
+
* // { // TaskSummary
|
|
39
|
+
* // taskId: "STRING_VALUE", // required
|
|
40
|
+
* // taskArn: "STRING_VALUE",
|
|
41
|
+
* // state: "STRING_VALUE",
|
|
42
|
+
* // tags: { // TagMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListTasksCommandInput - {@link ListTasksCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBeare
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListTasksCommand extends $Command<ListTasksCommandInput, ListTasksCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link SnowDeviceManagementServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|