@aws-sdk/client-snow-device-management 3.936.0 → 3.940.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
@@ -1001,6 +1001,51 @@ const paginateListExecutions = core.createPaginator(SnowDeviceManagementClient,
1001
1001
 
1002
1002
  const paginateListTasks = core.createPaginator(SnowDeviceManagementClient, ListTasksCommand, "nextToken", "nextToken", "maxResults");
1003
1003
 
1004
+ const AttachmentStatus = {
1005
+ ATTACHED: "ATTACHED",
1006
+ ATTACHING: "ATTACHING",
1007
+ DETACHED: "DETACHED",
1008
+ DETACHING: "DETACHING",
1009
+ };
1010
+ const UnlockState = {
1011
+ LOCKED: "LOCKED",
1012
+ UNLOCKED: "UNLOCKED",
1013
+ UNLOCKING: "UNLOCKING",
1014
+ };
1015
+ const IpAddressAssignment = {
1016
+ DHCP: "DHCP",
1017
+ STATIC: "STATIC",
1018
+ };
1019
+ const PhysicalConnectorType = {
1020
+ QSFP: "QSFP",
1021
+ RJ45: "RJ45",
1022
+ RJ45_2: "RJ45_2",
1023
+ SFP_PLUS: "SFP_PLUS",
1024
+ WIFI: "WIFI",
1025
+ };
1026
+ const InstanceStateName = {
1027
+ PENDING: "PENDING",
1028
+ RUNNING: "RUNNING",
1029
+ SHUTTING_DOWN: "SHUTTING_DOWN",
1030
+ STOPPED: "STOPPED",
1031
+ STOPPING: "STOPPING",
1032
+ TERMINATED: "TERMINATED",
1033
+ };
1034
+ const ExecutionState = {
1035
+ CANCELED: "CANCELED",
1036
+ FAILED: "FAILED",
1037
+ IN_PROGRESS: "IN_PROGRESS",
1038
+ QUEUED: "QUEUED",
1039
+ REJECTED: "REJECTED",
1040
+ SUCCEEDED: "SUCCEEDED",
1041
+ TIMED_OUT: "TIMED_OUT",
1042
+ };
1043
+ const TaskState = {
1044
+ CANCELED: "CANCELED",
1045
+ COMPLETED: "COMPLETED",
1046
+ IN_PROGRESS: "IN_PROGRESS",
1047
+ };
1048
+
1004
1049
  Object.defineProperty(exports, "$Command", {
1005
1050
  enumerable: true,
1006
1051
  get: function () { return smithyClient.Command; }
@@ -1010,25 +1055,32 @@ Object.defineProperty(exports, "__Client", {
1010
1055
  get: function () { return smithyClient.Client; }
1011
1056
  });
1012
1057
  exports.AccessDeniedException = AccessDeniedException$1;
1058
+ exports.AttachmentStatus = AttachmentStatus;
1013
1059
  exports.CancelTaskCommand = CancelTaskCommand;
1014
1060
  exports.CreateTaskCommand = CreateTaskCommand;
1015
1061
  exports.DescribeDeviceCommand = DescribeDeviceCommand;
1016
1062
  exports.DescribeDeviceEc2InstancesCommand = DescribeDeviceEc2InstancesCommand;
1017
1063
  exports.DescribeExecutionCommand = DescribeExecutionCommand;
1018
1064
  exports.DescribeTaskCommand = DescribeTaskCommand;
1065
+ exports.ExecutionState = ExecutionState;
1066
+ exports.InstanceStateName = InstanceStateName;
1019
1067
  exports.InternalServerException = InternalServerException$1;
1068
+ exports.IpAddressAssignment = IpAddressAssignment;
1020
1069
  exports.ListDeviceResourcesCommand = ListDeviceResourcesCommand;
1021
1070
  exports.ListDevicesCommand = ListDevicesCommand;
1022
1071
  exports.ListExecutionsCommand = ListExecutionsCommand;
1023
1072
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1024
1073
  exports.ListTasksCommand = ListTasksCommand;
1074
+ exports.PhysicalConnectorType = PhysicalConnectorType;
1025
1075
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1026
1076
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1027
1077
  exports.SnowDeviceManagement = SnowDeviceManagement;
1028
1078
  exports.SnowDeviceManagementClient = SnowDeviceManagementClient;
1029
1079
  exports.SnowDeviceManagementServiceException = SnowDeviceManagementServiceException$1;
1030
1080
  exports.TagResourceCommand = TagResourceCommand;
1081
+ exports.TaskState = TaskState;
1031
1082
  exports.ThrottlingException = ThrottlingException$1;
1083
+ exports.UnlockState = UnlockState;
1032
1084
  exports.UntagResourceCommand = UntagResourceCommand;
1033
1085
  exports.ValidationException = ValidationException$1;
1034
1086
  exports.paginateListDeviceResources = paginateListDeviceResources;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./SnowDeviceManagementClient";
2
2
  export * from "./SnowDeviceManagement";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { SnowDeviceManagementServiceException } from "./models/SnowDeviceManagementServiceException";
@@ -0,0 +1,44 @@
1
+ export const AttachmentStatus = {
2
+ ATTACHED: "ATTACHED",
3
+ ATTACHING: "ATTACHING",
4
+ DETACHED: "DETACHED",
5
+ DETACHING: "DETACHING",
6
+ };
7
+ export const UnlockState = {
8
+ LOCKED: "LOCKED",
9
+ UNLOCKED: "UNLOCKED",
10
+ UNLOCKING: "UNLOCKING",
11
+ };
12
+ export const IpAddressAssignment = {
13
+ DHCP: "DHCP",
14
+ STATIC: "STATIC",
15
+ };
16
+ export const PhysicalConnectorType = {
17
+ QSFP: "QSFP",
18
+ RJ45: "RJ45",
19
+ RJ45_2: "RJ45_2",
20
+ SFP_PLUS: "SFP_PLUS",
21
+ WIFI: "WIFI",
22
+ };
23
+ export const InstanceStateName = {
24
+ PENDING: "PENDING",
25
+ RUNNING: "RUNNING",
26
+ SHUTTING_DOWN: "SHUTTING_DOWN",
27
+ STOPPED: "STOPPED",
28
+ STOPPING: "STOPPING",
29
+ TERMINATED: "TERMINATED",
30
+ };
31
+ export const ExecutionState = {
32
+ CANCELED: "CANCELED",
33
+ FAILED: "FAILED",
34
+ IN_PROGRESS: "IN_PROGRESS",
35
+ QUEUED: "QUEUED",
36
+ REJECTED: "REJECTED",
37
+ SUCCEEDED: "SUCCEEDED",
38
+ TIMED_OUT: "TIMED_OUT",
39
+ };
40
+ export const TaskState = {
41
+ CANCELED: "CANCELED",
42
+ COMPLETED: "COMPLETED",
43
+ IN_PROGRESS: "IN_PROGRESS",
44
+ };
@@ -1,44 +1 @@
1
- export const AttachmentStatus = {
2
- ATTACHED: "ATTACHED",
3
- ATTACHING: "ATTACHING",
4
- DETACHED: "DETACHED",
5
- DETACHING: "DETACHING",
6
- };
7
- export const UnlockState = {
8
- LOCKED: "LOCKED",
9
- UNLOCKED: "UNLOCKED",
10
- UNLOCKING: "UNLOCKING",
11
- };
12
- export const IpAddressAssignment = {
13
- DHCP: "DHCP",
14
- STATIC: "STATIC",
15
- };
16
- export const PhysicalConnectorType = {
17
- QSFP: "QSFP",
18
- RJ45: "RJ45",
19
- RJ45_2: "RJ45_2",
20
- SFP_PLUS: "SFP_PLUS",
21
- WIFI: "WIFI",
22
- };
23
- export const InstanceStateName = {
24
- PENDING: "PENDING",
25
- RUNNING: "RUNNING",
26
- SHUTTING_DOWN: "SHUTTING_DOWN",
27
- STOPPED: "STOPPED",
28
- STOPPING: "STOPPING",
29
- TERMINATED: "TERMINATED",
30
- };
31
- export const ExecutionState = {
32
- CANCELED: "CANCELED",
33
- FAILED: "FAILED",
34
- IN_PROGRESS: "IN_PROGRESS",
35
- QUEUED: "QUEUED",
36
- REJECTED: "REJECTED",
37
- SUCCEEDED: "SUCCEEDED",
38
- TIMED_OUT: "TIMED_OUT",
39
- };
40
- export const TaskState = {
41
- CANCELED: "CANCELED",
42
- COMPLETED: "COMPLETED",
43
- IN_PROGRESS: "IN_PROGRESS",
44
- };
1
+ export {};
@@ -10,6 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { SnowDeviceManagementExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
+ export * from "./models/enums";
13
14
  export * from "./models/errors";
14
15
  export type * from "./models/models_0";
15
16
  export { SnowDeviceManagementServiceException } from "./models/SnowDeviceManagementServiceException";
@@ -0,0 +1,100 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AttachmentStatus: {
6
+ readonly ATTACHED: "ATTACHED";
7
+ readonly ATTACHING: "ATTACHING";
8
+ readonly DETACHED: "DETACHED";
9
+ readonly DETACHING: "DETACHING";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const UnlockState: {
20
+ readonly LOCKED: "LOCKED";
21
+ readonly UNLOCKED: "UNLOCKED";
22
+ readonly UNLOCKING: "UNLOCKING";
23
+ };
24
+ /**
25
+ * @public
26
+ */
27
+ export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
28
+ /**
29
+ * @public
30
+ * @enum
31
+ */
32
+ export declare const IpAddressAssignment: {
33
+ readonly DHCP: "DHCP";
34
+ readonly STATIC: "STATIC";
35
+ };
36
+ /**
37
+ * @public
38
+ */
39
+ export type IpAddressAssignment = (typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
40
+ /**
41
+ * @public
42
+ * @enum
43
+ */
44
+ export declare const PhysicalConnectorType: {
45
+ readonly QSFP: "QSFP";
46
+ readonly RJ45: "RJ45";
47
+ readonly RJ45_2: "RJ45_2";
48
+ readonly SFP_PLUS: "SFP_PLUS";
49
+ readonly WIFI: "WIFI";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type PhysicalConnectorType = (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const InstanceStateName: {
60
+ readonly PENDING: "PENDING";
61
+ readonly RUNNING: "RUNNING";
62
+ readonly SHUTTING_DOWN: "SHUTTING_DOWN";
63
+ readonly STOPPED: "STOPPED";
64
+ readonly STOPPING: "STOPPING";
65
+ readonly TERMINATED: "TERMINATED";
66
+ };
67
+ /**
68
+ * @public
69
+ */
70
+ export type InstanceStateName = (typeof InstanceStateName)[keyof typeof InstanceStateName];
71
+ /**
72
+ * @public
73
+ * @enum
74
+ */
75
+ export declare const ExecutionState: {
76
+ readonly CANCELED: "CANCELED";
77
+ readonly FAILED: "FAILED";
78
+ readonly IN_PROGRESS: "IN_PROGRESS";
79
+ readonly QUEUED: "QUEUED";
80
+ readonly REJECTED: "REJECTED";
81
+ readonly SUCCEEDED: "SUCCEEDED";
82
+ readonly TIMED_OUT: "TIMED_OUT";
83
+ };
84
+ /**
85
+ * @public
86
+ */
87
+ export type ExecutionState = (typeof ExecutionState)[keyof typeof ExecutionState];
88
+ /**
89
+ * @public
90
+ * @enum
91
+ */
92
+ export declare const TaskState: {
93
+ readonly CANCELED: "CANCELED";
94
+ readonly COMPLETED: "COMPLETED";
95
+ readonly IN_PROGRESS: "IN_PROGRESS";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type TaskState = (typeof TaskState)[keyof typeof TaskState];
@@ -1,17 +1,4 @@
1
- /**
2
- * @public
3
- * @enum
4
- */
5
- export declare const AttachmentStatus: {
6
- readonly ATTACHED: "ATTACHED";
7
- readonly ATTACHING: "ATTACHING";
8
- readonly DETACHED: "DETACHED";
9
- readonly DETACHING: "DETACHING";
10
- };
11
- /**
12
- * @public
13
- */
14
- export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
1
+ import { AttachmentStatus, ExecutionState, InstanceStateName, IpAddressAssignment, PhysicalConnectorType, TaskState, UnlockState } from "./enums";
15
2
  /**
16
3
  * @public
17
4
  */
@@ -193,46 +180,6 @@ export interface DescribeDeviceInput {
193
180
  */
194
181
  managedDeviceId: string | undefined;
195
182
  }
196
- /**
197
- * @public
198
- * @enum
199
- */
200
- export declare const UnlockState: {
201
- readonly LOCKED: "LOCKED";
202
- readonly UNLOCKED: "UNLOCKED";
203
- readonly UNLOCKING: "UNLOCKING";
204
- };
205
- /**
206
- * @public
207
- */
208
- export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
209
- /**
210
- * @public
211
- * @enum
212
- */
213
- export declare const IpAddressAssignment: {
214
- readonly DHCP: "DHCP";
215
- readonly STATIC: "STATIC";
216
- };
217
- /**
218
- * @public
219
- */
220
- export type IpAddressAssignment = (typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
221
- /**
222
- * @public
223
- * @enum
224
- */
225
- export declare const PhysicalConnectorType: {
226
- readonly QSFP: "QSFP";
227
- readonly RJ45: "RJ45";
228
- readonly RJ45_2: "RJ45_2";
229
- readonly SFP_PLUS: "SFP_PLUS";
230
- readonly WIFI: "WIFI";
231
- };
232
- /**
233
- * @public
234
- */
235
- export type PhysicalConnectorType = (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
236
183
  /**
237
184
  * <p>The details about the physical network interface for the device.</p>
238
185
  * @public
@@ -436,22 +383,6 @@ export interface SecurityGroupIdentifier {
436
383
  */
437
384
  groupName?: string | undefined;
438
385
  }
439
- /**
440
- * @public
441
- * @enum
442
- */
443
- export declare const InstanceStateName: {
444
- readonly PENDING: "PENDING";
445
- readonly RUNNING: "RUNNING";
446
- readonly SHUTTING_DOWN: "SHUTTING_DOWN";
447
- readonly STOPPED: "STOPPED";
448
- readonly STOPPING: "STOPPING";
449
- readonly TERMINATED: "TERMINATED";
450
- };
451
- /**
452
- * @public
453
- */
454
- export type InstanceStateName = (typeof InstanceStateName)[keyof typeof InstanceStateName];
455
386
  /**
456
387
  * <p>The description of the current state of an instance.</p>
457
388
  * @public
@@ -626,23 +557,6 @@ export interface DescribeExecutionInput {
626
557
  */
627
558
  managedDeviceId: string | undefined;
628
559
  }
629
- /**
630
- * @public
631
- * @enum
632
- */
633
- export declare const ExecutionState: {
634
- readonly CANCELED: "CANCELED";
635
- readonly FAILED: "FAILED";
636
- readonly IN_PROGRESS: "IN_PROGRESS";
637
- readonly QUEUED: "QUEUED";
638
- readonly REJECTED: "REJECTED";
639
- readonly SUCCEEDED: "SUCCEEDED";
640
- readonly TIMED_OUT: "TIMED_OUT";
641
- };
642
- /**
643
- * @public
644
- */
645
- export type ExecutionState = (typeof ExecutionState)[keyof typeof ExecutionState];
646
560
  /**
647
561
  * @public
648
562
  */
@@ -688,19 +602,6 @@ export interface DescribeTaskInput {
688
602
  */
689
603
  taskId: string | undefined;
690
604
  }
691
- /**
692
- * @public
693
- * @enum
694
- */
695
- export declare const TaskState: {
696
- readonly CANCELED: "CANCELED";
697
- readonly COMPLETED: "COMPLETED";
698
- readonly IN_PROGRESS: "IN_PROGRESS";
699
- };
700
- /**
701
- * @public
702
- */
703
- export type TaskState = (typeof TaskState)[keyof typeof TaskState];
704
605
  /**
705
606
  * @public
706
607
  */
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SnowDeviceManagementExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { SnowDeviceManagementServiceException } from "./models/SnowDeviceManagementServiceException";
@@ -0,0 +1,56 @@
1
+ export declare const AttachmentStatus: {
2
+ readonly ATTACHED: "ATTACHED";
3
+ readonly ATTACHING: "ATTACHING";
4
+ readonly DETACHED: "DETACHED";
5
+ readonly DETACHING: "DETACHING";
6
+ };
7
+ export type AttachmentStatus =
8
+ (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
9
+ export declare const UnlockState: {
10
+ readonly LOCKED: "LOCKED";
11
+ readonly UNLOCKED: "UNLOCKED";
12
+ readonly UNLOCKING: "UNLOCKING";
13
+ };
14
+ export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
15
+ export declare const IpAddressAssignment: {
16
+ readonly DHCP: "DHCP";
17
+ readonly STATIC: "STATIC";
18
+ };
19
+ export type IpAddressAssignment =
20
+ (typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
21
+ export declare const PhysicalConnectorType: {
22
+ readonly QSFP: "QSFP";
23
+ readonly RJ45: "RJ45";
24
+ readonly RJ45_2: "RJ45_2";
25
+ readonly SFP_PLUS: "SFP_PLUS";
26
+ readonly WIFI: "WIFI";
27
+ };
28
+ export type PhysicalConnectorType =
29
+ (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
30
+ export declare const InstanceStateName: {
31
+ readonly PENDING: "PENDING";
32
+ readonly RUNNING: "RUNNING";
33
+ readonly SHUTTING_DOWN: "SHUTTING_DOWN";
34
+ readonly STOPPED: "STOPPED";
35
+ readonly STOPPING: "STOPPING";
36
+ readonly TERMINATED: "TERMINATED";
37
+ };
38
+ export type InstanceStateName =
39
+ (typeof InstanceStateName)[keyof typeof InstanceStateName];
40
+ export declare const ExecutionState: {
41
+ readonly CANCELED: "CANCELED";
42
+ readonly FAILED: "FAILED";
43
+ readonly IN_PROGRESS: "IN_PROGRESS";
44
+ readonly QUEUED: "QUEUED";
45
+ readonly REJECTED: "REJECTED";
46
+ readonly SUCCEEDED: "SUCCEEDED";
47
+ readonly TIMED_OUT: "TIMED_OUT";
48
+ };
49
+ export type ExecutionState =
50
+ (typeof ExecutionState)[keyof typeof ExecutionState];
51
+ export declare const TaskState: {
52
+ readonly CANCELED: "CANCELED";
53
+ readonly COMPLETED: "COMPLETED";
54
+ readonly IN_PROGRESS: "IN_PROGRESS";
55
+ };
56
+ export type TaskState = (typeof TaskState)[keyof typeof TaskState];
@@ -1,11 +1,12 @@
1
- export declare const AttachmentStatus: {
2
- readonly ATTACHED: "ATTACHED";
3
- readonly ATTACHING: "ATTACHING";
4
- readonly DETACHED: "DETACHED";
5
- readonly DETACHING: "DETACHING";
6
- };
7
- export type AttachmentStatus =
8
- (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
1
+ import {
2
+ AttachmentStatus,
3
+ ExecutionState,
4
+ InstanceStateName,
5
+ IpAddressAssignment,
6
+ PhysicalConnectorType,
7
+ TaskState,
8
+ UnlockState,
9
+ } from "./enums";
9
10
  export interface CancelTaskInput {
10
11
  taskId: string | undefined;
11
12
  }
@@ -65,27 +66,6 @@ export interface CreateTaskOutput {
65
66
  export interface DescribeDeviceInput {
66
67
  managedDeviceId: string | undefined;
67
68
  }
68
- export declare const UnlockState: {
69
- readonly LOCKED: "LOCKED";
70
- readonly UNLOCKED: "UNLOCKED";
71
- readonly UNLOCKING: "UNLOCKING";
72
- };
73
- export type UnlockState = (typeof UnlockState)[keyof typeof UnlockState];
74
- export declare const IpAddressAssignment: {
75
- readonly DHCP: "DHCP";
76
- readonly STATIC: "STATIC";
77
- };
78
- export type IpAddressAssignment =
79
- (typeof IpAddressAssignment)[keyof typeof IpAddressAssignment];
80
- export declare const PhysicalConnectorType: {
81
- readonly QSFP: "QSFP";
82
- readonly RJ45: "RJ45";
83
- readonly RJ45_2: "RJ45_2";
84
- readonly SFP_PLUS: "SFP_PLUS";
85
- readonly WIFI: "WIFI";
86
- };
87
- export type PhysicalConnectorType =
88
- (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
89
69
  export interface PhysicalNetworkInterface {
90
70
  physicalNetworkInterfaceId?: string | undefined;
91
71
  physicalConnectorType?: PhysicalConnectorType | undefined;
@@ -131,16 +111,6 @@ export interface SecurityGroupIdentifier {
131
111
  groupId?: string | undefined;
132
112
  groupName?: string | undefined;
133
113
  }
134
- export declare const InstanceStateName: {
135
- readonly PENDING: "PENDING";
136
- readonly RUNNING: "RUNNING";
137
- readonly SHUTTING_DOWN: "SHUTTING_DOWN";
138
- readonly STOPPED: "STOPPED";
139
- readonly STOPPING: "STOPPING";
140
- readonly TERMINATED: "TERMINATED";
141
- };
142
- export type InstanceStateName =
143
- (typeof InstanceStateName)[keyof typeof InstanceStateName];
144
114
  export interface InstanceState {
145
115
  code?: number | undefined;
146
116
  name?: InstanceStateName | undefined;
@@ -171,17 +141,6 @@ export interface DescribeExecutionInput {
171
141
  taskId: string | undefined;
172
142
  managedDeviceId: string | undefined;
173
143
  }
174
- export declare const ExecutionState: {
175
- readonly CANCELED: "CANCELED";
176
- readonly FAILED: "FAILED";
177
- readonly IN_PROGRESS: "IN_PROGRESS";
178
- readonly QUEUED: "QUEUED";
179
- readonly REJECTED: "REJECTED";
180
- readonly SUCCEEDED: "SUCCEEDED";
181
- readonly TIMED_OUT: "TIMED_OUT";
182
- };
183
- export type ExecutionState =
184
- (typeof ExecutionState)[keyof typeof ExecutionState];
185
144
  export interface DescribeExecutionOutput {
186
145
  taskId?: string | undefined;
187
146
  executionId?: string | undefined;
@@ -193,12 +152,6 @@ export interface DescribeExecutionOutput {
193
152
  export interface DescribeTaskInput {
194
153
  taskId: string | undefined;
195
154
  }
196
- export declare const TaskState: {
197
- readonly CANCELED: "CANCELED";
198
- readonly COMPLETED: "COMPLETED";
199
- readonly IN_PROGRESS: "IN_PROGRESS";
200
- };
201
- export type TaskState = (typeof TaskState)[keyof typeof TaskState];
202
155
  export interface DescribeTaskOutput {
203
156
  taskId?: string | undefined;
204
157
  taskArn?: string | undefined;
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.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-snow-device-management",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",