@aws-sdk/client-snow-device-management 3.529.1 → 3.535.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/SnowDeviceManagement.d.ts +3 -1
- package/dist-types/SnowDeviceManagementClient.d.ts +1 -1
- package/dist-types/commands/CancelTaskCommand.d.ts +2 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDeviceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDeviceEc2InstancesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeExecutionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +2 -1
- package/dist-types/commands/ListDeviceResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListDevicesCommand.d.ts +2 -1
- package/dist-types/commands/ListExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTasksCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +152 -152
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/SnowDeviceManagement.d.ts +2 -0
- package/dist-types/ts3.4/commands/CancelTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDeviceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDeviceEc2InstancesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDeviceResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -59,6 +59,7 @@ export interface SnowDeviceManagement {
|
|
|
59
59
|
/**
|
|
60
60
|
* @see {@link ListDevicesCommand}
|
|
61
61
|
*/
|
|
62
|
+
listDevices(): Promise<ListDevicesCommandOutput>;
|
|
62
63
|
listDevices(args: ListDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicesCommandOutput>;
|
|
63
64
|
listDevices(args: ListDevicesCommandInput, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
64
65
|
listDevices(args: ListDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
@@ -77,6 +78,7 @@ export interface SnowDeviceManagement {
|
|
|
77
78
|
/**
|
|
78
79
|
* @see {@link ListTasksCommand}
|
|
79
80
|
*/
|
|
81
|
+
listTasks(): Promise<ListTasksCommandOutput>;
|
|
80
82
|
listTasks(args: ListTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListTasksCommandOutput>;
|
|
81
83
|
listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
82
84
|
listTasks(args: ListTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
@@ -94,8 +96,8 @@ export interface SnowDeviceManagement {
|
|
|
94
96
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
95
97
|
}
|
|
96
98
|
/**
|
|
97
|
-
* @public
|
|
98
99
|
* <p>Amazon Web Services Snow Device Management documentation.</p>
|
|
100
|
+
* @public
|
|
99
101
|
*/
|
|
100
102
|
export declare class SnowDeviceManagement extends SnowDeviceManagementClient implements SnowDeviceManagement {
|
|
101
103
|
}
|
|
@@ -164,8 +164,8 @@ export type SnowDeviceManagementClientResolvedConfigType = __SmithyResolvedConfi
|
|
|
164
164
|
export interface SnowDeviceManagementClientResolvedConfig extends SnowDeviceManagementClientResolvedConfigType {
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <p>Amazon Web Services Snow Device Management documentation.</p>
|
|
168
|
+
* @public
|
|
169
169
|
*/
|
|
170
170
|
export declare class SnowDeviceManagementClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig> {
|
|
171
171
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelTaskCommand_base: {
|
|
24
24
|
new (input: CancelTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CancelTaskCommandInput, CancelTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CancelTaskCommandInput, CancelTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Sends a cancel request for a specified task. You can cancel a task only if it's still in a
|
|
30
30
|
* <code>QUEUED</code> state. Tasks that are already running can't be cancelled.</p>
|
|
31
31
|
* <note>
|
|
@@ -73,6 +73,7 @@ declare const CancelTaskCommand_base: {
|
|
|
73
73
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class CancelTaskCommand extends CancelTaskCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateTaskCommand_base: {
|
|
24
24
|
new (input: CreateTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTaskCommandInput, CreateTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTaskCommandInput, CreateTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Instructs one or more devices to start a task, such as unlocking or rebooting.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const CreateTaskCommand_base: {
|
|
|
83
83
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class CreateTaskCommand extends CreateTaskCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeDeviceCommand_base: {
|
|
24
24
|
new (input: DescribeDeviceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeviceCommandInput, DescribeDeviceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeDeviceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeviceCommandInput, DescribeDeviceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Checks device-specific information, such as the device type, software version, IP
|
|
30
30
|
* addresses, and lock status.</p>
|
|
31
31
|
* @example
|
|
@@ -103,6 +103,7 @@ declare const DescribeDeviceCommand_base: {
|
|
|
103
103
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
105
105
|
*
|
|
106
|
+
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class DescribeDeviceCommand extends DescribeDeviceCommand_base {
|
|
108
109
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeDeviceEc2InstancesCommand_base: {
|
|
24
24
|
new (input: DescribeDeviceEc2InstancesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeviceEc2InstancesCommandInput, DescribeDeviceEc2InstancesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeDeviceEc2InstancesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeviceEc2InstancesCommandInput, DescribeDeviceEc2InstancesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Checks the current state of the Amazon EC2 instances. The output is similar to
|
|
30
30
|
* <code>describeDevice</code>, but the results are sourced from the device cache in the
|
|
31
31
|
* Amazon Web Services Cloud and include a subset of the available fields. </p>
|
|
@@ -113,6 +113,7 @@ declare const DescribeDeviceEc2InstancesCommand_base: {
|
|
|
113
113
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
115
115
|
*
|
|
116
|
+
* @public
|
|
116
117
|
*/
|
|
117
118
|
export declare class DescribeDeviceEc2InstancesCommand extends DescribeDeviceEc2InstancesCommand_base {
|
|
118
119
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeExecutionCommand_base: {
|
|
24
24
|
new (input: DescribeExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Checks the status of a remote task running on one or more target devices.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const DescribeExecutionCommand_base: {
|
|
|
74
74
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DescribeExecutionCommand extends DescribeExecutionCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeTaskCommand_base: {
|
|
24
24
|
new (input: DescribeTaskCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeTaskCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Checks the metadata for a given task on a device. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const DescribeTaskCommand_base: {
|
|
|
80
80
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DescribeTaskCommand extends DescribeTaskCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDeviceResourcesCommand_base: {
|
|
24
24
|
new (input: ListDeviceResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListDeviceResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the Amazon Web Services resources available for a device. Currently, Amazon EC2 instances are the only supported resource type.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -78,6 +78,7 @@ declare const ListDeviceResourcesCommand_base: {
|
|
|
78
78
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListDeviceResourcesCommand extends ListDeviceResourcesCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDevicesCommand_base: {
|
|
24
24
|
new (input: ListDevicesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDevicesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all devices on your Amazon Web Services account that have Amazon Web Services Snow Device Management
|
|
30
30
|
* enabled in the Amazon Web Services Region where the command is run.</p>
|
|
31
31
|
* @example
|
|
@@ -78,6 +78,7 @@ declare const ListDevicesCommand_base: {
|
|
|
78
78
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListDevicesCommand extends ListDevicesCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListExecutionsCommand_base: {
|
|
24
24
|
new (input: ListExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the status of tasks for one or more target devices.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListExecutionsCommand_base: {
|
|
|
79
79
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListExecutionsCommand extends ListExecutionsCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of tags for a managed device or task.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTasksCommand_base: {
|
|
24
24
|
new (input: ListTasksCommandInput): import("@smithy/smithy-client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListTasksCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of tasks that can be filtered by state.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const ListTasksCommand_base: {
|
|
|
77
77
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListTasksCommand extends ListTasksCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds or replaces tags on a device or task.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a tag from a device or task.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link SnowDeviceManagementServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from SnowDeviceManagement service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|