@aws-sdk/client-snow-device-management 3.1087.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/SnowDeviceManagement.d.ts +48 -63
- package/dist-types/ts3.4/SnowDeviceManagementClient.d.ts +10 -35
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelTaskCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeDeviceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeDeviceEc2InstancesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListDeviceResourcesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +1 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -3,14 +3,8 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
CancelTaskCommandOutput,
|
|
9
|
-
} from "./commands/CancelTaskCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateTaskCommandInput,
|
|
12
|
-
CreateTaskCommandOutput,
|
|
13
|
-
} from "./commands/CreateTaskCommand";
|
|
6
|
+
import { CancelTaskCommandInput, CancelTaskCommandOutput } from "./commands/CancelTaskCommand";
|
|
7
|
+
import { CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
14
8
|
import {
|
|
15
9
|
DescribeDeviceCommandInput,
|
|
16
10
|
DescribeDeviceCommandOutput,
|
|
@@ -31,10 +25,7 @@ import {
|
|
|
31
25
|
ListDeviceResourcesCommandInput,
|
|
32
26
|
ListDeviceResourcesCommandOutput,
|
|
33
27
|
} from "./commands/ListDeviceResourcesCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListDevicesCommandInput,
|
|
36
|
-
ListDevicesCommandOutput,
|
|
37
|
-
} from "./commands/ListDevicesCommand";
|
|
28
|
+
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
38
29
|
import {
|
|
39
30
|
ListExecutionsCommandInput,
|
|
40
31
|
ListExecutionsCommandOutput,
|
|
@@ -43,14 +34,8 @@ import {
|
|
|
43
34
|
ListTagsForResourceCommandInput,
|
|
44
35
|
ListTagsForResourceCommandOutput,
|
|
45
36
|
} from "./commands/ListTagsForResourceCommand";
|
|
46
|
-
import {
|
|
47
|
-
|
|
48
|
-
ListTasksCommandOutput,
|
|
49
|
-
} from "./commands/ListTasksCommand";
|
|
50
|
-
import {
|
|
51
|
-
TagResourceCommandInput,
|
|
52
|
-
TagResourceCommandOutput,
|
|
53
|
-
} from "./commands/TagResourceCommand";
|
|
37
|
+
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
38
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
54
39
|
import {
|
|
55
40
|
UntagResourceCommandInput,
|
|
56
41
|
UntagResourceCommandOutput,
|
|
@@ -59,202 +44,202 @@ import { SnowDeviceManagementClient } from "./SnowDeviceManagementClient";
|
|
|
59
44
|
export interface SnowDeviceManagement {
|
|
60
45
|
cancelTask(
|
|
61
46
|
args: CancelTaskCommandInput,
|
|
62
|
-
options?: __HttpHandlerOptions
|
|
47
|
+
options?: __HttpHandlerOptions,
|
|
63
48
|
): Promise<CancelTaskCommandOutput>;
|
|
64
49
|
cancelTask(
|
|
65
50
|
args: CancelTaskCommandInput,
|
|
66
|
-
cb: (err: any, data?: CancelTaskCommandOutput) => void
|
|
51
|
+
cb: (err: any, data?: CancelTaskCommandOutput) => void,
|
|
67
52
|
): void;
|
|
68
53
|
cancelTask(
|
|
69
54
|
args: CancelTaskCommandInput,
|
|
70
55
|
options: __HttpHandlerOptions,
|
|
71
|
-
cb: (err: any, data?: CancelTaskCommandOutput) => void
|
|
56
|
+
cb: (err: any, data?: CancelTaskCommandOutput) => void,
|
|
72
57
|
): void;
|
|
73
58
|
createTask(
|
|
74
59
|
args: CreateTaskCommandInput,
|
|
75
|
-
options?: __HttpHandlerOptions
|
|
60
|
+
options?: __HttpHandlerOptions,
|
|
76
61
|
): Promise<CreateTaskCommandOutput>;
|
|
77
62
|
createTask(
|
|
78
63
|
args: CreateTaskCommandInput,
|
|
79
|
-
cb: (err: any, data?: CreateTaskCommandOutput) => void
|
|
64
|
+
cb: (err: any, data?: CreateTaskCommandOutput) => void,
|
|
80
65
|
): void;
|
|
81
66
|
createTask(
|
|
82
67
|
args: CreateTaskCommandInput,
|
|
83
68
|
options: __HttpHandlerOptions,
|
|
84
|
-
cb: (err: any, data?: CreateTaskCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: CreateTaskCommandOutput) => void,
|
|
85
70
|
): void;
|
|
86
71
|
describeDevice(
|
|
87
72
|
args: DescribeDeviceCommandInput,
|
|
88
|
-
options?: __HttpHandlerOptions
|
|
73
|
+
options?: __HttpHandlerOptions,
|
|
89
74
|
): Promise<DescribeDeviceCommandOutput>;
|
|
90
75
|
describeDevice(
|
|
91
76
|
args: DescribeDeviceCommandInput,
|
|
92
|
-
cb: (err: any, data?: DescribeDeviceCommandOutput) => void
|
|
77
|
+
cb: (err: any, data?: DescribeDeviceCommandOutput) => void,
|
|
93
78
|
): void;
|
|
94
79
|
describeDevice(
|
|
95
80
|
args: DescribeDeviceCommandInput,
|
|
96
81
|
options: __HttpHandlerOptions,
|
|
97
|
-
cb: (err: any, data?: DescribeDeviceCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: DescribeDeviceCommandOutput) => void,
|
|
98
83
|
): void;
|
|
99
84
|
describeDeviceEc2Instances(
|
|
100
85
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
101
|
-
options?: __HttpHandlerOptions
|
|
86
|
+
options?: __HttpHandlerOptions,
|
|
102
87
|
): Promise<DescribeDeviceEc2InstancesCommandOutput>;
|
|
103
88
|
describeDeviceEc2Instances(
|
|
104
89
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
105
|
-
cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void
|
|
90
|
+
cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void,
|
|
106
91
|
): void;
|
|
107
92
|
describeDeviceEc2Instances(
|
|
108
93
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
109
94
|
options: __HttpHandlerOptions,
|
|
110
|
-
cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void,
|
|
111
96
|
): void;
|
|
112
97
|
describeExecution(
|
|
113
98
|
args: DescribeExecutionCommandInput,
|
|
114
|
-
options?: __HttpHandlerOptions
|
|
99
|
+
options?: __HttpHandlerOptions,
|
|
115
100
|
): Promise<DescribeExecutionCommandOutput>;
|
|
116
101
|
describeExecution(
|
|
117
102
|
args: DescribeExecutionCommandInput,
|
|
118
|
-
cb: (err: any, data?: DescribeExecutionCommandOutput) => void
|
|
103
|
+
cb: (err: any, data?: DescribeExecutionCommandOutput) => void,
|
|
119
104
|
): void;
|
|
120
105
|
describeExecution(
|
|
121
106
|
args: DescribeExecutionCommandInput,
|
|
122
107
|
options: __HttpHandlerOptions,
|
|
123
|
-
cb: (err: any, data?: DescribeExecutionCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: DescribeExecutionCommandOutput) => void,
|
|
124
109
|
): void;
|
|
125
110
|
describeTask(
|
|
126
111
|
args: DescribeTaskCommandInput,
|
|
127
|
-
options?: __HttpHandlerOptions
|
|
112
|
+
options?: __HttpHandlerOptions,
|
|
128
113
|
): Promise<DescribeTaskCommandOutput>;
|
|
129
114
|
describeTask(
|
|
130
115
|
args: DescribeTaskCommandInput,
|
|
131
|
-
cb: (err: any, data?: DescribeTaskCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: DescribeTaskCommandOutput) => void,
|
|
132
117
|
): void;
|
|
133
118
|
describeTask(
|
|
134
119
|
args: DescribeTaskCommandInput,
|
|
135
120
|
options: __HttpHandlerOptions,
|
|
136
|
-
cb: (err: any, data?: DescribeTaskCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: DescribeTaskCommandOutput) => void,
|
|
137
122
|
): void;
|
|
138
123
|
listDeviceResources(
|
|
139
124
|
args: ListDeviceResourcesCommandInput,
|
|
140
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
141
126
|
): Promise<ListDeviceResourcesCommandOutput>;
|
|
142
127
|
listDeviceResources(
|
|
143
128
|
args: ListDeviceResourcesCommandInput,
|
|
144
|
-
cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void,
|
|
145
130
|
): void;
|
|
146
131
|
listDeviceResources(
|
|
147
132
|
args: ListDeviceResourcesCommandInput,
|
|
148
133
|
options: __HttpHandlerOptions,
|
|
149
|
-
cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void,
|
|
150
135
|
): void;
|
|
151
136
|
listDevices(): Promise<ListDevicesCommandOutput>;
|
|
152
137
|
listDevices(
|
|
153
138
|
args: ListDevicesCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
139
|
+
options?: __HttpHandlerOptions,
|
|
155
140
|
): Promise<ListDevicesCommandOutput>;
|
|
156
141
|
listDevices(
|
|
157
142
|
args: ListDevicesCommandInput,
|
|
158
|
-
cb: (err: any, data?: ListDevicesCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: ListDevicesCommandOutput) => void,
|
|
159
144
|
): void;
|
|
160
145
|
listDevices(
|
|
161
146
|
args: ListDevicesCommandInput,
|
|
162
147
|
options: __HttpHandlerOptions,
|
|
163
|
-
cb: (err: any, data?: ListDevicesCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: ListDevicesCommandOutput) => void,
|
|
164
149
|
): void;
|
|
165
150
|
listExecutions(
|
|
166
151
|
args: ListExecutionsCommandInput,
|
|
167
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
168
153
|
): Promise<ListExecutionsCommandOutput>;
|
|
169
154
|
listExecutions(
|
|
170
155
|
args: ListExecutionsCommandInput,
|
|
171
|
-
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void,
|
|
172
157
|
): void;
|
|
173
158
|
listExecutions(
|
|
174
159
|
args: ListExecutionsCommandInput,
|
|
175
160
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void,
|
|
177
162
|
): void;
|
|
178
163
|
listTagsForResource(
|
|
179
164
|
args: ListTagsForResourceCommandInput,
|
|
180
|
-
options?: __HttpHandlerOptions
|
|
165
|
+
options?: __HttpHandlerOptions,
|
|
181
166
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
182
167
|
listTagsForResource(
|
|
183
168
|
args: ListTagsForResourceCommandInput,
|
|
184
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
185
170
|
): void;
|
|
186
171
|
listTagsForResource(
|
|
187
172
|
args: ListTagsForResourceCommandInput,
|
|
188
173
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
190
175
|
): void;
|
|
191
176
|
listTasks(): Promise<ListTasksCommandOutput>;
|
|
192
177
|
listTasks(
|
|
193
178
|
args: ListTasksCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
179
|
+
options?: __HttpHandlerOptions,
|
|
195
180
|
): Promise<ListTasksCommandOutput>;
|
|
196
181
|
listTasks(
|
|
197
182
|
args: ListTasksCommandInput,
|
|
198
|
-
cb: (err: any, data?: ListTasksCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: ListTasksCommandOutput) => void,
|
|
199
184
|
): void;
|
|
200
185
|
listTasks(
|
|
201
186
|
args: ListTasksCommandInput,
|
|
202
187
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: ListTasksCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: ListTasksCommandOutput) => void,
|
|
204
189
|
): void;
|
|
205
190
|
tagResource(
|
|
206
191
|
args: TagResourceCommandInput,
|
|
207
|
-
options?: __HttpHandlerOptions
|
|
192
|
+
options?: __HttpHandlerOptions,
|
|
208
193
|
): Promise<TagResourceCommandOutput>;
|
|
209
194
|
tagResource(
|
|
210
195
|
args: TagResourceCommandInput,
|
|
211
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
212
197
|
): void;
|
|
213
198
|
tagResource(
|
|
214
199
|
args: TagResourceCommandInput,
|
|
215
200
|
options: __HttpHandlerOptions,
|
|
216
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
217
202
|
): void;
|
|
218
203
|
untagResource(
|
|
219
204
|
args: UntagResourceCommandInput,
|
|
220
|
-
options?: __HttpHandlerOptions
|
|
205
|
+
options?: __HttpHandlerOptions,
|
|
221
206
|
): Promise<UntagResourceCommandOutput>;
|
|
222
207
|
untagResource(
|
|
223
208
|
args: UntagResourceCommandInput,
|
|
224
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
209
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
225
210
|
): void;
|
|
226
211
|
untagResource(
|
|
227
212
|
args: UntagResourceCommandInput,
|
|
228
213
|
options: __HttpHandlerOptions,
|
|
229
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
230
215
|
): void;
|
|
231
216
|
paginateListDeviceResources(
|
|
232
217
|
args: ListDeviceResourcesCommandInput,
|
|
233
218
|
paginationConfig?: Pick<
|
|
234
219
|
PaginationConfiguration,
|
|
235
220
|
Exclude<keyof PaginationConfiguration, "client">
|
|
236
|
-
|
|
221
|
+
>,
|
|
237
222
|
): Paginator<ListDeviceResourcesCommandOutput>;
|
|
238
223
|
paginateListDevices(
|
|
239
224
|
args?: ListDevicesCommandInput,
|
|
240
225
|
paginationConfig?: Pick<
|
|
241
226
|
PaginationConfiguration,
|
|
242
227
|
Exclude<keyof PaginationConfiguration, "client">
|
|
243
|
-
|
|
228
|
+
>,
|
|
244
229
|
): Paginator<ListDevicesCommandOutput>;
|
|
245
230
|
paginateListExecutions(
|
|
246
231
|
args: ListExecutionsCommandInput,
|
|
247
232
|
paginationConfig?: Pick<
|
|
248
233
|
PaginationConfiguration,
|
|
249
234
|
Exclude<keyof PaginationConfiguration, "client">
|
|
250
|
-
|
|
235
|
+
>,
|
|
251
236
|
): Paginator<ListExecutionsCommandOutput>;
|
|
252
237
|
paginateListTasks(
|
|
253
238
|
args?: ListTasksCommandInput,
|
|
254
239
|
paginationConfig?: Pick<
|
|
255
240
|
PaginationConfiguration,
|
|
256
241
|
Exclude<keyof PaginationConfiguration, "client">
|
|
257
|
-
|
|
242
|
+
>,
|
|
258
243
|
): Paginator<ListTasksCommandOutput>;
|
|
259
244
|
}
|
|
260
245
|
export declare class SnowDeviceManagement
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -36,14 +33,8 @@ import {
|
|
|
36
33
|
HttpAuthSchemeInputConfig,
|
|
37
34
|
HttpAuthSchemeResolvedConfig,
|
|
38
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
-
import {
|
|
40
|
-
|
|
41
|
-
CancelTaskCommandOutput,
|
|
42
|
-
} from "./commands/CancelTaskCommand";
|
|
43
|
-
import {
|
|
44
|
-
CreateTaskCommandInput,
|
|
45
|
-
CreateTaskCommandOutput,
|
|
46
|
-
} from "./commands/CreateTaskCommand";
|
|
36
|
+
import { CancelTaskCommandInput, CancelTaskCommandOutput } from "./commands/CancelTaskCommand";
|
|
37
|
+
import { CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
47
38
|
import {
|
|
48
39
|
DescribeDeviceCommandInput,
|
|
49
40
|
DescribeDeviceCommandOutput,
|
|
@@ -64,10 +55,7 @@ import {
|
|
|
64
55
|
ListDeviceResourcesCommandInput,
|
|
65
56
|
ListDeviceResourcesCommandOutput,
|
|
66
57
|
} from "./commands/ListDeviceResourcesCommand";
|
|
67
|
-
import {
|
|
68
|
-
ListDevicesCommandInput,
|
|
69
|
-
ListDevicesCommandOutput,
|
|
70
|
-
} from "./commands/ListDevicesCommand";
|
|
58
|
+
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
71
59
|
import {
|
|
72
60
|
ListExecutionsCommandInput,
|
|
73
61
|
ListExecutionsCommandOutput,
|
|
@@ -76,14 +64,8 @@ import {
|
|
|
76
64
|
ListTagsForResourceCommandInput,
|
|
77
65
|
ListTagsForResourceCommandOutput,
|
|
78
66
|
} from "./commands/ListTagsForResourceCommand";
|
|
79
|
-
import {
|
|
80
|
-
|
|
81
|
-
ListTasksCommandOutput,
|
|
82
|
-
} from "./commands/ListTasksCommand";
|
|
83
|
-
import {
|
|
84
|
-
TagResourceCommandInput,
|
|
85
|
-
TagResourceCommandOutput,
|
|
86
|
-
} from "./commands/TagResourceCommand";
|
|
67
|
+
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
68
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
87
69
|
import {
|
|
88
70
|
UntagResourceCommandInput,
|
|
89
71
|
UntagResourceCommandOutput,
|
|
@@ -123,8 +105,7 @@ export type ServiceOutputTypes =
|
|
|
123
105
|
| ListTasksCommandOutput
|
|
124
106
|
| TagResourceCommandOutput
|
|
125
107
|
| UntagResourceCommandOutput;
|
|
126
|
-
export interface ClientDefaults
|
|
127
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
108
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
128
109
|
requestHandler?: __HttpHandlerUserInput;
|
|
129
110
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
130
111
|
urlParser?: __UrlParser;
|
|
@@ -160,8 +141,7 @@ export type SnowDeviceManagementClientConfigType = Partial<
|
|
|
160
141
|
EndpointInputConfig<EndpointParameters> &
|
|
161
142
|
HttpAuthSchemeInputConfig &
|
|
162
143
|
ClientInputEndpointParameters;
|
|
163
|
-
export interface SnowDeviceManagementClientConfig
|
|
164
|
-
extends SnowDeviceManagementClientConfigType {}
|
|
144
|
+
export interface SnowDeviceManagementClientConfig extends SnowDeviceManagementClientConfigType {}
|
|
165
145
|
export type SnowDeviceManagementClientResolvedConfigType =
|
|
166
146
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
167
147
|
Required<ClientDefaults> &
|
|
@@ -173,8 +153,7 @@ export type SnowDeviceManagementClientResolvedConfigType =
|
|
|
173
153
|
EndpointResolvedConfig<EndpointParameters> &
|
|
174
154
|
HttpAuthSchemeResolvedConfig &
|
|
175
155
|
ClientResolvedEndpointParameters;
|
|
176
|
-
export interface SnowDeviceManagementClientResolvedConfig
|
|
177
|
-
extends SnowDeviceManagementClientResolvedConfigType {}
|
|
156
|
+
export interface SnowDeviceManagementClientResolvedConfig extends SnowDeviceManagementClientResolvedConfigType {}
|
|
178
157
|
export declare class SnowDeviceManagementClient extends __Client<
|
|
179
158
|
__HttpHandlerOptions,
|
|
180
159
|
ServiceInputTypes,
|
|
@@ -182,10 +161,6 @@ export declare class SnowDeviceManagementClient extends __Client<
|
|
|
182
161
|
SnowDeviceManagementClientResolvedConfig
|
|
183
162
|
> {
|
|
184
163
|
readonly config: SnowDeviceManagementClientResolvedConfig;
|
|
185
|
-
constructor(
|
|
186
|
-
...[
|
|
187
|
-
configuration,
|
|
188
|
-
]: __CheckOptionalClientConfig<SnowDeviceManagementClientConfig>
|
|
189
|
-
);
|
|
164
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SnowDeviceManagementClientConfig>);
|
|
190
165
|
destroy(): void;
|
|
191
166
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SnowDeviceManagementHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: SnowDeviceManagementHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): SnowDeviceManagementHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
|
|
15
|
-
export interface SnowDeviceManagementHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SnowDeviceManagementHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SnowDeviceManagementHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SnowDeviceManagementHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SnowDeviceManagementClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SnowDeviceManagementHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSnowDeviceManagementHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SnowDeviceManagementClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SnowDeviceManagementHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SnowDeviceManagementHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SnowDeviceManagementHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SnowDeviceManagementHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SnowDeviceManagementHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSnowDeviceManagementHttpAuthSchemeProvider: SnowDeviceManagementHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SnowDeviceManagementHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SnowDeviceManagementHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
SnowDeviceManagementClientResolvedConfig,
|
|
6
6
|
} from "./SnowDeviceManagementClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
SnowDeviceManagementClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CancelTaskInput, CancelTaskOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CancelTaskCommandInput extends CancelTaskInput {}
|
|
5
|
-
export interface CancelTaskCommandOutput
|
|
6
|
-
extends CancelTaskOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBearer {}
|
|
8
6
|
declare const CancelTaskCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CancelTaskCommandInput
|
|
8
|
+
input: CancelTaskCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CancelTaskCommandInput,
|
|
13
11
|
CancelTaskCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CancelTaskCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CancelTaskCommandInput
|
|
17
|
+
input: CancelTaskCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CancelTaskCommandInput,
|
|
22
20
|
CancelTaskCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateTaskInput, CreateTaskOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateTaskCommandInput extends CreateTaskInput {}
|
|
5
|
-
export interface CreateTaskCommandOutput
|
|
6
|
-
extends CreateTaskOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateTaskCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateTaskCommandInput
|
|
8
|
+
input: CreateTaskCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateTaskCommandInput,
|
|
13
11
|
CreateTaskCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateTaskCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateTaskCommandInput
|
|
17
|
+
input: CreateTaskCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateTaskCommandInput,
|
|
22
20
|
CreateTaskCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeDeviceInput, DescribeDeviceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeDeviceCommandInput extends DescribeDeviceInput {}
|
|
5
|
-
export interface DescribeDeviceCommandOutput
|
|
6
|
-
extends DescribeDeviceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __MetadataBearer {}
|
|
8
6
|
declare const DescribeDeviceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeDeviceCommandInput
|
|
8
|
+
input: DescribeDeviceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeDeviceCommandInput,
|
|
13
11
|
DescribeDeviceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeDeviceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeDeviceCommandInput
|
|
17
|
+
input: DescribeDeviceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeDeviceCommandInput,
|
|
22
20
|
DescribeDeviceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeDeviceEc2Input,
|
|
4
|
-
DescribeDeviceEc2Output,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeDeviceEc2Input, DescribeDeviceEc2Output } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeDeviceEc2InstancesCommandInput
|
|
8
|
-
extends DescribeDeviceEc2Input {}
|
|
4
|
+
export interface DescribeDeviceEc2InstancesCommandInput extends DescribeDeviceEc2Input {}
|
|
9
5
|
export interface DescribeDeviceEc2InstancesCommandOutput
|
|
10
|
-
extends DescribeDeviceEc2Output,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeDeviceEc2Output, __MetadataBearer {}
|
|
12
7
|
declare const DescribeDeviceEc2InstancesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeDeviceEc2InstancesCommandInput
|
|
9
|
+
input: DescribeDeviceEc2InstancesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeDeviceEc2InstancesCommandInput,
|
|
17
12
|
DescribeDeviceEc2InstancesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeDeviceEc2InstancesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeDeviceEc2InstancesCommandInput
|
|
18
|
+
input: DescribeDeviceEc2InstancesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeDeviceEc2InstancesCommandInput,
|
|
26
21
|
DescribeDeviceEc2InstancesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeExecutionInput,
|
|
4
|
-
DescribeExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeExecutionCommandInput extends DescribeExecutionInput {}
|
|
8
|
-
export interface DescribeExecutionCommandOutput
|
|
9
|
-
extends DescribeExecutionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, __MetadataBearer {}
|
|
11
6
|
declare const DescribeExecutionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeExecutionCommandInput
|
|
8
|
+
input: DescribeExecutionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeExecutionCommandInput,
|
|
16
11
|
DescribeExecutionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeExecutionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeExecutionCommandInput
|
|
17
|
+
input: DescribeExecutionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeExecutionCommandInput,
|
|
25
20
|
DescribeExecutionCommandOutput,
|