@aws-sdk/client-snow-device-management 3.301.0 → 3.303.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/models/models_0.js +44 -51
- package/dist-es/models/models_0.js +44 -51
- package/dist-types/models/models_0.d.ts +79 -44
- package/dist-types/ts3.4/models/models_0.d.ts +56 -44
- package/package.json +34 -34
|
@@ -15,13 +15,12 @@ class AccessDeniedException extends SnowDeviceManagementServiceException_1.SnowD
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
})(AttachmentStatus = exports.AttachmentStatus || (exports.AttachmentStatus = {}));
|
|
18
|
+
exports.AttachmentStatus = {
|
|
19
|
+
ATTACHED: "ATTACHED",
|
|
20
|
+
ATTACHING: "ATTACHING",
|
|
21
|
+
DETACHED: "DETACHED",
|
|
22
|
+
DETACHING: "DETACHING",
|
|
23
|
+
};
|
|
25
24
|
class InternalServerException extends SnowDeviceManagementServiceException_1.SnowDeviceManagementServiceException {
|
|
26
25
|
constructor(opts) {
|
|
27
26
|
super({
|
|
@@ -101,47 +100,41 @@ class ServiceQuotaExceededException extends SnowDeviceManagementServiceException
|
|
|
101
100
|
}
|
|
102
101
|
}
|
|
103
102
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
var TaskState;
|
|
143
|
-
(function (TaskState) {
|
|
144
|
-
TaskState["CANCELED"] = "CANCELED";
|
|
145
|
-
TaskState["COMPLETED"] = "COMPLETED";
|
|
146
|
-
TaskState["IN_PROGRESS"] = "IN_PROGRESS";
|
|
147
|
-
})(TaskState = exports.TaskState || (exports.TaskState = {}));
|
|
103
|
+
exports.UnlockState = {
|
|
104
|
+
LOCKED: "LOCKED",
|
|
105
|
+
UNLOCKED: "UNLOCKED",
|
|
106
|
+
UNLOCKING: "UNLOCKING",
|
|
107
|
+
};
|
|
108
|
+
exports.IpAddressAssignment = {
|
|
109
|
+
DHCP: "DHCP",
|
|
110
|
+
STATIC: "STATIC",
|
|
111
|
+
};
|
|
112
|
+
exports.PhysicalConnectorType = {
|
|
113
|
+
QSFP: "QSFP",
|
|
114
|
+
RJ45: "RJ45",
|
|
115
|
+
RJ45_2: "RJ45_2",
|
|
116
|
+
SFP_PLUS: "SFP_PLUS",
|
|
117
|
+
WIFI: "WIFI",
|
|
118
|
+
};
|
|
119
|
+
exports.InstanceStateName = {
|
|
120
|
+
PENDING: "PENDING",
|
|
121
|
+
RUNNING: "RUNNING",
|
|
122
|
+
SHUTTING_DOWN: "SHUTTING_DOWN",
|
|
123
|
+
STOPPED: "STOPPED",
|
|
124
|
+
STOPPING: "STOPPING",
|
|
125
|
+
TERMINATED: "TERMINATED",
|
|
126
|
+
};
|
|
127
|
+
exports.ExecutionState = {
|
|
128
|
+
CANCELED: "CANCELED",
|
|
129
|
+
FAILED: "FAILED",
|
|
130
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
131
|
+
QUEUED: "QUEUED",
|
|
132
|
+
REJECTED: "REJECTED",
|
|
133
|
+
SUCCEEDED: "SUCCEEDED",
|
|
134
|
+
TIMED_OUT: "TIMED_OUT",
|
|
135
|
+
};
|
|
136
|
+
exports.TaskState = {
|
|
137
|
+
CANCELED: "CANCELED",
|
|
138
|
+
COMPLETED: "COMPLETED",
|
|
139
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
140
|
+
};
|
|
@@ -11,13 +11,12 @@ export class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
})(AttachmentStatus || (AttachmentStatus = {}));
|
|
14
|
+
export const AttachmentStatus = {
|
|
15
|
+
ATTACHED: "ATTACHED",
|
|
16
|
+
ATTACHING: "ATTACHING",
|
|
17
|
+
DETACHED: "DETACHED",
|
|
18
|
+
DETACHING: "DETACHING",
|
|
19
|
+
};
|
|
21
20
|
export class InternalServerException extends __BaseException {
|
|
22
21
|
constructor(opts) {
|
|
23
22
|
super({
|
|
@@ -92,47 +91,41 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
92
91
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
93
92
|
}
|
|
94
93
|
}
|
|
95
|
-
export
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
}
|
|
133
|
-
export var TaskState;
|
|
134
|
-
(function (TaskState) {
|
|
135
|
-
TaskState["CANCELED"] = "CANCELED";
|
|
136
|
-
TaskState["COMPLETED"] = "COMPLETED";
|
|
137
|
-
TaskState["IN_PROGRESS"] = "IN_PROGRESS";
|
|
138
|
-
})(TaskState || (TaskState = {}));
|
|
94
|
+
export const UnlockState = {
|
|
95
|
+
LOCKED: "LOCKED",
|
|
96
|
+
UNLOCKED: "UNLOCKED",
|
|
97
|
+
UNLOCKING: "UNLOCKING",
|
|
98
|
+
};
|
|
99
|
+
export const IpAddressAssignment = {
|
|
100
|
+
DHCP: "DHCP",
|
|
101
|
+
STATIC: "STATIC",
|
|
102
|
+
};
|
|
103
|
+
export const PhysicalConnectorType = {
|
|
104
|
+
QSFP: "QSFP",
|
|
105
|
+
RJ45: "RJ45",
|
|
106
|
+
RJ45_2: "RJ45_2",
|
|
107
|
+
SFP_PLUS: "SFP_PLUS",
|
|
108
|
+
WIFI: "WIFI",
|
|
109
|
+
};
|
|
110
|
+
export const InstanceStateName = {
|
|
111
|
+
PENDING: "PENDING",
|
|
112
|
+
RUNNING: "RUNNING",
|
|
113
|
+
SHUTTING_DOWN: "SHUTTING_DOWN",
|
|
114
|
+
STOPPED: "STOPPED",
|
|
115
|
+
STOPPING: "STOPPING",
|
|
116
|
+
TERMINATED: "TERMINATED",
|
|
117
|
+
};
|
|
118
|
+
export const ExecutionState = {
|
|
119
|
+
CANCELED: "CANCELED",
|
|
120
|
+
FAILED: "FAILED",
|
|
121
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
122
|
+
QUEUED: "QUEUED",
|
|
123
|
+
REJECTED: "REJECTED",
|
|
124
|
+
SUCCEEDED: "SUCCEEDED",
|
|
125
|
+
TIMED_OUT: "TIMED_OUT",
|
|
126
|
+
};
|
|
127
|
+
export const TaskState = {
|
|
128
|
+
CANCELED: "CANCELED",
|
|
129
|
+
COMPLETED: "COMPLETED",
|
|
130
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
131
|
+
};
|
|
@@ -14,13 +14,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* @public
|
|
17
|
+
* @enum
|
|
17
18
|
*/
|
|
18
|
-
export declare
|
|
19
|
-
ATTACHED
|
|
20
|
-
ATTACHING
|
|
21
|
-
DETACHED
|
|
22
|
-
DETACHING
|
|
23
|
-
}
|
|
19
|
+
export declare const AttachmentStatus: {
|
|
20
|
+
readonly ATTACHED: "ATTACHED";
|
|
21
|
+
readonly ATTACHING: "ATTACHING";
|
|
22
|
+
readonly DETACHED: "DETACHED";
|
|
23
|
+
readonly DETACHING: "DETACHING";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
24
29
|
/**
|
|
25
30
|
* @public
|
|
26
31
|
*/
|
|
@@ -243,29 +248,44 @@ export interface DescribeDeviceInput {
|
|
|
243
248
|
}
|
|
244
249
|
/**
|
|
245
250
|
* @public
|
|
251
|
+
* @enum
|
|
246
252
|
*/
|
|
247
|
-
export declare
|
|
248
|
-
LOCKED
|
|
249
|
-
UNLOCKED
|
|
250
|
-
UNLOCKING
|
|
251
|
-
}
|
|
253
|
+
export declare const UnlockState: {
|
|
254
|
+
readonly LOCKED: "LOCKED";
|
|
255
|
+
readonly UNLOCKED: "UNLOCKED";
|
|
256
|
+
readonly UNLOCKING: "UNLOCKING";
|
|
257
|
+
};
|
|
252
258
|
/**
|
|
253
259
|
* @public
|
|
254
260
|
*/
|
|
255
|
-
export
|
|
256
|
-
DHCP = "DHCP",
|
|
257
|
-
STATIC = "STATIC"
|
|
258
|
-
}
|
|
261
|
+
export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
|
|
259
262
|
/**
|
|
260
263
|
* @public
|
|
264
|
+
* @enum
|
|
261
265
|
*/
|
|
262
|
-
export declare
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
266
|
+
export declare const IpAddressAssignment: {
|
|
267
|
+
readonly DHCP: "DHCP";
|
|
268
|
+
readonly STATIC: "STATIC";
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
export type IpAddressAssignment = (typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
|
|
274
|
+
/**
|
|
275
|
+
* @public
|
|
276
|
+
* @enum
|
|
277
|
+
*/
|
|
278
|
+
export declare const PhysicalConnectorType: {
|
|
279
|
+
readonly QSFP: "QSFP";
|
|
280
|
+
readonly RJ45: "RJ45";
|
|
281
|
+
readonly RJ45_2: "RJ45_2";
|
|
282
|
+
readonly SFP_PLUS: "SFP_PLUS";
|
|
283
|
+
readonly WIFI: "WIFI";
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export type PhysicalConnectorType = (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
|
|
269
289
|
/**
|
|
270
290
|
* @public
|
|
271
291
|
* <p>The details about the physical network interface for the device.</p>
|
|
@@ -440,15 +460,20 @@ export interface SecurityGroupIdentifier {
|
|
|
440
460
|
}
|
|
441
461
|
/**
|
|
442
462
|
* @public
|
|
463
|
+
* @enum
|
|
443
464
|
*/
|
|
444
|
-
export declare
|
|
445
|
-
PENDING
|
|
446
|
-
RUNNING
|
|
447
|
-
SHUTTING_DOWN
|
|
448
|
-
STOPPED
|
|
449
|
-
STOPPING
|
|
450
|
-
TERMINATED
|
|
451
|
-
}
|
|
465
|
+
export declare const InstanceStateName: {
|
|
466
|
+
readonly PENDING: "PENDING";
|
|
467
|
+
readonly RUNNING: "RUNNING";
|
|
468
|
+
readonly SHUTTING_DOWN: "SHUTTING_DOWN";
|
|
469
|
+
readonly STOPPED: "STOPPED";
|
|
470
|
+
readonly STOPPING: "STOPPING";
|
|
471
|
+
readonly TERMINATED: "TERMINATED";
|
|
472
|
+
};
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
*/
|
|
476
|
+
export type InstanceStateName = (typeof InstanceStateName)[keyof typeof InstanceStateName];
|
|
452
477
|
/**
|
|
453
478
|
* @public
|
|
454
479
|
* <p>The description of the current state of an instance.</p>
|
|
@@ -605,16 +630,21 @@ export interface DescribeExecutionInput {
|
|
|
605
630
|
}
|
|
606
631
|
/**
|
|
607
632
|
* @public
|
|
633
|
+
* @enum
|
|
608
634
|
*/
|
|
609
|
-
export declare
|
|
610
|
-
CANCELED
|
|
611
|
-
FAILED
|
|
612
|
-
IN_PROGRESS
|
|
613
|
-
QUEUED
|
|
614
|
-
REJECTED
|
|
615
|
-
SUCCEEDED
|
|
616
|
-
TIMED_OUT
|
|
617
|
-
}
|
|
635
|
+
export declare const ExecutionState: {
|
|
636
|
+
readonly CANCELED: "CANCELED";
|
|
637
|
+
readonly FAILED: "FAILED";
|
|
638
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
639
|
+
readonly QUEUED: "QUEUED";
|
|
640
|
+
readonly REJECTED: "REJECTED";
|
|
641
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
642
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
643
|
+
};
|
|
644
|
+
/**
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
export type ExecutionState = (typeof ExecutionState)[keyof typeof ExecutionState];
|
|
618
648
|
/**
|
|
619
649
|
* @public
|
|
620
650
|
*/
|
|
@@ -655,12 +685,17 @@ export interface DescribeTaskInput {
|
|
|
655
685
|
}
|
|
656
686
|
/**
|
|
657
687
|
* @public
|
|
688
|
+
* @enum
|
|
658
689
|
*/
|
|
659
|
-
export declare
|
|
660
|
-
CANCELED
|
|
661
|
-
COMPLETED
|
|
662
|
-
IN_PROGRESS
|
|
663
|
-
}
|
|
690
|
+
export declare const TaskState: {
|
|
691
|
+
readonly CANCELED: "CANCELED";
|
|
692
|
+
readonly COMPLETED: "COMPLETED";
|
|
693
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
694
|
+
};
|
|
695
|
+
/**
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
export type TaskState = (typeof TaskState)[keyof typeof TaskState];
|
|
664
699
|
/**
|
|
665
700
|
* @public
|
|
666
701
|
*/
|
|
@@ -7,12 +7,14 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
ATTACHED
|
|
12
|
-
ATTACHING
|
|
13
|
-
DETACHED
|
|
14
|
-
DETACHING
|
|
15
|
-
}
|
|
10
|
+
export declare const AttachmentStatus: {
|
|
11
|
+
readonly ATTACHED: "ATTACHED";
|
|
12
|
+
readonly ATTACHING: "ATTACHING";
|
|
13
|
+
readonly DETACHED: "DETACHED";
|
|
14
|
+
readonly DETACHING: "DETACHING";
|
|
15
|
+
};
|
|
16
|
+
export type AttachmentStatus =
|
|
17
|
+
(typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
16
18
|
export interface CancelTaskInput {
|
|
17
19
|
taskId: string | undefined;
|
|
18
20
|
}
|
|
@@ -112,22 +114,27 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
112
114
|
export interface DescribeDeviceInput {
|
|
113
115
|
managedDeviceId: string | undefined;
|
|
114
116
|
}
|
|
115
|
-
export declare
|
|
116
|
-
LOCKED
|
|
117
|
-
UNLOCKED
|
|
118
|
-
UNLOCKING
|
|
119
|
-
}
|
|
120
|
-
export
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
117
|
+
export declare const UnlockState: {
|
|
118
|
+
readonly LOCKED: "LOCKED";
|
|
119
|
+
readonly UNLOCKED: "UNLOCKED";
|
|
120
|
+
readonly UNLOCKING: "UNLOCKING";
|
|
121
|
+
};
|
|
122
|
+
export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
|
|
123
|
+
export declare const IpAddressAssignment: {
|
|
124
|
+
readonly DHCP: "DHCP";
|
|
125
|
+
readonly STATIC: "STATIC";
|
|
126
|
+
};
|
|
127
|
+
export type IpAddressAssignment =
|
|
128
|
+
(typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
|
|
129
|
+
export declare const PhysicalConnectorType: {
|
|
130
|
+
readonly QSFP: "QSFP";
|
|
131
|
+
readonly RJ45: "RJ45";
|
|
132
|
+
readonly RJ45_2: "RJ45_2";
|
|
133
|
+
readonly SFP_PLUS: "SFP_PLUS";
|
|
134
|
+
readonly WIFI: "WIFI";
|
|
135
|
+
};
|
|
136
|
+
export type PhysicalConnectorType =
|
|
137
|
+
(typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
|
|
131
138
|
export interface PhysicalNetworkInterface {
|
|
132
139
|
physicalNetworkInterfaceId?: string;
|
|
133
140
|
physicalConnectorType?: PhysicalConnectorType | string;
|
|
@@ -173,14 +180,16 @@ export interface SecurityGroupIdentifier {
|
|
|
173
180
|
groupId?: string;
|
|
174
181
|
groupName?: string;
|
|
175
182
|
}
|
|
176
|
-
export declare
|
|
177
|
-
PENDING
|
|
178
|
-
RUNNING
|
|
179
|
-
SHUTTING_DOWN
|
|
180
|
-
STOPPED
|
|
181
|
-
STOPPING
|
|
182
|
-
TERMINATED
|
|
183
|
-
}
|
|
183
|
+
export declare const InstanceStateName: {
|
|
184
|
+
readonly PENDING: "PENDING";
|
|
185
|
+
readonly RUNNING: "RUNNING";
|
|
186
|
+
readonly SHUTTING_DOWN: "SHUTTING_DOWN";
|
|
187
|
+
readonly STOPPED: "STOPPED";
|
|
188
|
+
readonly STOPPING: "STOPPING";
|
|
189
|
+
readonly TERMINATED: "TERMINATED";
|
|
190
|
+
};
|
|
191
|
+
export type InstanceStateName =
|
|
192
|
+
(typeof InstanceStateName)[keyof typeof InstanceStateName];
|
|
184
193
|
export interface InstanceState {
|
|
185
194
|
code?: number;
|
|
186
195
|
name?: InstanceStateName | string;
|
|
@@ -211,15 +220,17 @@ export interface DescribeExecutionInput {
|
|
|
211
220
|
taskId: string | undefined;
|
|
212
221
|
managedDeviceId: string | undefined;
|
|
213
222
|
}
|
|
214
|
-
export declare
|
|
215
|
-
CANCELED
|
|
216
|
-
FAILED
|
|
217
|
-
IN_PROGRESS
|
|
218
|
-
QUEUED
|
|
219
|
-
REJECTED
|
|
220
|
-
SUCCEEDED
|
|
221
|
-
TIMED_OUT
|
|
222
|
-
}
|
|
223
|
+
export declare const ExecutionState: {
|
|
224
|
+
readonly CANCELED: "CANCELED";
|
|
225
|
+
readonly FAILED: "FAILED";
|
|
226
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
227
|
+
readonly QUEUED: "QUEUED";
|
|
228
|
+
readonly REJECTED: "REJECTED";
|
|
229
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
230
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
231
|
+
};
|
|
232
|
+
export type ExecutionState =
|
|
233
|
+
(typeof ExecutionState)[keyof typeof ExecutionState];
|
|
223
234
|
export interface DescribeExecutionOutput {
|
|
224
235
|
taskId?: string;
|
|
225
236
|
executionId?: string;
|
|
@@ -231,11 +242,12 @@ export interface DescribeExecutionOutput {
|
|
|
231
242
|
export interface DescribeTaskInput {
|
|
232
243
|
taskId: string | undefined;
|
|
233
244
|
}
|
|
234
|
-
export declare
|
|
235
|
-
CANCELED
|
|
236
|
-
COMPLETED
|
|
237
|
-
IN_PROGRESS
|
|
238
|
-
}
|
|
245
|
+
export declare const TaskState: {
|
|
246
|
+
readonly CANCELED: "CANCELED";
|
|
247
|
+
readonly COMPLETED: "COMPLETED";
|
|
248
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
249
|
+
};
|
|
250
|
+
export type TaskState = (typeof TaskState)[keyof typeof TaskState];
|
|
239
251
|
export interface DescribeTaskOutput {
|
|
240
252
|
taskId?: string;
|
|
241
253
|
taskArn?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snow-device-management",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snow Device Management Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|