@aws-sdk/client-iotsitewise 3.1064.0 → 3.1066.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 CHANGED
@@ -1378,6 +1378,8 @@ const paginateGetInterpolatedAssetPropertyValues = core.createPaginator(IoTSiteW
1378
1378
 
1379
1379
  const paginateListAccessPolicies = core.createPaginator(IoTSiteWiseClient, ListAccessPoliciesCommand, "nextToken", "nextToken", "maxResults");
1380
1380
 
1381
+ const paginateListActions = core.createPaginator(IoTSiteWiseClient, ListActionsCommand, "nextToken", "nextToken", "maxResults");
1382
+
1381
1383
  const paginateListAssetModelCompositeModels = core.createPaginator(IoTSiteWiseClient, ListAssetModelCompositeModelsCommand, "nextToken", "nextToken", "maxResults");
1382
1384
 
1383
1385
  const paginateListAssetModelProperties = core.createPaginator(IoTSiteWiseClient, ListAssetModelPropertiesCommand, "nextToken", "nextToken", "maxResults");
@@ -1715,6 +1717,7 @@ const paginators = {
1715
1717
  paginateGetAssetPropertyValueHistory,
1716
1718
  paginateGetInterpolatedAssetPropertyValues,
1717
1719
  paginateListAccessPolicies,
1720
+ paginateListActions,
1718
1721
  paginateListAssetModelCompositeModels,
1719
1722
  paginateListAssetModelProperties,
1720
1723
  paginateListAssetModels,
@@ -2200,6 +2203,7 @@ exports.paginateGetAssetPropertyAggregates = paginateGetAssetPropertyAggregates;
2200
2203
  exports.paginateGetAssetPropertyValueHistory = paginateGetAssetPropertyValueHistory;
2201
2204
  exports.paginateGetInterpolatedAssetPropertyValues = paginateGetInterpolatedAssetPropertyValues;
2202
2205
  exports.paginateListAccessPolicies = paginateListAccessPolicies;
2206
+ exports.paginateListActions = paginateListActions;
2203
2207
  exports.paginateListAssetModelCompositeModels = paginateListAssetModelCompositeModels;
2204
2208
  exports.paginateListAssetModelProperties = paginateListAssetModelProperties;
2205
2209
  exports.paginateListAssetModels = paginateListAssetModels;
@@ -112,6 +112,7 @@ import { paginateGetAssetPropertyAggregates } from "./pagination/GetAssetPropert
112
112
  import { paginateGetAssetPropertyValueHistory } from "./pagination/GetAssetPropertyValueHistoryPaginator";
113
113
  import { paginateGetInterpolatedAssetPropertyValues } from "./pagination/GetInterpolatedAssetPropertyValuesPaginator";
114
114
  import { paginateListAccessPolicies } from "./pagination/ListAccessPoliciesPaginator";
115
+ import { paginateListActions } from "./pagination/ListActionsPaginator";
115
116
  import { paginateListAssetModelCompositeModels } from "./pagination/ListAssetModelCompositeModelsPaginator";
116
117
  import { paginateListAssetModelProperties } from "./pagination/ListAssetModelPropertiesPaginator";
117
118
  import { paginateListAssetModels } from "./pagination/ListAssetModelsPaginator";
@@ -254,6 +255,7 @@ const paginators = {
254
255
  paginateGetAssetPropertyValueHistory,
255
256
  paginateGetInterpolatedAssetPropertyValues,
256
257
  paginateListAccessPolicies,
258
+ paginateListActions,
257
259
  paginateListAssetModelCompositeModels,
258
260
  paginateListAssetModelProperties,
259
261
  paginateListAssetModels,
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListActionsCommand } from "../commands/ListActionsCommand";
3
+ import { IoTSiteWiseClient } from "../IoTSiteWiseClient";
4
+ export const paginateListActions = createPaginator(IoTSiteWiseClient, ListActionsCommand, "nextToken", "nextToken", "maxResults");
@@ -7,6 +7,7 @@ export * from "./GetAssetPropertyAggregatesPaginator";
7
7
  export * from "./GetAssetPropertyValueHistoryPaginator";
8
8
  export * from "./GetInterpolatedAssetPropertyValuesPaginator";
9
9
  export * from "./ListAccessPoliciesPaginator";
10
+ export * from "./ListActionsPaginator";
10
11
  export * from "./ListAssetModelCompositeModelsPaginator";
11
12
  export * from "./ListAssetModelPropertiesPaginator";
12
13
  export * from "./ListAssetModelsPaginator";
@@ -802,6 +802,13 @@ export interface IoTSiteWise {
802
802
  * @returns AsyncIterable of {@link ListAccessPoliciesCommandOutput}.
803
803
  */
804
804
  paginateListAccessPolicies(args?: ListAccessPoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAccessPoliciesCommandOutput>;
805
+ /**
806
+ * @see {@link ListActionsCommand}
807
+ * @param args - command input.
808
+ * @param paginationConfig - optional pagination config.
809
+ * @returns AsyncIterable of {@link ListActionsCommandOutput}.
810
+ */
811
+ paginateListActions(args: ListActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListActionsCommandOutput>;
805
812
  /**
806
813
  * @see {@link ListAssetModelCompositeModelsCommand}
807
814
  * @param args - command input.
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
3
+ import type { IoTSiteWisePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListActions: (config: IoTSiteWisePaginationConfiguration, input: ListActionsCommandInput, ...rest: any[]) => Paginator<ListActionsCommandOutput>;
@@ -7,6 +7,7 @@ export * from "./GetAssetPropertyAggregatesPaginator";
7
7
  export * from "./GetAssetPropertyValueHistoryPaginator";
8
8
  export * from "./GetInterpolatedAssetPropertyValuesPaginator";
9
9
  export * from "./ListAccessPoliciesPaginator";
10
+ export * from "./ListActionsPaginator";
10
11
  export * from "./ListAssetModelCompositeModelsPaginator";
11
12
  export * from "./ListAssetModelPropertiesPaginator";
12
13
  export * from "./ListAssetModelsPaginator";
@@ -1931,6 +1931,13 @@ export interface IoTSiteWise {
1931
1931
  Exclude<keyof PaginationConfiguration, "client">
1932
1932
  >
1933
1933
  ): Paginator<ListAccessPoliciesCommandOutput>;
1934
+ paginateListActions(
1935
+ args: ListActionsCommandInput,
1936
+ paginationConfig?: Pick<
1937
+ PaginationConfiguration,
1938
+ Exclude<keyof PaginationConfiguration, "client">
1939
+ >
1940
+ ): Paginator<ListActionsCommandOutput>;
1934
1941
  paginateListAssetModelCompositeModels(
1935
1942
  args: ListAssetModelCompositeModelsCommandInput,
1936
1943
  paginationConfig?: Pick<
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListActionsCommandInput,
4
+ ListActionsCommandOutput,
5
+ } from "../commands/ListActionsCommand";
6
+ import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListActions: (
8
+ config: IoTSiteWisePaginationConfiguration,
9
+ input: ListActionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListActionsCommandOutput>;
@@ -7,6 +7,7 @@ export * from "./GetAssetPropertyAggregatesPaginator";
7
7
  export * from "./GetAssetPropertyValueHistoryPaginator";
8
8
  export * from "./GetInterpolatedAssetPropertyValuesPaginator";
9
9
  export * from "./ListAccessPoliciesPaginator";
10
+ export * from "./ListActionsPaginator";
10
11
  export * from "./ListAssetModelCompositeModelsPaginator";
11
12
  export * from "./ListAssetModelPropertiesPaginator";
12
13
  export * from "./ListAssetModelsPaginator";
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.1064.0",
4
+ "version": "3.1066.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",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.19",
25
- "@aws-sdk/credential-provider-node": "^3.972.53",
24
+ "@aws-sdk/core": "^3.974.20",
25
+ "@aws-sdk/credential-provider-node": "^3.972.55",
26
26
  "@aws-sdk/types": "^3.973.12",
27
27
  "@smithy/core": "^3.24.6",
28
28
  "@smithy/fetch-http-handler": "^5.4.6",