@aws-sdk/client-iot 3.1058.0 → 3.1059.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.
|
@@ -29,7 +29,7 @@ declare const GetThingConnectivityDataCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Retrieves the live connectivity status per device.</p>
|
|
32
|
+
* <p>Retrieves the live connectivity status per device. If a device has never connected to IoT Core or was disconnected for more than 1 hour before fleet indexing's <code>thingConnectivityIndexingMode</code> was enabled, the response will have the <code>connected</code> field set to <code>false</code> with no additional session details.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -29,7 +29,8 @@ declare const SearchIndexCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>
|
|
32
|
+
* <p>Searches the specified index.</p>
|
|
33
|
+
* <p>If a device has never connected to IoT Core or was disconnected for more than 1 hour before fleet indexing's <code>thingConnectivityIndexingMode</code> was enabled, the <code>connectivity</code> object for this device in the response will have the <code>connected</code> field set to <code>false</code> with no additional session details.</p>
|
|
33
34
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">SearchIndex</a> action.</p>
|
|
34
35
|
* @example
|
|
35
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -4286,12 +4286,12 @@ export interface GetThingConnectivityDataResponse {
|
|
|
4286
4286
|
*/
|
|
4287
4287
|
connected?: boolean | undefined;
|
|
4288
4288
|
/**
|
|
4289
|
-
* <p>The timestamp of when the
|
|
4289
|
+
* <p>The timestamp of when the device connected or disconnected.</p>
|
|
4290
4290
|
* @public
|
|
4291
4291
|
*/
|
|
4292
4292
|
timestamp?: Date | undefined;
|
|
4293
4293
|
/**
|
|
4294
|
-
* <p>The reason
|
|
4294
|
+
* <p>The reason that the client is disconnected.</p>
|
|
4295
4295
|
* @public
|
|
4296
4296
|
*/
|
|
4297
4297
|
disconnectReason?: DisconnectReasonValue | undefined;
|
|
@@ -1387,13 +1387,12 @@ export interface ThingConnectivity {
|
|
|
1387
1387
|
*/
|
|
1388
1388
|
connected?: boolean | undefined;
|
|
1389
1389
|
/**
|
|
1390
|
-
* <p>The epoch time (in milliseconds) when the thing last connected or disconnected
|
|
1391
|
-
* thing has been disconnected for approximately an hour, the time value might be missing. When you enable or update the indexing configuration, this value might be <code>0</code> (the Unix epoch time) for devices that have never connected or have been disconnected for more than an hour.</p>
|
|
1390
|
+
* <p>The epoch time (in milliseconds) when the thing last connected or disconnected.</p>
|
|
1392
1391
|
* @public
|
|
1393
1392
|
*/
|
|
1394
1393
|
timestamp?: number | undefined;
|
|
1395
1394
|
/**
|
|
1396
|
-
* <p>The reason
|
|
1395
|
+
* <p>The reason that the client is disconnected.</p>
|
|
1397
1396
|
* @public
|
|
1398
1397
|
*/
|
|
1399
1398
|
disconnectReason?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1059.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/types": "^3.973.
|
|
29
|
-
"@smithy/core": "^3.24.
|
|
30
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
31
|
-
"@smithy/node-http-handler": "^4.7.
|
|
32
|
-
"@smithy/types": "^4.14.
|
|
26
|
+
"@aws-sdk/core": "^3.974.16",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.49",
|
|
28
|
+
"@aws-sdk/types": "^3.973.10",
|
|
29
|
+
"@smithy/core": "^3.24.6",
|
|
30
|
+
"@smithy/fetch-http-handler": "^5.4.6",
|
|
31
|
+
"@smithy/node-http-handler": "^4.7.6",
|
|
32
|
+
"@smithy/types": "^4.14.3",
|
|
33
33
|
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|