@aws-sdk/client-iottwinmaker 3.74.0 → 3.75.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 +11 -0
- package/dist-types/models/models_0.d.ts +54 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.75.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.74.0...v3.75.0) (2022-04-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-iottwinmaker:** General availability (GA) for AWS IoT TwinMaker. For more information, see https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/Welcome.html ([1103688](https://github.com/aws/aws-sdk-js-v3/commit/110368884c53331c9a15d6af9b57697aa282fe84))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-iottwinmaker
|
|
@@ -754,6 +754,9 @@ export declare namespace GetWorkspaceResponse {
|
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
* <p>An object that filters items in a list of component types.</p>
|
|
757
|
+
* <note>
|
|
758
|
+
* <p>Only one object is accepted as a valid input.</p>
|
|
759
|
+
* </note>
|
|
757
760
|
*/
|
|
758
761
|
export declare type ListComponentTypesFilter = ListComponentTypesFilter.ExtendsFromMember | ListComponentTypesFilter.IsAbstractMember | ListComponentTypesFilter.NamespaceMember | ListComponentTypesFilter.$UnknownMember;
|
|
759
762
|
export declare namespace ListComponentTypesFilter {
|
|
@@ -942,6 +945,9 @@ export interface ListEntitiesRequest {
|
|
|
942
945
|
workspaceId: string | undefined;
|
|
943
946
|
/**
|
|
944
947
|
* <p>A list of objects that filter the request.</p>
|
|
948
|
+
* <note>
|
|
949
|
+
* <p>Only one object is accepted as a valid input.</p>
|
|
950
|
+
* </note>
|
|
945
951
|
*/
|
|
946
952
|
filters?: ListEntitiesFilter[];
|
|
947
953
|
/**
|
|
@@ -1501,7 +1507,49 @@ export interface PropertyValue {
|
|
|
1501
1507
|
*/
|
|
1502
1508
|
value: DataValue | undefined;
|
|
1503
1509
|
/**
|
|
1504
|
-
*
|
|
1510
|
+
* <p>ISO8601 DateTime of a value for a time series property.</p>
|
|
1511
|
+
* <p>The time for when the property value was recorded in ISO 8601 format: <i>YYYY-MM-DDThh:mm:ss[.SSSSSSSSS][Z/±HH:mm]</i>.</p>
|
|
1512
|
+
* <ul>
|
|
1513
|
+
* <li>
|
|
1514
|
+
* <p>
|
|
1515
|
+
* <i>[YYYY]</i>: year</p>
|
|
1516
|
+
* </li>
|
|
1517
|
+
* <li>
|
|
1518
|
+
* <p>
|
|
1519
|
+
* <i>[MM]</i>: month</p>
|
|
1520
|
+
* </li>
|
|
1521
|
+
* <li>
|
|
1522
|
+
* <p>
|
|
1523
|
+
* <i>[DD]</i>: day</p>
|
|
1524
|
+
* </li>
|
|
1525
|
+
* <li>
|
|
1526
|
+
* <p>
|
|
1527
|
+
* <i>[hh]</i>: hour</p>
|
|
1528
|
+
* </li>
|
|
1529
|
+
* <li>
|
|
1530
|
+
* <p>
|
|
1531
|
+
* <i>[mm]</i>: minute</p>
|
|
1532
|
+
* </li>
|
|
1533
|
+
* <li>
|
|
1534
|
+
* <p>
|
|
1535
|
+
* <i>[ss]</i>: seconds</p>
|
|
1536
|
+
* </li>
|
|
1537
|
+
* <li>
|
|
1538
|
+
* <p>
|
|
1539
|
+
* <i>[.SSSSSSSSS]</i>: additional precision, where precedence is maintained. For
|
|
1540
|
+
* example: [.573123] is equal to 573123000 nanoseconds.</p>
|
|
1541
|
+
* </li>
|
|
1542
|
+
* <li>
|
|
1543
|
+
* <p>
|
|
1544
|
+
* <i>Z</i>: default timezone UTC</p>
|
|
1545
|
+
* </li>
|
|
1546
|
+
* <li>
|
|
1547
|
+
* <p>
|
|
1548
|
+
* <i>± HH:mm</i>: time zone offset in Hours and Minutes.</p>
|
|
1549
|
+
* </li>
|
|
1550
|
+
* </ul>
|
|
1551
|
+
* <p>
|
|
1552
|
+
* <i>Required sub-fields</i>: YYYY-MM-DDThh:mm:ss and [Z/±HH:mm]</p>
|
|
1505
1553
|
*/
|
|
1506
1554
|
time?: string;
|
|
1507
1555
|
}
|
|
@@ -1596,11 +1644,13 @@ export interface GetPropertyValueHistoryRequest {
|
|
|
1596
1644
|
*/
|
|
1597
1645
|
orderByTime?: OrderByTime | string;
|
|
1598
1646
|
/**
|
|
1599
|
-
*
|
|
1647
|
+
* <p>The ISO8601 DateTime of the earliest property value to return.</p>
|
|
1648
|
+
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/roci/latest/roci-api/API_PropertyValue.html">PropertyValue</a>.</p>
|
|
1600
1649
|
*/
|
|
1601
1650
|
startTime?: string;
|
|
1602
1651
|
/**
|
|
1603
|
-
*
|
|
1652
|
+
* <p>The ISO8601 DateTime of the latest property value to return.</p>
|
|
1653
|
+
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/roci/latest/roci-api/API_PropertyValue.html">PropertyValue</a>.</p>
|
|
1604
1654
|
*/
|
|
1605
1655
|
endTime?: string;
|
|
1606
1656
|
}
|
|
@@ -1626,7 +1676,7 @@ export declare namespace GetPropertyValueResponse {
|
|
|
1626
1676
|
const filterSensitiveLog: (obj: GetPropertyValueResponse) => any;
|
|
1627
1677
|
}
|
|
1628
1678
|
/**
|
|
1629
|
-
* <p>An object that specifies information about time series property values.</p>
|
|
1679
|
+
* <p>An object that specifies information about time series property values. This object is used and consumed by the <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_BatchPutPropertyValues.html">BatchPutPropertyValues</a> action.</p>
|
|
1630
1680
|
*/
|
|
1631
1681
|
export interface PropertyValueEntry {
|
|
1632
1682
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iottwinmaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.75.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",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.75.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.75.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.75.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.58.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.58.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.75.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.58.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.75.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.74.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.72.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.72.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.75.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.75.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
51
|
"tslib": "^2.3.1"
|