@aws-sdk/client-iotdeviceadvisor 3.428.0 → 3.430.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.
@@ -110,7 +110,7 @@ export interface SuiteDefinitionConfiguration {
110
110
  * @public
111
111
  * <p>Sets the MQTT protocol that is configured in the suite definition.</p>
112
112
  */
113
- protocol?: Protocol | string;
113
+ protocol?: Protocol;
114
114
  }
115
115
  /**
116
116
  * @public
@@ -214,7 +214,7 @@ export interface GetEndpointRequest {
214
214
  * @public
215
215
  * <p>The authentication method used during the device connection.</p>
216
216
  */
217
- authenticationMethod?: AuthenticationMethod | string;
217
+ authenticationMethod?: AuthenticationMethod;
218
218
  }
219
219
  /**
220
220
  * @public
@@ -426,7 +426,7 @@ export interface TestCaseScenario {
426
426
  * </li>
427
427
  * </ul>
428
428
  */
429
- testCaseScenarioType?: TestCaseScenarioType | string;
429
+ testCaseScenarioType?: TestCaseScenarioType;
430
430
  /**
431
431
  * @public
432
432
  * <p>Provides the test case scenario status. Status is one of the following:</p>
@@ -468,7 +468,7 @@ export interface TestCaseScenario {
468
468
  * </li>
469
469
  * </ul>
470
470
  */
471
- status?: TestCaseScenarioStatus | string;
471
+ status?: TestCaseScenarioStatus;
472
472
  /**
473
473
  * @public
474
474
  * <p>Provides test case scenario failure result.</p>
@@ -541,7 +541,7 @@ export interface TestCaseRun {
541
541
  * </li>
542
542
  * </ul>
543
543
  */
544
- status?: Status | string;
544
+ status?: Status;
545
545
  /**
546
546
  * @public
547
547
  * <p>Provides test case run start time.</p>
@@ -653,7 +653,7 @@ export interface GetSuiteRunResponse {
653
653
  * @public
654
654
  * <p>Status for the test suite run.</p>
655
655
  */
656
- status?: SuiteRunStatus | string;
656
+ status?: SuiteRunStatus;
657
657
  /**
658
658
  * @public
659
659
  * <p>Error reason for any test suite run failure.</p>
@@ -739,7 +739,7 @@ export interface SuiteDefinitionInformation {
739
739
  * @public
740
740
  * <p>Gets the MQTT protocol that is configured in the suite definition.</p>
741
741
  */
742
- protocol?: Protocol | string;
742
+ protocol?: Protocol;
743
743
  /**
744
744
  * @public
745
745
  * <p>Date (in Unix epoch time) when the test suite was created.</p>
@@ -834,7 +834,7 @@ export interface SuiteRunInformation {
834
834
  * @public
835
835
  * <p>Status of the suite run.</p>
836
836
  */
837
- status?: SuiteRunStatus | string;
837
+ status?: SuiteRunStatus;
838
838
  /**
839
839
  * @public
840
840
  * <p>Number of test cases that passed in the suite run.</p>
@@ -30,7 +30,7 @@ export interface SuiteDefinitionConfiguration {
30
30
  isLongDurationTest?: boolean;
31
31
  rootGroup: string | undefined;
32
32
  devicePermissionRoleArn: string | undefined;
33
- protocol?: Protocol | string;
33
+ protocol?: Protocol;
34
34
  }
35
35
  export interface CreateSuiteDefinitionRequest {
36
36
  suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
@@ -64,7 +64,7 @@ export interface GetEndpointRequest {
64
64
  thingArn?: string;
65
65
  certificateArn?: string;
66
66
  deviceRoleArn?: string;
67
- authenticationMethod?: AuthenticationMethod | string;
67
+ authenticationMethod?: AuthenticationMethod;
68
68
  }
69
69
  export interface GetEndpointResponse {
70
70
  endpoint?: string;
@@ -145,8 +145,8 @@ export type TestCaseScenarioType =
145
145
  (typeof TestCaseScenarioType)[keyof typeof TestCaseScenarioType];
146
146
  export interface TestCaseScenario {
147
147
  testCaseScenarioId?: string;
148
- testCaseScenarioType?: TestCaseScenarioType | string;
149
- status?: TestCaseScenarioStatus | string;
148
+ testCaseScenarioType?: TestCaseScenarioType;
149
+ status?: TestCaseScenarioStatus;
150
150
  failure?: string;
151
151
  systemMessage?: string;
152
152
  }
@@ -154,7 +154,7 @@ export interface TestCaseRun {
154
154
  testCaseRunId?: string;
155
155
  testCaseDefinitionId?: string;
156
156
  testCaseDefinitionName?: string;
157
- status?: Status | string;
157
+ status?: Status;
158
158
  startTime?: Date;
159
159
  endTime?: Date;
160
160
  logUrl?: string;
@@ -179,7 +179,7 @@ export interface GetSuiteRunResponse {
179
179
  testResult?: TestResult;
180
180
  startTime?: Date;
181
181
  endTime?: Date;
182
- status?: SuiteRunStatus | string;
182
+ status?: SuiteRunStatus;
183
183
  errorReason?: string;
184
184
  tags?: Record<string, string>;
185
185
  }
@@ -200,7 +200,7 @@ export interface SuiteDefinitionInformation {
200
200
  defaultDevices?: DeviceUnderTest[];
201
201
  intendedForQualification?: boolean;
202
202
  isLongDurationTest?: boolean;
203
- protocol?: Protocol | string;
203
+ protocol?: Protocol;
204
204
  createdAt?: Date;
205
205
  }
206
206
  export interface ListSuiteDefinitionsResponse {
@@ -221,7 +221,7 @@ export interface SuiteRunInformation {
221
221
  createdAt?: Date;
222
222
  startedAt?: Date;
223
223
  endAt?: Date;
224
- status?: SuiteRunStatus | string;
224
+ status?: SuiteRunStatus;
225
225
  passed?: number;
226
226
  failed?: number;
227
227
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iotdeviceadvisor",
3
3
  "description": "AWS SDK for JavaScript Iotdeviceadvisor Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.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,28 +21,28 @@
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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"