@aws-sdk/client-iotfleetwise 3.828.0 → 3.830.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 +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/GetVehicleStatusCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +10 -10
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -47,7 +47,7 @@ declare const GetVehicleStatusCommand_base: {
|
|
|
47
47
|
* // { // VehicleStatus
|
|
48
48
|
* // campaignName: "STRING_VALUE",
|
|
49
49
|
* // vehicleName: "STRING_VALUE",
|
|
50
|
-
* // status: "CREATED" || "READY" || "HEALTHY" || "SUSPENDED" || "DELETING",
|
|
50
|
+
* // status: "CREATED" || "READY" || "HEALTHY" || "SUSPENDED" || "DELETING" || "READY_FOR_CHECKIN",
|
|
51
51
|
* // },
|
|
52
52
|
* // ],
|
|
53
53
|
* // nextToken: "STRING_VALUE",
|
|
@@ -3,9 +3,9 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provi
|
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface ClientInputEndpointParameters {
|
|
6
|
-
region?: string | Provider<string>;
|
|
7
|
-
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
7
|
+
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
9
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
10
|
}
|
|
11
11
|
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
@@ -31,8 +31,8 @@ export declare const commonParams: {
|
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
export interface EndpointParameters extends __EndpointParameters {
|
|
34
|
-
Region?: string;
|
|
35
|
-
UseDualStack?: boolean;
|
|
36
|
-
UseFIPS?: boolean;
|
|
37
|
-
Endpoint?: string;
|
|
34
|
+
Region?: string | undefined;
|
|
35
|
+
UseDualStack?: boolean | undefined;
|
|
36
|
+
UseFIPS?: boolean | undefined;
|
|
37
|
+
Endpoint?: string | undefined;
|
|
38
38
|
}
|
|
@@ -1950,9 +1950,7 @@ export interface UpdateCampaignResponse {
|
|
|
1950
1950
|
* </li>
|
|
1951
1951
|
* <li>
|
|
1952
1952
|
* <p>
|
|
1953
|
-
* <code>WAITING_FOR_APPROVAL</code> - After a campaign
|
|
1954
|
-
* <code>WAITING_FOR_APPROVAL</code> state. To allow Amazon Web Services IoT FleetWise to deploy the
|
|
1955
|
-
* campaign to the target vehicle or fleet, use the API operation to approve the campaign.
|
|
1953
|
+
* <code>WAITING_FOR_APPROVAL</code> - After you create a campaign, it enters this state. Use the API operation to approve the campaign for deployment to the target vehicle or fleet.
|
|
1956
1954
|
* </p>
|
|
1957
1955
|
* </li>
|
|
1958
1956
|
* <li>
|
|
@@ -4429,6 +4427,7 @@ export declare const VehicleState: {
|
|
|
4429
4427
|
readonly DELETING: "DELETING";
|
|
4430
4428
|
readonly HEALTHY: "HEALTHY";
|
|
4431
4429
|
readonly READY: "READY";
|
|
4430
|
+
readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
|
|
4432
4431
|
readonly SUSPENDED: "SUSPENDED";
|
|
4433
4432
|
};
|
|
4434
4433
|
/**
|
|
@@ -4455,27 +4454,28 @@ export interface VehicleStatus {
|
|
|
4455
4454
|
* <ul>
|
|
4456
4455
|
* <li>
|
|
4457
4456
|
* <p>
|
|
4458
|
-
* <code>CREATED</code> - The campaign
|
|
4459
|
-
* approved. </p>
|
|
4457
|
+
* <code>CREATED</code> - The campaign exists but is not yet approved.</p>
|
|
4460
4458
|
* </li>
|
|
4461
4459
|
* <li>
|
|
4462
4460
|
* <p>
|
|
4463
|
-
* <code>READY</code> - The campaign
|
|
4464
|
-
* the vehicle.</p>
|
|
4461
|
+
* <code>READY</code> - The campaign is approved but has not been deployed to the vehicle. Data has not arrived at the vehicle yet.</p>
|
|
4465
4462
|
* </li>
|
|
4466
4463
|
* <li>
|
|
4467
4464
|
* <p>
|
|
4468
|
-
* <code>HEALTHY</code> - The campaign
|
|
4465
|
+
* <code>HEALTHY</code> - The campaign is deployed to the vehicle.</p>
|
|
4469
4466
|
* </li>
|
|
4470
4467
|
* <li>
|
|
4471
4468
|
* <p>
|
|
4472
|
-
* <code>SUSPENDED</code> - The campaign
|
|
4473
|
-
* paused. </p>
|
|
4469
|
+
* <code>SUSPENDED</code> - The campaign is suspended and data collection is paused.</p>
|
|
4474
4470
|
* </li>
|
|
4475
4471
|
* <li>
|
|
4476
4472
|
* <p>
|
|
4477
4473
|
* <code>DELETING</code> - The campaign is being removed from the vehicle.</p>
|
|
4478
4474
|
* </li>
|
|
4475
|
+
* <li>
|
|
4476
|
+
* <p>
|
|
4477
|
+
* <code>READY_FOR_CHECKIN</code> - The campaign is approved and waiting for vehicle check-in before deployment.</p>
|
|
4478
|
+
* </li>
|
|
4479
4479
|
* </ul>
|
|
4480
4480
|
* @public
|
|
4481
4481
|
*/
|
|
@@ -15,8 +15,8 @@ export declare const getRuntimeConfig: (config: IoTFleetWiseClientConfig) => {
|
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
19
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
cacheMiddleware?: boolean | undefined;
|
|
22
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -17,8 +17,8 @@ export declare const getRuntimeConfig: (config: IoTFleetWiseClientConfig) => {
|
|
|
17
17
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
18
|
disableHostPrefix: boolean;
|
|
19
19
|
serviceId: string;
|
|
20
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
21
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
20
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
21
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
Provider,
|
|
6
6
|
} from "@smithy/types";
|
|
7
7
|
export interface ClientInputEndpointParameters {
|
|
8
|
-
region?: string | Provider<string>;
|
|
9
|
-
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
9
|
+
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
10
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
11
11
|
endpoint?:
|
|
12
12
|
| string
|
|
13
13
|
| Provider<string>
|
|
@@ -41,8 +41,8 @@ export declare const commonParams: {
|
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
export interface EndpointParameters extends __EndpointParameters {
|
|
44
|
-
Region?: string;
|
|
45
|
-
UseDualStack?: boolean;
|
|
46
|
-
UseFIPS?: boolean;
|
|
47
|
-
Endpoint?: string;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
UseDualStack?: boolean | undefined;
|
|
46
|
+
UseFIPS?: boolean | undefined;
|
|
47
|
+
Endpoint?: string | undefined;
|
|
48
48
|
}
|
|
@@ -1306,6 +1306,7 @@ export declare const VehicleState: {
|
|
|
1306
1306
|
readonly DELETING: "DELETING";
|
|
1307
1307
|
readonly HEALTHY: "HEALTHY";
|
|
1308
1308
|
readonly READY: "READY";
|
|
1309
|
+
readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
|
|
1309
1310
|
readonly SUSPENDED: "SUSPENDED";
|
|
1310
1311
|
};
|
|
1311
1312
|
export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
|
|
@@ -22,8 +22,10 @@ export declare const getRuntimeConfig: (config: IoTFleetWiseClientConfig) => {
|
|
|
22
22
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
23
|
sha256: import("@smithy/types").HashConstructor;
|
|
24
24
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
26
|
-
|
|
25
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
29
|
apiVersion: string;
|
|
28
30
|
cacheMiddleware?: boolean | undefined;
|
|
29
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -19,8 +19,10 @@ export declare const getRuntimeConfig: (config: IoTFleetWiseClientConfig) => {
|
|
|
19
19
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
20
|
disableHostPrefix: boolean;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
23
|
-
|
|
22
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
26
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
27
|
profile?: string;
|
|
26
28
|
defaultUserAgentProvider: (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotfleetwise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.830.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-iotfleetwise",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.826.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.830.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|