@aws-sdk/client-snow-device-management 3.1137.0 → 3.1139.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
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1138.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -370,10 +370,10 @@ const _un = "unlock";
|
|
|
370
370
|
const _us = "used";
|
|
371
371
|
const _vI = "volumeId";
|
|
372
372
|
const n0 = "com.amazonaws.snowdevicemanagement";
|
|
373
|
-
const _s_registry = TypeRegistry
|
|
373
|
+
const _s_registry = new TypeRegistry(_s);
|
|
374
374
|
var SnowDeviceManagementServiceException$ = [-3, _s, "SnowDeviceManagementServiceException", 0, [], []];
|
|
375
375
|
_s_registry.registerError(SnowDeviceManagementServiceException$, SnowDeviceManagementServiceException);
|
|
376
|
-
const n0_registry = TypeRegistry
|
|
376
|
+
const n0_registry = new TypeRegistry(n0);
|
|
377
377
|
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
378
378
|
{ [_e]: _c, [_hE]: 403 },
|
|
379
379
|
[_m],
|
|
@@ -156,10 +156,10 @@ const n0 = "com.amazonaws.snowdevicemanagement";
|
|
|
156
156
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
157
157
|
import { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
158
158
|
import { SnowDeviceManagementServiceException } from "../models/SnowDeviceManagementServiceException";
|
|
159
|
-
const _s_registry = TypeRegistry
|
|
159
|
+
const _s_registry = new TypeRegistry(_s);
|
|
160
160
|
export var SnowDeviceManagementServiceException$ = [-3, _s, "SnowDeviceManagementServiceException", 0, [], []];
|
|
161
161
|
_s_registry.registerError(SnowDeviceManagementServiceException$, SnowDeviceManagementServiceException);
|
|
162
|
-
const n0_registry = TypeRegistry
|
|
162
|
+
const n0_registry = new TypeRegistry(n0);
|
|
163
163
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
164
164
|
{ [_e]: _c, [_hE]: 403 },
|
|
165
165
|
[_m],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { type CancelTaskCommandInput, type CancelTaskCommandOutput } from "./commands/CancelTaskCommand";
|
|
3
3
|
import { type CreateTaskCommandInput, type CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
4
4
|
import { type DescribeDeviceCommandInput, type DescribeDeviceCommandOutput } from "./commands/DescribeDeviceCommand";
|
|
@@ -13,87 +13,93 @@ import { type ListTasksCommandInput, type ListTasksCommandOutput } from "./comma
|
|
|
13
13
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
14
14
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
15
15
|
import { SnowDeviceManagementClient } from "./SnowDeviceManagementClient";
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface SnowDeviceManagementRequestOptions extends __HttpHandlerOptions {
|
|
20
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
21
|
+
}
|
|
16
22
|
export interface SnowDeviceManagement {
|
|
17
23
|
/**
|
|
18
24
|
* @see {@link CancelTaskCommand}
|
|
19
25
|
*/
|
|
20
|
-
cancelTask(args: CancelTaskCommandInput, options?:
|
|
26
|
+
cancelTask(args: CancelTaskCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<CancelTaskCommandOutput>;
|
|
21
27
|
cancelTask(args: CancelTaskCommandInput, cb: (err: any, data?: CancelTaskCommandOutput) => void): void;
|
|
22
|
-
cancelTask(args: CancelTaskCommandInput, options:
|
|
28
|
+
cancelTask(args: CancelTaskCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: CancelTaskCommandOutput) => void): void;
|
|
23
29
|
/**
|
|
24
30
|
* @see {@link CreateTaskCommand}
|
|
25
31
|
*/
|
|
26
|
-
createTask(args: CreateTaskCommandInput, options?:
|
|
32
|
+
createTask(args: CreateTaskCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<CreateTaskCommandOutput>;
|
|
27
33
|
createTask(args: CreateTaskCommandInput, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
28
|
-
createTask(args: CreateTaskCommandInput, options:
|
|
34
|
+
createTask(args: CreateTaskCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
29
35
|
/**
|
|
30
36
|
* @see {@link DescribeDeviceCommand}
|
|
31
37
|
*/
|
|
32
|
-
describeDevice(args: DescribeDeviceCommandInput, options?:
|
|
38
|
+
describeDevice(args: DescribeDeviceCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<DescribeDeviceCommandOutput>;
|
|
33
39
|
describeDevice(args: DescribeDeviceCommandInput, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
|
|
34
|
-
describeDevice(args: DescribeDeviceCommandInput, options:
|
|
40
|
+
describeDevice(args: DescribeDeviceCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
|
|
35
41
|
/**
|
|
36
42
|
* @see {@link DescribeDeviceEc2InstancesCommand}
|
|
37
43
|
*/
|
|
38
|
-
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, options?:
|
|
44
|
+
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<DescribeDeviceEc2InstancesCommandOutput>;
|
|
39
45
|
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void): void;
|
|
40
|
-
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, options:
|
|
46
|
+
describeDeviceEc2Instances(args: DescribeDeviceEc2InstancesCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void): void;
|
|
41
47
|
/**
|
|
42
48
|
* @see {@link DescribeExecutionCommand}
|
|
43
49
|
*/
|
|
44
|
-
describeExecution(args: DescribeExecutionCommandInput, options?:
|
|
50
|
+
describeExecution(args: DescribeExecutionCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<DescribeExecutionCommandOutput>;
|
|
45
51
|
describeExecution(args: DescribeExecutionCommandInput, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
|
|
46
|
-
describeExecution(args: DescribeExecutionCommandInput, options:
|
|
52
|
+
describeExecution(args: DescribeExecutionCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
|
|
47
53
|
/**
|
|
48
54
|
* @see {@link DescribeTaskCommand}
|
|
49
55
|
*/
|
|
50
|
-
describeTask(args: DescribeTaskCommandInput, options?:
|
|
56
|
+
describeTask(args: DescribeTaskCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<DescribeTaskCommandOutput>;
|
|
51
57
|
describeTask(args: DescribeTaskCommandInput, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
52
|
-
describeTask(args: DescribeTaskCommandInput, options:
|
|
58
|
+
describeTask(args: DescribeTaskCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
53
59
|
/**
|
|
54
60
|
* @see {@link ListDeviceResourcesCommand}
|
|
55
61
|
*/
|
|
56
|
-
listDeviceResources(args: ListDeviceResourcesCommandInput, options?:
|
|
62
|
+
listDeviceResources(args: ListDeviceResourcesCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<ListDeviceResourcesCommandOutput>;
|
|
57
63
|
listDeviceResources(args: ListDeviceResourcesCommandInput, cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void): void;
|
|
58
|
-
listDeviceResources(args: ListDeviceResourcesCommandInput, options:
|
|
64
|
+
listDeviceResources(args: ListDeviceResourcesCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void): void;
|
|
59
65
|
/**
|
|
60
66
|
* @see {@link ListDevicesCommand}
|
|
61
67
|
*/
|
|
62
68
|
listDevices(): Promise<ListDevicesCommandOutput>;
|
|
63
|
-
listDevices(args: ListDevicesCommandInput, options?:
|
|
69
|
+
listDevices(args: ListDevicesCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<ListDevicesCommandOutput>;
|
|
64
70
|
listDevices(args: ListDevicesCommandInput, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
65
|
-
listDevices(args: ListDevicesCommandInput, options:
|
|
71
|
+
listDevices(args: ListDevicesCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
66
72
|
/**
|
|
67
73
|
* @see {@link ListExecutionsCommand}
|
|
68
74
|
*/
|
|
69
|
-
listExecutions(args: ListExecutionsCommandInput, options?:
|
|
75
|
+
listExecutions(args: ListExecutionsCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<ListExecutionsCommandOutput>;
|
|
70
76
|
listExecutions(args: ListExecutionsCommandInput, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
|
|
71
|
-
listExecutions(args: ListExecutionsCommandInput, options:
|
|
77
|
+
listExecutions(args: ListExecutionsCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
|
|
72
78
|
/**
|
|
73
79
|
* @see {@link ListTagsForResourceCommand}
|
|
74
80
|
*/
|
|
75
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?:
|
|
81
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
76
82
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
77
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options:
|
|
83
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
78
84
|
/**
|
|
79
85
|
* @see {@link ListTasksCommand}
|
|
80
86
|
*/
|
|
81
87
|
listTasks(): Promise<ListTasksCommandOutput>;
|
|
82
|
-
listTasks(args: ListTasksCommandInput, options?:
|
|
88
|
+
listTasks(args: ListTasksCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<ListTasksCommandOutput>;
|
|
83
89
|
listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
84
|
-
listTasks(args: ListTasksCommandInput, options:
|
|
90
|
+
listTasks(args: ListTasksCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
85
91
|
/**
|
|
86
92
|
* @see {@link TagResourceCommand}
|
|
87
93
|
*/
|
|
88
|
-
tagResource(args: TagResourceCommandInput, options?:
|
|
94
|
+
tagResource(args: TagResourceCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<TagResourceCommandOutput>;
|
|
89
95
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
90
|
-
tagResource(args: TagResourceCommandInput, options:
|
|
96
|
+
tagResource(args: TagResourceCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
91
97
|
/**
|
|
92
98
|
* @see {@link UntagResourceCommand}
|
|
93
99
|
*/
|
|
94
|
-
untagResource(args: UntagResourceCommandInput, options?:
|
|
100
|
+
untagResource(args: UntagResourceCommandInput, options?: SnowDeviceManagementRequestOptions): Promise<UntagResourceCommandOutput>;
|
|
95
101
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
96
|
-
untagResource(args: UntagResourceCommandInput, options:
|
|
102
|
+
untagResource(args: UntagResourceCommandInput, options: SnowDeviceManagementRequestOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
97
103
|
/**
|
|
98
104
|
* @see {@link ListDeviceResourcesCommand}
|
|
99
105
|
* @param args - command input.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
MetricsRecorder as __MetricsRecorder,
|
|
3
4
|
PaginationConfiguration,
|
|
4
5
|
Paginator,
|
|
5
6
|
} from "@smithy/types";
|
|
@@ -41,10 +42,13 @@ import {
|
|
|
41
42
|
UntagResourceCommandOutput,
|
|
42
43
|
} from "./commands/UntagResourceCommand";
|
|
43
44
|
import { SnowDeviceManagementClient } from "./SnowDeviceManagementClient";
|
|
45
|
+
export interface SnowDeviceManagementRequestOptions extends __HttpHandlerOptions {
|
|
46
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
47
|
+
}
|
|
44
48
|
export interface SnowDeviceManagement {
|
|
45
49
|
cancelTask(
|
|
46
50
|
args: CancelTaskCommandInput,
|
|
47
|
-
options?:
|
|
51
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
48
52
|
): Promise<CancelTaskCommandOutput>;
|
|
49
53
|
cancelTask(
|
|
50
54
|
args: CancelTaskCommandInput,
|
|
@@ -52,12 +56,12 @@ export interface SnowDeviceManagement {
|
|
|
52
56
|
): void;
|
|
53
57
|
cancelTask(
|
|
54
58
|
args: CancelTaskCommandInput,
|
|
55
|
-
options:
|
|
59
|
+
options: SnowDeviceManagementRequestOptions,
|
|
56
60
|
cb: (err: any, data?: CancelTaskCommandOutput) => void,
|
|
57
61
|
): void;
|
|
58
62
|
createTask(
|
|
59
63
|
args: CreateTaskCommandInput,
|
|
60
|
-
options?:
|
|
64
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
61
65
|
): Promise<CreateTaskCommandOutput>;
|
|
62
66
|
createTask(
|
|
63
67
|
args: CreateTaskCommandInput,
|
|
@@ -65,12 +69,12 @@ export interface SnowDeviceManagement {
|
|
|
65
69
|
): void;
|
|
66
70
|
createTask(
|
|
67
71
|
args: CreateTaskCommandInput,
|
|
68
|
-
options:
|
|
72
|
+
options: SnowDeviceManagementRequestOptions,
|
|
69
73
|
cb: (err: any, data?: CreateTaskCommandOutput) => void,
|
|
70
74
|
): void;
|
|
71
75
|
describeDevice(
|
|
72
76
|
args: DescribeDeviceCommandInput,
|
|
73
|
-
options?:
|
|
77
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
74
78
|
): Promise<DescribeDeviceCommandOutput>;
|
|
75
79
|
describeDevice(
|
|
76
80
|
args: DescribeDeviceCommandInput,
|
|
@@ -78,12 +82,12 @@ export interface SnowDeviceManagement {
|
|
|
78
82
|
): void;
|
|
79
83
|
describeDevice(
|
|
80
84
|
args: DescribeDeviceCommandInput,
|
|
81
|
-
options:
|
|
85
|
+
options: SnowDeviceManagementRequestOptions,
|
|
82
86
|
cb: (err: any, data?: DescribeDeviceCommandOutput) => void,
|
|
83
87
|
): void;
|
|
84
88
|
describeDeviceEc2Instances(
|
|
85
89
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
86
|
-
options?:
|
|
90
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
87
91
|
): Promise<DescribeDeviceEc2InstancesCommandOutput>;
|
|
88
92
|
describeDeviceEc2Instances(
|
|
89
93
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
@@ -91,12 +95,12 @@ export interface SnowDeviceManagement {
|
|
|
91
95
|
): void;
|
|
92
96
|
describeDeviceEc2Instances(
|
|
93
97
|
args: DescribeDeviceEc2InstancesCommandInput,
|
|
94
|
-
options:
|
|
98
|
+
options: SnowDeviceManagementRequestOptions,
|
|
95
99
|
cb: (err: any, data?: DescribeDeviceEc2InstancesCommandOutput) => void,
|
|
96
100
|
): void;
|
|
97
101
|
describeExecution(
|
|
98
102
|
args: DescribeExecutionCommandInput,
|
|
99
|
-
options?:
|
|
103
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
100
104
|
): Promise<DescribeExecutionCommandOutput>;
|
|
101
105
|
describeExecution(
|
|
102
106
|
args: DescribeExecutionCommandInput,
|
|
@@ -104,12 +108,12 @@ export interface SnowDeviceManagement {
|
|
|
104
108
|
): void;
|
|
105
109
|
describeExecution(
|
|
106
110
|
args: DescribeExecutionCommandInput,
|
|
107
|
-
options:
|
|
111
|
+
options: SnowDeviceManagementRequestOptions,
|
|
108
112
|
cb: (err: any, data?: DescribeExecutionCommandOutput) => void,
|
|
109
113
|
): void;
|
|
110
114
|
describeTask(
|
|
111
115
|
args: DescribeTaskCommandInput,
|
|
112
|
-
options?:
|
|
116
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
113
117
|
): Promise<DescribeTaskCommandOutput>;
|
|
114
118
|
describeTask(
|
|
115
119
|
args: DescribeTaskCommandInput,
|
|
@@ -117,12 +121,12 @@ export interface SnowDeviceManagement {
|
|
|
117
121
|
): void;
|
|
118
122
|
describeTask(
|
|
119
123
|
args: DescribeTaskCommandInput,
|
|
120
|
-
options:
|
|
124
|
+
options: SnowDeviceManagementRequestOptions,
|
|
121
125
|
cb: (err: any, data?: DescribeTaskCommandOutput) => void,
|
|
122
126
|
): void;
|
|
123
127
|
listDeviceResources(
|
|
124
128
|
args: ListDeviceResourcesCommandInput,
|
|
125
|
-
options?:
|
|
129
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
126
130
|
): Promise<ListDeviceResourcesCommandOutput>;
|
|
127
131
|
listDeviceResources(
|
|
128
132
|
args: ListDeviceResourcesCommandInput,
|
|
@@ -130,13 +134,13 @@ export interface SnowDeviceManagement {
|
|
|
130
134
|
): void;
|
|
131
135
|
listDeviceResources(
|
|
132
136
|
args: ListDeviceResourcesCommandInput,
|
|
133
|
-
options:
|
|
137
|
+
options: SnowDeviceManagementRequestOptions,
|
|
134
138
|
cb: (err: any, data?: ListDeviceResourcesCommandOutput) => void,
|
|
135
139
|
): void;
|
|
136
140
|
listDevices(): Promise<ListDevicesCommandOutput>;
|
|
137
141
|
listDevices(
|
|
138
142
|
args: ListDevicesCommandInput,
|
|
139
|
-
options?:
|
|
143
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
140
144
|
): Promise<ListDevicesCommandOutput>;
|
|
141
145
|
listDevices(
|
|
142
146
|
args: ListDevicesCommandInput,
|
|
@@ -144,12 +148,12 @@ export interface SnowDeviceManagement {
|
|
|
144
148
|
): void;
|
|
145
149
|
listDevices(
|
|
146
150
|
args: ListDevicesCommandInput,
|
|
147
|
-
options:
|
|
151
|
+
options: SnowDeviceManagementRequestOptions,
|
|
148
152
|
cb: (err: any, data?: ListDevicesCommandOutput) => void,
|
|
149
153
|
): void;
|
|
150
154
|
listExecutions(
|
|
151
155
|
args: ListExecutionsCommandInput,
|
|
152
|
-
options?:
|
|
156
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
153
157
|
): Promise<ListExecutionsCommandOutput>;
|
|
154
158
|
listExecutions(
|
|
155
159
|
args: ListExecutionsCommandInput,
|
|
@@ -157,12 +161,12 @@ export interface SnowDeviceManagement {
|
|
|
157
161
|
): void;
|
|
158
162
|
listExecutions(
|
|
159
163
|
args: ListExecutionsCommandInput,
|
|
160
|
-
options:
|
|
164
|
+
options: SnowDeviceManagementRequestOptions,
|
|
161
165
|
cb: (err: any, data?: ListExecutionsCommandOutput) => void,
|
|
162
166
|
): void;
|
|
163
167
|
listTagsForResource(
|
|
164
168
|
args: ListTagsForResourceCommandInput,
|
|
165
|
-
options?:
|
|
169
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
166
170
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
167
171
|
listTagsForResource(
|
|
168
172
|
args: ListTagsForResourceCommandInput,
|
|
@@ -170,13 +174,13 @@ export interface SnowDeviceManagement {
|
|
|
170
174
|
): void;
|
|
171
175
|
listTagsForResource(
|
|
172
176
|
args: ListTagsForResourceCommandInput,
|
|
173
|
-
options:
|
|
177
|
+
options: SnowDeviceManagementRequestOptions,
|
|
174
178
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
175
179
|
): void;
|
|
176
180
|
listTasks(): Promise<ListTasksCommandOutput>;
|
|
177
181
|
listTasks(
|
|
178
182
|
args: ListTasksCommandInput,
|
|
179
|
-
options?:
|
|
183
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
180
184
|
): Promise<ListTasksCommandOutput>;
|
|
181
185
|
listTasks(
|
|
182
186
|
args: ListTasksCommandInput,
|
|
@@ -184,12 +188,12 @@ export interface SnowDeviceManagement {
|
|
|
184
188
|
): void;
|
|
185
189
|
listTasks(
|
|
186
190
|
args: ListTasksCommandInput,
|
|
187
|
-
options:
|
|
191
|
+
options: SnowDeviceManagementRequestOptions,
|
|
188
192
|
cb: (err: any, data?: ListTasksCommandOutput) => void,
|
|
189
193
|
): void;
|
|
190
194
|
tagResource(
|
|
191
195
|
args: TagResourceCommandInput,
|
|
192
|
-
options?:
|
|
196
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
193
197
|
): Promise<TagResourceCommandOutput>;
|
|
194
198
|
tagResource(
|
|
195
199
|
args: TagResourceCommandInput,
|
|
@@ -197,12 +201,12 @@ export interface SnowDeviceManagement {
|
|
|
197
201
|
): void;
|
|
198
202
|
tagResource(
|
|
199
203
|
args: TagResourceCommandInput,
|
|
200
|
-
options:
|
|
204
|
+
options: SnowDeviceManagementRequestOptions,
|
|
201
205
|
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
202
206
|
): void;
|
|
203
207
|
untagResource(
|
|
204
208
|
args: UntagResourceCommandInput,
|
|
205
|
-
options?:
|
|
209
|
+
options?: SnowDeviceManagementRequestOptions,
|
|
206
210
|
): Promise<UntagResourceCommandOutput>;
|
|
207
211
|
untagResource(
|
|
208
212
|
args: UntagResourceCommandInput,
|
|
@@ -210,7 +214,7 @@ export interface SnowDeviceManagement {
|
|
|
210
214
|
): void;
|
|
211
215
|
untagResource(
|
|
212
216
|
args: UntagResourceCommandInput,
|
|
213
|
-
options:
|
|
217
|
+
options: SnowDeviceManagementRequestOptions,
|
|
214
218
|
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
215
219
|
): void;
|
|
216
220
|
paginateListDeviceResources(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snow-device-management",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1139.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Snow Device Management Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-snow-device-management",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.978.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
51
|
-
"@aws-sdk/types": "^3.974.
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.
|
|
54
|
-
"@smithy/node-http-handler": "^4.
|
|
55
|
-
"@smithy/types": "^4.
|
|
49
|
+
"@aws-sdk/core": "^3.978.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.84",
|
|
51
|
+
"@aws-sdk/types": "^3.974.6",
|
|
52
|
+
"@smithy/core": "^3.35.0",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.8.0",
|
|
54
|
+
"@smithy/node-http-handler": "^4.12.1",
|
|
55
|
+
"@smithy/types": "^4.19.0",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|