@aws-sdk/client-iotdeviceadvisor 3.39.0 → 3.43.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/CHANGELOG.md +41 -0
- package/README.md +9 -1
- package/dist-cjs/IotDeviceAdvisor.js +15 -0
- package/dist-cjs/commands/GetEndpointCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +74 -5
- package/dist-cjs/models/models_0.js +19 -7
- package/dist-cjs/protocols/Aws_restJson1.js +88 -1
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/IotDeviceAdvisor.js +15 -0
- package/dist-es/commands/GetEndpointCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +74 -5
- package/dist-es/models/models_0.js +12 -4
- package/dist-es/protocols/Aws_restJson1.js +103 -1
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/IotDeviceAdvisor.d.ts +31 -3
- package/dist-types/IotDeviceAdvisorClient.d.ts +20 -3
- package/dist-types/commands/CreateSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/GetEndpointCommand.d.ts +35 -0
- package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/GetSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/GetSuiteRunReportCommand.d.ts +2 -1
- package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSuiteRunsCommand.d.ts +4 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/StopSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +129 -60
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/IotDeviceAdvisor.d.ts +5 -0
- package/dist-types/ts3.4/IotDeviceAdvisorClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -11
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -100,6 +100,35 @@ export declare namespace DeleteSuiteDefinitionResponse {
|
|
|
100
100
|
|
|
101
101
|
const filterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
|
|
102
102
|
}
|
|
103
|
+
export interface GetEndpointRequest {
|
|
104
|
+
|
|
105
|
+
thingArn?: string;
|
|
106
|
+
|
|
107
|
+
certificateArn?: string;
|
|
108
|
+
}
|
|
109
|
+
export declare namespace GetEndpointRequest {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: GetEndpointRequest) => any;
|
|
112
|
+
}
|
|
113
|
+
export interface GetEndpointResponse {
|
|
114
|
+
|
|
115
|
+
endpoint?: string;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace GetEndpointResponse {
|
|
118
|
+
|
|
119
|
+
const filterSensitiveLog: (obj: GetEndpointResponse) => any;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
123
|
+
name: "ResourceNotFoundException";
|
|
124
|
+
$fault: "client";
|
|
125
|
+
|
|
126
|
+
message?: string;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace ResourceNotFoundException {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
131
|
+
}
|
|
103
132
|
export interface GetSuiteDefinitionRequest {
|
|
104
133
|
|
|
105
134
|
suiteDefinitionId: string | undefined;
|
|
@@ -134,17 +163,6 @@ export declare namespace GetSuiteDefinitionResponse {
|
|
|
134
163
|
|
|
135
164
|
const filterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
|
|
136
165
|
}
|
|
137
|
-
|
|
138
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
139
|
-
name: "ResourceNotFoundException";
|
|
140
|
-
$fault: "client";
|
|
141
|
-
|
|
142
|
-
message?: string;
|
|
143
|
-
}
|
|
144
|
-
export declare namespace ResourceNotFoundException {
|
|
145
|
-
|
|
146
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
147
|
-
}
|
|
148
166
|
export interface GetSuiteRunRequest {
|
|
149
167
|
|
|
150
168
|
suiteDefinitionId: string | undefined;
|
|
@@ -172,6 +190,8 @@ export interface SuiteRunConfiguration {
|
|
|
172
190
|
primaryDevice?: DeviceUnderTest;
|
|
173
191
|
|
|
174
192
|
selectedTestList?: string[];
|
|
193
|
+
|
|
194
|
+
parallelRun?: boolean;
|
|
175
195
|
}
|
|
176
196
|
export declare namespace SuiteRunConfiguration {
|
|
177
197
|
|
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput } from "../commands/CreateSuiteDefinitionCommand";
|
|
4
4
|
import { DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput } from "../commands/DeleteSuiteDefinitionCommand";
|
|
5
|
+
import { GetEndpointCommandInput, GetEndpointCommandOutput } from "../commands/GetEndpointCommand";
|
|
5
6
|
import { GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput } from "../commands/GetSuiteDefinitionCommand";
|
|
6
7
|
import { GetSuiteRunCommandInput, GetSuiteRunCommandOutput } from "../commands/GetSuiteRunCommand";
|
|
7
8
|
import { GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput } from "../commands/GetSuiteRunReportCommand";
|
|
@@ -15,6 +16,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
15
16
|
import { UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput } from "../commands/UpdateSuiteDefinitionCommand";
|
|
16
17
|
export declare const serializeAws_restJson1CreateSuiteDefinitionCommand: (input: CreateSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
18
|
export declare const serializeAws_restJson1DeleteSuiteDefinitionCommand: (input: DeleteSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1GetEndpointCommand: (input: GetEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
20
|
export declare const serializeAws_restJson1GetSuiteDefinitionCommand: (input: GetSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
21
|
export declare const serializeAws_restJson1GetSuiteRunCommand: (input: GetSuiteRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
22
|
export declare const serializeAws_restJson1GetSuiteRunReportCommand: (input: GetSuiteRunReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -28,6 +30,7 @@ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagRe
|
|
|
28
30
|
export declare const serializeAws_restJson1UpdateSuiteDefinitionCommand: (input: UpdateSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
31
|
export declare const deserializeAws_restJson1CreateSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSuiteDefinitionCommandOutput>;
|
|
30
32
|
export declare const deserializeAws_restJson1DeleteSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSuiteDefinitionCommandOutput>;
|
|
33
|
+
export declare const deserializeAws_restJson1GetEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEndpointCommandOutput>;
|
|
31
34
|
export declare const deserializeAws_restJson1GetSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteDefinitionCommandOutput>;
|
|
32
35
|
export declare const deserializeAws_restJson1GetSuiteRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteRunCommandOutput>;
|
|
33
36
|
export declare const deserializeAws_restJson1GetSuiteRunReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteRunReportCommandOutput>;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: IotDeviceAdvisorClientConfig) =>
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: IotDeviceAdvisorClientConfig) =>
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: IotDeviceAdvisorClientConfig) =>
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
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.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,32 +21,32 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.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-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|