@aws-sdk/client-snow-device-management 3.295.0 → 3.297.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 +14 -0
- package/dist-types/SnowDeviceManagementClient.d.ts +24 -4
- package/dist-types/commands/CancelTaskCommand.d.ts +16 -0
- package/dist-types/commands/CreateTaskCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDeviceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDeviceEc2InstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskCommand.d.ts +16 -0
- package/dist-types/commands/ListDeviceResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListDevicesCommand.d.ts +16 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTasksCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SnowDeviceManagementServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +119 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDeviceResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDevicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -14,10 +14,12 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
14
14
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
15
15
|
import { SnowDeviceManagementClient } from "./SnowDeviceManagementClient";
|
|
16
16
|
/**
|
|
17
|
+
* @public
|
|
17
18
|
* <p>Amazon Web Services Snow Device Management documentation.</p>
|
|
18
19
|
*/
|
|
19
20
|
export declare class SnowDeviceManagement extends SnowDeviceManagementClient {
|
|
20
21
|
/**
|
|
22
|
+
* @public
|
|
21
23
|
* <p>Sends a cancel request for a specified task. You can cancel a task only if it's still in a
|
|
22
24
|
* <code>QUEUED</code> state. Tasks that are already running can't be cancelled.</p>
|
|
23
25
|
* <note>
|
|
@@ -29,12 +31,14 @@ export declare class SnowDeviceManagement extends SnowDeviceManagementClient {
|
|
|
29
31
|
cancelTask(args: CancelTaskCommandInput, cb: (err: any, data?: CancelTaskCommandOutput) => void): void;
|
|
30
32
|
cancelTask(args: CancelTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelTaskCommandOutput) => void): void;
|
|
31
33
|
/**
|
|
34
|
+
* @public
|
|
32
35
|
* <p>Instructs one or more devices to start a task, such as unlocking or rebooting.</p>
|
|
33
36
|
*/
|
|
34
37
|
createTask(args: CreateTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateTaskCommandOutput>;
|
|
35
38
|
createTask(args: CreateTaskCommandInput, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
36
39
|
createTask(args: CreateTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
37
40
|
/**
|
|
41
|
+
* @public
|
|
38
42
|
* <p>Checks device-specific information, such as the device type, software version, IP
|
|
39
43
|
* addresses, and lock status.</p>
|
|
40
44
|
*/
|
|
@@ -42,6 +46,7 @@ export declare class SnowDeviceManagement extends SnowDeviceManagementClient {
|
|
|
42
46
|
describeDevice(args: DescribeDeviceCommandInput, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
|
|
43
47
|
describeDevice(args: DescribeDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
|
|
44
48
|
/**
|
|
49
|
+
* @public
|
|
45
50
|
* <p>Checks the current state of the Amazon EC2 instances. The output is similar to
|
|
46
51
|
* <code>describeDevice</code>, but the results are sourced from the device cache in the
|
|
47
52
|
* Amazon Web Services Cloud and include a subset of the available fields. </p>
|
|
@@ -50,24 +55,28 @@ export declare class SnowDeviceManagement extends SnowDeviceManagementClient {
|
|
|
50
55
|
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void): void;
|
|
51
56
|
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void): void;
|
|
52
57
|
/**
|
|
58
|
+
* @public
|
|
53
59
|
* <p>Checks the status of a remote task running on one or more target devices.</p>
|
|
54
60
|
*/
|
|
55
61
|
describeExecution(args: DescribeExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExecutionCommandOutput>;
|
|
56
62
|
describeExecution(args: DescribeExecutionCommandInput, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
|
|
57
63
|
describeExecution(args: DescribeExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
|
|
58
64
|
/**
|
|
65
|
+
* @public
|
|
59
66
|
* <p>Checks the metadata for a given task on a device. </p>
|
|
60
67
|
*/
|
|
61
68
|
describeTask(args: DescribeTaskCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTaskCommandOutput>;
|
|
62
69
|
describeTask(args: DescribeTaskCommandInput, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
63
70
|
describeTask(args: DescribeTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
64
71
|
/**
|
|
72
|
+
* @public
|
|
65
73
|
* <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>
|
|
66
74
|
*/
|
|
67
75
|
listDeviceResources(args: ListDeviceResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceResourcesCommandOutput>;
|
|
68
76
|
listDeviceResources(args: ListDeviceResourcesCommandInput, cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void): void;
|
|
69
77
|
listDeviceResources(args: ListDeviceResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void): void;
|
|
70
78
|
/**
|
|
79
|
+
* @public
|
|
71
80
|
* <p>Returns a list of all devices on your Amazon Web Services account that have Amazon Web Services Snow Device Management
|
|
72
81
|
* enabled in the Amazon Web Services Region where the command is run.</p>
|
|
73
82
|
*/
|
|
@@ -75,30 +84,35 @@ export declare class SnowDeviceManagement extends SnowDeviceManagementClient {
|
|
|
75
84
|
listDevices(args: ListDevicesCommandInput, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
76
85
|
listDevices(args: ListDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
77
86
|
/**
|
|
87
|
+
* @public
|
|
78
88
|
* <p>Returns the status of tasks for one or more target devices.</p>
|
|
79
89
|
*/
|
|
80
90
|
listExecutions(args: ListExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExecutionsCommandOutput>;
|
|
81
91
|
listExecutions(args: ListExecutionsCommandInput, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
|
|
82
92
|
listExecutions(args: ListExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
|
|
83
93
|
/**
|
|
94
|
+
* @public
|
|
84
95
|
* <p>Returns a list of tags for a managed device or task.</p>
|
|
85
96
|
*/
|
|
86
97
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
87
98
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
88
99
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
89
100
|
/**
|
|
101
|
+
* @public
|
|
90
102
|
* <p>Returns a list of tasks that can be filtered by state.</p>
|
|
91
103
|
*/
|
|
92
104
|
listTasks(args: ListTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListTasksCommandOutput>;
|
|
93
105
|
listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
94
106
|
listTasks(args: ListTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
95
107
|
/**
|
|
108
|
+
* @public
|
|
96
109
|
* <p>Adds or replaces tags on a device or task.</p>
|
|
97
110
|
*/
|
|
98
111
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
99
112
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
100
113
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
101
114
|
/**
|
|
115
|
+
* @public
|
|
102
116
|
* <p>Removes a tag from a device or task.</p>
|
|
103
117
|
*/
|
|
104
118
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
@@ -21,15 +21,24 @@ import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTa
|
|
|
21
21
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
22
22
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
23
23
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
24
27
|
export type ServiceInputTypes = CancelTaskCommandInput | CreateTaskCommandInput | DescribeDeviceCommandInput | DescribeDeviceEc2InstancesCommandInput | DescribeExecutionCommandInput | DescribeTaskCommandInput | ListDeviceResourcesCommandInput | ListDevicesCommandInput | ListExecutionsCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
25
31
|
export type ServiceOutputTypes = CancelTaskCommandOutput | CreateTaskCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceEc2InstancesCommandOutput | DescribeExecutionCommandOutput | DescribeTaskCommandOutput | ListDeviceResourcesCommandOutput | ListDevicesCommandOutput | ListExecutionsCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
26
35
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
27
36
|
/**
|
|
28
37
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
29
38
|
*/
|
|
30
39
|
requestHandler?: __HttpHandler;
|
|
31
40
|
/**
|
|
32
|
-
* A constructor for a class implementing the {@link
|
|
41
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
33
42
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
34
43
|
* @internal
|
|
35
44
|
*/
|
|
@@ -119,23 +128,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
119
128
|
*/
|
|
120
129
|
logger?: __Logger;
|
|
121
130
|
/**
|
|
122
|
-
* The {@link
|
|
131
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
123
132
|
*/
|
|
124
133
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
125
134
|
}
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
126
138
|
type SnowDeviceManagementClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
127
139
|
/**
|
|
128
|
-
*
|
|
140
|
+
* @public
|
|
141
|
+
*
|
|
142
|
+
* The configuration interface of SnowDeviceManagementClient class constructor that set the region, credentials and other options.
|
|
129
143
|
*/
|
|
130
144
|
export interface SnowDeviceManagementClientConfig extends SnowDeviceManagementClientConfigType {
|
|
131
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
132
149
|
type SnowDeviceManagementClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
133
150
|
/**
|
|
134
|
-
*
|
|
151
|
+
* @public
|
|
152
|
+
*
|
|
153
|
+
* The resolved configuration interface of SnowDeviceManagementClient class. This is resolved and normalized from the {@link SnowDeviceManagementClientConfig | constructor configuration interface}.
|
|
135
154
|
*/
|
|
136
155
|
export interface SnowDeviceManagementClientResolvedConfig extends SnowDeviceManagementClientResolvedConfigType {
|
|
137
156
|
}
|
|
138
157
|
/**
|
|
158
|
+
* @public
|
|
139
159
|
* <p>Amazon Web Services Snow Device Management documentation.</p>
|
|
140
160
|
*/
|
|
141
161
|
export declare class SnowDeviceManagementClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CancelTaskInput, CancelTaskOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelTaskCommandInput extends CancelTaskInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends a cancel request for a specified task. You can cancel a task only if it's still in a
|
|
18
23
|
* <code>QUEUED</code> state. Tasks that are already running can't be cancelled.</p>
|
|
19
24
|
* <note>
|
|
@@ -30,6 +35,8 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param CancelTaskCommandInput - {@link CancelTaskCommandInput}
|
|
39
|
+
* @returns {@link CancelTaskCommandOutput}
|
|
33
40
|
* @see {@link CancelTaskCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link CancelTaskCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
54
61
|
export declare class CancelTaskCommand extends $Command<CancelTaskCommandInput, CancelTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
55
62
|
readonly input: CancelTaskCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CancelTaskCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelTaskCommandInput, CancelTaskCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateTaskInput, CreateTaskOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTaskCommandInput extends CreateTaskInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Instructs one or more devices to start a task, such as unlocking or rebooting.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateTaskCommandInput - {@link CreateTaskCommandInput}
|
|
34
|
+
* @returns {@link CreateTaskCommandOutput}
|
|
28
35
|
* @see {@link CreateTaskCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateTaskCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
52
59
|
export declare class CreateTaskCommand extends $Command<CreateTaskCommandInput, CreateTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateTaskCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateTaskCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTaskCommandInput, CreateTaskCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeDeviceInput, DescribeDeviceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDeviceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDeviceCommandInput extends DescribeDeviceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDeviceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Checks device-specific information, such as the device type, software version, IP
|
|
18
23
|
* addresses, and lock status.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeDeviceCommandInput - {@link DescribeDeviceCommandInput}
|
|
35
|
+
* @returns {@link DescribeDeviceCommandOutput}
|
|
29
36
|
* @see {@link DescribeDeviceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeDeviceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
50
57
|
export declare class DescribeDeviceCommand extends $Command<DescribeDeviceCommandInput, DescribeDeviceCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
51
58
|
readonly input: DescribeDeviceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DescribeDeviceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDeviceCommandInput, DescribeDeviceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeDeviceEc2Input, DescribeDeviceEc2Output } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDeviceEc2InstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDeviceEc2InstancesCommandInput extends DescribeDeviceEc2Input {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDeviceEc2InstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceEc2Output, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Checks the current state of the Amazon EC2 instances. The output is similar to
|
|
18
23
|
* <code>describeDevice</code>, but the results are sourced from the device cache in the
|
|
19
24
|
* Amazon Web Services Cloud and include a subset of the available fields. </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeDeviceEc2InstancesCommandInput - {@link DescribeDeviceEc2InstancesCommandInput}
|
|
36
|
+
* @returns {@link DescribeDeviceEc2InstancesCommandOutput}
|
|
30
37
|
* @see {@link DescribeDeviceEc2InstancesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeDeviceEc2InstancesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
51
58
|
export declare class DescribeDeviceEc2InstancesCommand extends $Command<DescribeDeviceEc2InstancesCommandInput, DescribeDeviceEc2InstancesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeDeviceEc2InstancesCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeDeviceEc2InstancesCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDeviceEc2InstancesCommandInput, DescribeDeviceEc2InstancesCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeExecutionCommandInput extends DescribeExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Checks the status of a remote task running on one or more target devices.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeExecutionCommandInput - {@link DescribeExecutionCommandInput}
|
|
34
|
+
* @returns {@link DescribeExecutionCommandOutput}
|
|
28
35
|
* @see {@link DescribeExecutionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeExecutionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
49
56
|
export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeExecutionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeExecutionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeExecutionCommandInput, DescribeExecutionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeTaskInput, DescribeTaskOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTaskCommandInput extends DescribeTaskInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Checks the metadata for a given task on a device. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeTaskCommandInput - {@link DescribeTaskCommandInput}
|
|
34
|
+
* @returns {@link DescribeTaskCommandOutput}
|
|
28
35
|
* @see {@link DescribeTaskCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeTaskCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
49
56
|
export declare class DescribeTaskCommand extends $Command<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeTaskCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeTaskCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTaskCommandInput, DescribeTaskCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListDeviceResourcesInput, ListDeviceResourcesOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDeviceResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDeviceResourcesCommandInput extends ListDeviceResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDeviceResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <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>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDeviceResourcesCommandInput - {@link ListDeviceResourcesCommandInput}
|
|
34
|
+
* @returns {@link ListDeviceResourcesCommandOutput}
|
|
28
35
|
* @see {@link ListDeviceResourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDeviceResourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
49
56
|
export declare class ListDeviceResourcesCommand extends $Command<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
50
57
|
readonly input: ListDeviceResourcesCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListDeviceResourcesCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListDevicesInput, ListDevicesOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDevicesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDevicesCommandInput extends ListDevicesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDevicesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of all devices on your Amazon Web Services account that have Amazon Web Services Snow Device Management
|
|
18
23
|
* enabled in the Amazon Web Services Region where the command is run.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDevicesCommandInput - {@link ListDevicesCommandInput}
|
|
35
|
+
* @returns {@link ListDevicesCommandOutput}
|
|
29
36
|
* @see {@link ListDevicesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDevicesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
47
54
|
export declare class ListDevicesCommand extends $Command<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
48
55
|
readonly input: ListDevicesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListDevicesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDevicesCommandInput, ListDevicesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListExecutionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListExecutionsCommandInput extends ListExecutionsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListExecutionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the status of tasks for one or more target devices.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListExecutionsCommandInput - {@link ListExecutionsCommandInput}
|
|
34
|
+
* @returns {@link ListExecutionsCommandOutput}
|
|
28
35
|
* @see {@link ListExecutionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListExecutionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowDeviceManagementClientResolvedConfig | config} for SnowDeviceManagementClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
49
56
|
export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig> {
|
|
50
57
|
readonly input: ListExecutionsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListExecutionsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowDeviceManagementClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|