@aws-sdk/client-iotsitewise 3.883.0 → 3.886.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 +5 -1
- package/dist-es/protocols/Aws_restJson1.js +5 -1
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DescribeComputationModelCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +6 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -2008,6 +2008,9 @@ var se_DescribeComputationModelCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2008
2008
|
const headers = {};
|
|
2009
2009
|
b.bp("/computation-models/{computationModelId}");
|
|
2010
2010
|
b.p("computationModelId", () => input.computationModelId, "{computationModelId}", false);
|
|
2011
|
+
const query = (0, import_smithy_client.map)({
|
|
2012
|
+
[_cMV]: [, input[_cMV]]
|
|
2013
|
+
});
|
|
2011
2014
|
let body;
|
|
2012
2015
|
let { hostname: resolvedHostname } = await context.endpoint();
|
|
2013
2016
|
if (context.disableHostPrefix !== true) {
|
|
@@ -2017,7 +2020,7 @@ var se_DescribeComputationModelCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2017
2020
|
}
|
|
2018
2021
|
}
|
|
2019
2022
|
b.hn(resolvedHostname);
|
|
2020
|
-
b.m("GET").h(headers).b(body);
|
|
2023
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
2021
2024
|
return b.build();
|
|
2022
2025
|
}, "se_DescribeComputationModelCommand");
|
|
2023
2026
|
var se_DescribeComputationModelExecutionSummaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -6022,6 +6025,7 @@ var _aT = "aggregateTypes";
|
|
|
6022
6025
|
var _aTc = "actionType";
|
|
6023
6026
|
var _cI = "conversationId";
|
|
6024
6027
|
var _cMT = "computationModelType";
|
|
6028
|
+
var _cMV = "computationModelVersion";
|
|
6025
6029
|
var _cT = "clientToken";
|
|
6026
6030
|
var _e = "etag";
|
|
6027
6031
|
var _eD = "endDate";
|
|
@@ -918,6 +918,9 @@ export const se_DescribeComputationModelCommand = async (input, context) => {
|
|
|
918
918
|
const headers = {};
|
|
919
919
|
b.bp("/computation-models/{computationModelId}");
|
|
920
920
|
b.p("computationModelId", () => input.computationModelId, "{computationModelId}", false);
|
|
921
|
+
const query = map({
|
|
922
|
+
[_cMV]: [, input[_cMV]],
|
|
923
|
+
});
|
|
921
924
|
let body;
|
|
922
925
|
let { hostname: resolvedHostname } = await context.endpoint();
|
|
923
926
|
if (context.disableHostPrefix !== true) {
|
|
@@ -927,7 +930,7 @@ export const se_DescribeComputationModelCommand = async (input, context) => {
|
|
|
927
930
|
}
|
|
928
931
|
}
|
|
929
932
|
b.hn(resolvedHostname);
|
|
930
|
-
b.m("GET").h(headers).b(body);
|
|
933
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
931
934
|
return b.build();
|
|
932
935
|
};
|
|
933
936
|
export const se_DescribeComputationModelExecutionSummaryCommand = async (input, context) => {
|
|
@@ -4942,6 +4945,7 @@ const _aT = "aggregateTypes";
|
|
|
4942
4945
|
const _aTc = "actionType";
|
|
4943
4946
|
const _cI = "conversationId";
|
|
4944
4947
|
const _cMT = "computationModelType";
|
|
4948
|
+
const _cMV = "computationModelVersion";
|
|
4945
4949
|
const _cT = "clientToken";
|
|
4946
4950
|
const _e = "etag";
|
|
4947
4951
|
const _eD = "endDate";
|
|
@@ -29,6 +29,9 @@ declare const CreateAccessPolicyCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates an access policy that grants the specified identity (IAM Identity Center user, IAM Identity Center group, or
|
|
31
31
|
* IAM user) access to the specified IoT SiteWise Monitor portal or project resource.</p>
|
|
32
|
+
* <note>
|
|
33
|
+
* <p>Support for access policies that use an SSO Group as the identity is not supported at this time.</p>
|
|
34
|
+
* </note>
|
|
32
35
|
* @example
|
|
33
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
37
|
* ```javascript
|
|
@@ -37,6 +37,7 @@ declare const DescribeComputationModelCommand_base: {
|
|
|
37
37
|
* const client = new IoTSiteWiseClient(config);
|
|
38
38
|
* const input = { // DescribeComputationModelRequest
|
|
39
39
|
* computationModelId: "STRING_VALUE", // required
|
|
40
|
+
* computationModelVersion: "STRING_VALUE",
|
|
40
41
|
* };
|
|
41
42
|
* const command = new DescribeComputationModelCommand(input);
|
|
42
43
|
* const response = await client.send(command);
|
|
@@ -5621,6 +5621,11 @@ export interface DescribeComputationModelRequest {
|
|
|
5621
5621
|
* @public
|
|
5622
5622
|
*/
|
|
5623
5623
|
computationModelId: string | undefined;
|
|
5624
|
+
/**
|
|
5625
|
+
* <p>The version of the computation model.</p>
|
|
5626
|
+
* @public
|
|
5627
|
+
*/
|
|
5628
|
+
computationModelVersion?: string | undefined;
|
|
5624
5629
|
}
|
|
5625
5630
|
/**
|
|
5626
5631
|
* @public
|
|
@@ -6781,7 +6786,7 @@ export interface ExecuteQueryRequest {
|
|
|
6781
6786
|
* <p>Maximum is 20000</p>
|
|
6782
6787
|
* </li>
|
|
6783
6788
|
* <li>
|
|
6784
|
-
* <p>Default is
|
|
6789
|
+
* <p>Default is 20000</p>
|
|
6785
6790
|
* </li>
|
|
6786
6791
|
* </ul>
|
|
6787
6792
|
* @public
|
|
@@ -1335,6 +1335,7 @@ export interface DescribeBulkImportJobResponse {
|
|
|
1335
1335
|
}
|
|
1336
1336
|
export interface DescribeComputationModelRequest {
|
|
1337
1337
|
computationModelId: string | undefined;
|
|
1338
|
+
computationModelVersion?: string | undefined;
|
|
1338
1339
|
}
|
|
1339
1340
|
export declare const ResolveToResourceType: {
|
|
1340
1341
|
readonly ASSET: "ASSET";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsitewise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.886.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-iotsitewise",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.883.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.886.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.873.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.876.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.886.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.883.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.873.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|