@aws-sdk/client-iotsitewise 3.42.0 → 3.46.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 +50 -0
- package/dist-cjs/IoTSiteWise.js +75 -0
- package/dist-cjs/commands/AssociateTimeSeriesToAssetPropertyCommand.js +36 -0
- package/dist-cjs/commands/DeleteTimeSeriesCommand.js +36 -0
- package/dist-cjs/commands/DescribeTimeSeriesCommand.js +36 -0
- package/dist-cjs/commands/DisassociateTimeSeriesFromAssetPropertyCommand.js +36 -0
- package/dist-cjs/commands/ListTimeSeriesCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +68 -4
- package/dist-cjs/pagination/ListTimeSeriesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +634 -5
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/IoTSiteWise.js +75 -0
- package/dist-es/commands/AssociateTimeSeriesToAssetPropertyCommand.js +39 -0
- package/dist-es/commands/DeleteTimeSeriesCommand.js +39 -0
- package/dist-es/commands/DescribeTimeSeriesCommand.js +39 -0
- package/dist-es/commands/DisassociateTimeSeriesFromAssetPropertyCommand.js +39 -0
- package/dist-es/commands/ListTimeSeriesCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +46 -0
- package/dist-es/pagination/ListTimeSeriesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +807 -106
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/IoTSiteWise.d.ts +81 -2
- package/dist-types/IoTSiteWiseClient.d.ts +7 -2
- package/dist-types/commands/AssociateTimeSeriesToAssetPropertyCommand.d.ts +35 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +56 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +54 -0
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +35 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +2 -2
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +451 -83
- package/dist-types/pagination/ListTimeSeriesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +25 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/AssociateTimeSeriesToAssetPropertyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTimeSeriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTimeSeriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +156 -0
- package/dist-types/ts3.4/pagination/ListTimeSeriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +37 -44
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "../commands/ListTimeSeriesCommand";
|
|
3
|
+
import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTimeSeries(config: IoTSiteWisePaginationConfiguration, input: ListTimeSeriesCommandInput, ...additionalArguments: any): Paginator<ListTimeSeriesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AssociateAssetsCommandInput, AssociateAssetsCommandOutput } from "../commands/AssociateAssetsCommand";
|
|
4
|
+
import { AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput } from "../commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
4
5
|
import { BatchAssociateProjectAssetsCommandInput, BatchAssociateProjectAssetsCommandOutput } from "../commands/BatchAssociateProjectAssetsCommand";
|
|
5
6
|
import { BatchDisassociateProjectAssetsCommandInput, BatchDisassociateProjectAssetsCommandOutput } from "../commands/BatchDisassociateProjectAssetsCommand";
|
|
6
7
|
import { BatchPutAssetPropertyValueCommandInput, BatchPutAssetPropertyValueCommandOutput } from "../commands/BatchPutAssetPropertyValueCommand";
|
|
@@ -18,6 +19,7 @@ import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "../co
|
|
|
18
19
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
|
|
19
20
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "../commands/DeletePortalCommand";
|
|
20
21
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
22
|
+
import { DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput } from "../commands/DeleteTimeSeriesCommand";
|
|
21
23
|
import { DescribeAccessPolicyCommandInput, DescribeAccessPolicyCommandOutput } from "../commands/DescribeAccessPolicyCommand";
|
|
22
24
|
import { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "../commands/DescribeAssetCommand";
|
|
23
25
|
import { DescribeAssetModelCommandInput, DescribeAssetModelCommandOutput } from "../commands/DescribeAssetModelCommand";
|
|
@@ -30,7 +32,9 @@ import { DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput
|
|
|
30
32
|
import { DescribePortalCommandInput, DescribePortalCommandOutput } from "../commands/DescribePortalCommand";
|
|
31
33
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "../commands/DescribeProjectCommand";
|
|
32
34
|
import { DescribeStorageConfigurationCommandInput, DescribeStorageConfigurationCommandOutput } from "../commands/DescribeStorageConfigurationCommand";
|
|
35
|
+
import { DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput } from "../commands/DescribeTimeSeriesCommand";
|
|
33
36
|
import { DisassociateAssetsCommandInput, DisassociateAssetsCommandOutput } from "../commands/DisassociateAssetsCommand";
|
|
37
|
+
import { DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "../commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
34
38
|
import { GetAssetPropertyAggregatesCommandInput, GetAssetPropertyAggregatesCommandOutput } from "../commands/GetAssetPropertyAggregatesCommand";
|
|
35
39
|
import { GetAssetPropertyValueCommandInput, GetAssetPropertyValueCommandOutput } from "../commands/GetAssetPropertyValueCommand";
|
|
36
40
|
import { GetAssetPropertyValueHistoryCommandInput, GetAssetPropertyValueHistoryCommandOutput } from "../commands/GetAssetPropertyValueHistoryCommand";
|
|
@@ -46,6 +50,7 @@ import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/L
|
|
|
46
50
|
import { ListProjectAssetsCommandInput, ListProjectAssetsCommandOutput } from "../commands/ListProjectAssetsCommand";
|
|
47
51
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
|
|
48
52
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
53
|
+
import { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "../commands/ListTimeSeriesCommand";
|
|
49
54
|
import { PutDefaultEncryptionConfigurationCommandInput, PutDefaultEncryptionConfigurationCommandOutput } from "../commands/PutDefaultEncryptionConfigurationCommand";
|
|
50
55
|
import { PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput } from "../commands/PutLoggingOptionsCommand";
|
|
51
56
|
import { PutStorageConfigurationCommandInput, PutStorageConfigurationCommandOutput } from "../commands/PutStorageConfigurationCommand";
|
|
@@ -61,6 +66,7 @@ import { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "../comman
|
|
|
61
66
|
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "../commands/UpdatePortalCommand";
|
|
62
67
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "../commands/UpdateProjectCommand";
|
|
63
68
|
export declare const serializeAws_restJson1AssociateAssetsCommand: (input: AssociateAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_restJson1AssociateTimeSeriesToAssetPropertyCommand: (input: AssociateTimeSeriesToAssetPropertyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
70
|
export declare const serializeAws_restJson1BatchAssociateProjectAssetsCommand: (input: BatchAssociateProjectAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
71
|
export declare const serializeAws_restJson1BatchDisassociateProjectAssetsCommand: (input: BatchDisassociateProjectAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
72
|
export declare const serializeAws_restJson1BatchPutAssetPropertyValueCommand: (input: BatchPutAssetPropertyValueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -78,6 +84,7 @@ export declare const serializeAws_restJson1DeleteDashboardCommand: (input: Delet
|
|
|
78
84
|
export declare const serializeAws_restJson1DeleteGatewayCommand: (input: DeleteGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
85
|
export declare const serializeAws_restJson1DeletePortalCommand: (input: DeletePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
86
|
export declare const serializeAws_restJson1DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
export declare const serializeAws_restJson1DeleteTimeSeriesCommand: (input: DeleteTimeSeriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
88
|
export declare const serializeAws_restJson1DescribeAccessPolicyCommand: (input: DescribeAccessPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
89
|
export declare const serializeAws_restJson1DescribeAssetCommand: (input: DescribeAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
90
|
export declare const serializeAws_restJson1DescribeAssetModelCommand: (input: DescribeAssetModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -90,7 +97,9 @@ export declare const serializeAws_restJson1DescribeLoggingOptionsCommand: (input
|
|
|
90
97
|
export declare const serializeAws_restJson1DescribePortalCommand: (input: DescribePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
98
|
export declare const serializeAws_restJson1DescribeProjectCommand: (input: DescribeProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
99
|
export declare const serializeAws_restJson1DescribeStorageConfigurationCommand: (input: DescribeStorageConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
export declare const serializeAws_restJson1DescribeTimeSeriesCommand: (input: DescribeTimeSeriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
101
|
export declare const serializeAws_restJson1DisassociateAssetsCommand: (input: DisassociateAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1DisassociateTimeSeriesFromAssetPropertyCommand: (input: DisassociateTimeSeriesFromAssetPropertyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
103
|
export declare const serializeAws_restJson1GetAssetPropertyAggregatesCommand: (input: GetAssetPropertyAggregatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
104
|
export declare const serializeAws_restJson1GetAssetPropertyValueCommand: (input: GetAssetPropertyValueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
105
|
export declare const serializeAws_restJson1GetAssetPropertyValueHistoryCommand: (input: GetAssetPropertyValueHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -106,6 +115,7 @@ export declare const serializeAws_restJson1ListPortalsCommand: (input: ListPorta
|
|
|
106
115
|
export declare const serializeAws_restJson1ListProjectAssetsCommand: (input: ListProjectAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
116
|
export declare const serializeAws_restJson1ListProjectsCommand: (input: ListProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
117
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1ListTimeSeriesCommand: (input: ListTimeSeriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
119
|
export declare const serializeAws_restJson1PutDefaultEncryptionConfigurationCommand: (input: PutDefaultEncryptionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
120
|
export declare const serializeAws_restJson1PutLoggingOptionsCommand: (input: PutLoggingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
121
|
export declare const serializeAws_restJson1PutStorageConfigurationCommand: (input: PutStorageConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -121,6 +131,7 @@ export declare const serializeAws_restJson1UpdateGatewayCapabilityConfigurationC
|
|
|
121
131
|
export declare const serializeAws_restJson1UpdatePortalCommand: (input: UpdatePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
132
|
export declare const serializeAws_restJson1UpdateProjectCommand: (input: UpdateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
133
|
export declare const deserializeAws_restJson1AssociateAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAssetsCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1AssociateTimeSeriesToAssetPropertyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
124
135
|
export declare const deserializeAws_restJson1BatchAssociateProjectAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateProjectAssetsCommandOutput>;
|
|
125
136
|
export declare const deserializeAws_restJson1BatchDisassociateProjectAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateProjectAssetsCommandOutput>;
|
|
126
137
|
export declare const deserializeAws_restJson1BatchPutAssetPropertyValueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutAssetPropertyValueCommandOutput>;
|
|
@@ -138,6 +149,7 @@ export declare const deserializeAws_restJson1DeleteDashboardCommand: (output: __
|
|
|
138
149
|
export declare const deserializeAws_restJson1DeleteGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayCommandOutput>;
|
|
139
150
|
export declare const deserializeAws_restJson1DeletePortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePortalCommandOutput>;
|
|
140
151
|
export declare const deserializeAws_restJson1DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
|
|
152
|
+
export declare const deserializeAws_restJson1DeleteTimeSeriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTimeSeriesCommandOutput>;
|
|
141
153
|
export declare const deserializeAws_restJson1DescribeAccessPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccessPolicyCommandOutput>;
|
|
142
154
|
export declare const deserializeAws_restJson1DescribeAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetCommandOutput>;
|
|
143
155
|
export declare const deserializeAws_restJson1DescribeAssetModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetModelCommandOutput>;
|
|
@@ -150,7 +162,9 @@ export declare const deserializeAws_restJson1DescribeLoggingOptionsCommand: (out
|
|
|
150
162
|
export declare const deserializeAws_restJson1DescribePortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePortalCommandOutput>;
|
|
151
163
|
export declare const deserializeAws_restJson1DescribeProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectCommandOutput>;
|
|
152
164
|
export declare const deserializeAws_restJson1DescribeStorageConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStorageConfigurationCommandOutput>;
|
|
165
|
+
export declare const deserializeAws_restJson1DescribeTimeSeriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTimeSeriesCommandOutput>;
|
|
153
166
|
export declare const deserializeAws_restJson1DisassociateAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAssetsCommandOutput>;
|
|
167
|
+
export declare const deserializeAws_restJson1DisassociateTimeSeriesFromAssetPropertyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
154
168
|
export declare const deserializeAws_restJson1GetAssetPropertyAggregatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetPropertyAggregatesCommandOutput>;
|
|
155
169
|
export declare const deserializeAws_restJson1GetAssetPropertyValueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetPropertyValueCommandOutput>;
|
|
156
170
|
export declare const deserializeAws_restJson1GetAssetPropertyValueHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetPropertyValueHistoryCommandOutput>;
|
|
@@ -166,6 +180,7 @@ export declare const deserializeAws_restJson1ListPortalsCommand: (output: __Http
|
|
|
166
180
|
export declare const deserializeAws_restJson1ListProjectAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectAssetsCommandOutput>;
|
|
167
181
|
export declare const deserializeAws_restJson1ListProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectsCommandOutput>;
|
|
168
182
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
183
|
+
export declare const deserializeAws_restJson1ListTimeSeriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTimeSeriesCommandOutput>;
|
|
169
184
|
export declare const deserializeAws_restJson1PutDefaultEncryptionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutDefaultEncryptionConfigurationCommandOutput>;
|
|
170
185
|
export declare const deserializeAws_restJson1PutLoggingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutLoggingOptionsCommandOutput>;
|
|
171
186
|
export declare const deserializeAws_restJson1PutStorageConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutStorageConfigurationCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { AssociateAssetsCommandInput, AssociateAssetsCommandOutput } from "./commands/AssociateAssetsCommand";
|
|
3
|
+
import { AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput } from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
3
4
|
import { BatchAssociateProjectAssetsCommandInput, BatchAssociateProjectAssetsCommandOutput } from "./commands/BatchAssociateProjectAssetsCommand";
|
|
4
5
|
import { BatchDisassociateProjectAssetsCommandInput, BatchDisassociateProjectAssetsCommandOutput } from "./commands/BatchDisassociateProjectAssetsCommand";
|
|
5
6
|
import { BatchPutAssetPropertyValueCommandInput, BatchPutAssetPropertyValueCommandOutput } from "./commands/BatchPutAssetPropertyValueCommand";
|
|
@@ -17,6 +18,7 @@ import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./com
|
|
|
17
18
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
18
19
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
19
20
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
21
|
+
import { DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput } from "./commands/DeleteTimeSeriesCommand";
|
|
20
22
|
import { DescribeAccessPolicyCommandInput, DescribeAccessPolicyCommandOutput } from "./commands/DescribeAccessPolicyCommand";
|
|
21
23
|
import { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "./commands/DescribeAssetCommand";
|
|
22
24
|
import { DescribeAssetModelCommandInput, DescribeAssetModelCommandOutput } from "./commands/DescribeAssetModelCommand";
|
|
@@ -29,7 +31,9 @@ import { DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput
|
|
|
29
31
|
import { DescribePortalCommandInput, DescribePortalCommandOutput } from "./commands/DescribePortalCommand";
|
|
30
32
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
31
33
|
import { DescribeStorageConfigurationCommandInput, DescribeStorageConfigurationCommandOutput } from "./commands/DescribeStorageConfigurationCommand";
|
|
34
|
+
import { DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput } from "./commands/DescribeTimeSeriesCommand";
|
|
32
35
|
import { DisassociateAssetsCommandInput, DisassociateAssetsCommandOutput } from "./commands/DisassociateAssetsCommand";
|
|
36
|
+
import { DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
33
37
|
import { GetAssetPropertyAggregatesCommandInput, GetAssetPropertyAggregatesCommandOutput } from "./commands/GetAssetPropertyAggregatesCommand";
|
|
34
38
|
import { GetAssetPropertyValueCommandInput, GetAssetPropertyValueCommandOutput } from "./commands/GetAssetPropertyValueCommand";
|
|
35
39
|
import { GetAssetPropertyValueHistoryCommandInput, GetAssetPropertyValueHistoryCommandOutput } from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
@@ -45,6 +49,7 @@ import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/Li
|
|
|
45
49
|
import { ListProjectAssetsCommandInput, ListProjectAssetsCommandOutput } from "./commands/ListProjectAssetsCommand";
|
|
46
50
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
47
51
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
52
|
+
import { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "./commands/ListTimeSeriesCommand";
|
|
48
53
|
import { PutDefaultEncryptionConfigurationCommandInput, PutDefaultEncryptionConfigurationCommandOutput } from "./commands/PutDefaultEncryptionConfigurationCommand";
|
|
49
54
|
import { PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput } from "./commands/PutLoggingOptionsCommand";
|
|
50
55
|
import { PutStorageConfigurationCommandInput, PutStorageConfigurationCommandOutput } from "./commands/PutStorageConfigurationCommand";
|
|
@@ -67,6 +72,10 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
67
72
|
associateAssets(args: AssociateAssetsCommandInput, cb: (err: any, data?: AssociateAssetsCommandOutput) => void): void;
|
|
68
73
|
associateAssets(args: AssociateAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAssetsCommandOutput) => void): void;
|
|
69
74
|
|
|
75
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
76
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
77
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
78
|
+
|
|
70
79
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateProjectAssetsCommandOutput>;
|
|
71
80
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, cb: (err: any, data?: BatchAssociateProjectAssetsCommandOutput) => void): void;
|
|
72
81
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateProjectAssetsCommandOutput) => void): void;
|
|
@@ -135,6 +144,10 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
135
144
|
deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
136
145
|
deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
137
146
|
|
|
147
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTimeSeriesCommandOutput>;
|
|
148
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
149
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
150
|
+
|
|
138
151
|
describeAccessPolicy(args: DescribeAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccessPolicyCommandOutput>;
|
|
139
152
|
describeAccessPolicy(args: DescribeAccessPolicyCommandInput, cb: (err: any, data?: DescribeAccessPolicyCommandOutput) => void): void;
|
|
140
153
|
describeAccessPolicy(args: DescribeAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccessPolicyCommandOutput) => void): void;
|
|
@@ -183,10 +196,18 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
183
196
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
184
197
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
185
198
|
|
|
199
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTimeSeriesCommandOutput>;
|
|
200
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
201
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
202
|
+
|
|
186
203
|
disassociateAssets(args: DisassociateAssetsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAssetsCommandOutput>;
|
|
187
204
|
disassociateAssets(args: DisassociateAssetsCommandInput, cb: (err: any, data?: DisassociateAssetsCommandOutput) => void): void;
|
|
188
205
|
disassociateAssets(args: DisassociateAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAssetsCommandOutput) => void): void;
|
|
189
206
|
|
|
207
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
208
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, cb: (err: any, data?: DisassociateTimeSeriesFromAssetPropertyCommandOutput) => void): void;
|
|
209
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTimeSeriesFromAssetPropertyCommandOutput) => void): void;
|
|
210
|
+
|
|
190
211
|
getAssetPropertyAggregates(args: GetAssetPropertyAggregatesCommandInput, options?: __HttpHandlerOptions): Promise<GetAssetPropertyAggregatesCommandOutput>;
|
|
191
212
|
getAssetPropertyAggregates(args: GetAssetPropertyAggregatesCommandInput, cb: (err: any, data?: GetAssetPropertyAggregatesCommandOutput) => void): void;
|
|
192
213
|
getAssetPropertyAggregates(args: GetAssetPropertyAggregatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssetPropertyAggregatesCommandOutput) => void): void;
|
|
@@ -247,6 +268,10 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
247
268
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
248
269
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
249
270
|
|
|
271
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<ListTimeSeriesCommandOutput>;
|
|
272
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
273
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
274
|
+
|
|
250
275
|
putDefaultEncryptionConfiguration(args: PutDefaultEncryptionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutDefaultEncryptionConfigurationCommandOutput>;
|
|
251
276
|
putDefaultEncryptionConfiguration(args: PutDefaultEncryptionConfigurationCommandInput, cb: (err: any, data?: PutDefaultEncryptionConfigurationCommandOutput) => void): void;
|
|
252
277
|
putDefaultEncryptionConfiguration(args: PutDefaultEncryptionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDefaultEncryptionConfigurationCommandOutput) => void): void;
|
|
@@ -7,6 +7,7 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
7
7
|
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateAssetsCommandInput, AssociateAssetsCommandOutput } from "./commands/AssociateAssetsCommand";
|
|
10
|
+
import { AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput } from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
10
11
|
import { BatchAssociateProjectAssetsCommandInput, BatchAssociateProjectAssetsCommandOutput } from "./commands/BatchAssociateProjectAssetsCommand";
|
|
11
12
|
import { BatchDisassociateProjectAssetsCommandInput, BatchDisassociateProjectAssetsCommandOutput } from "./commands/BatchDisassociateProjectAssetsCommand";
|
|
12
13
|
import { BatchPutAssetPropertyValueCommandInput, BatchPutAssetPropertyValueCommandOutput } from "./commands/BatchPutAssetPropertyValueCommand";
|
|
@@ -24,6 +25,7 @@ import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./com
|
|
|
24
25
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
25
26
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
26
27
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
28
|
+
import { DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput } from "./commands/DeleteTimeSeriesCommand";
|
|
27
29
|
import { DescribeAccessPolicyCommandInput, DescribeAccessPolicyCommandOutput } from "./commands/DescribeAccessPolicyCommand";
|
|
28
30
|
import { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "./commands/DescribeAssetCommand";
|
|
29
31
|
import { DescribeAssetModelCommandInput, DescribeAssetModelCommandOutput } from "./commands/DescribeAssetModelCommand";
|
|
@@ -36,7 +38,9 @@ import { DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput
|
|
|
36
38
|
import { DescribePortalCommandInput, DescribePortalCommandOutput } from "./commands/DescribePortalCommand";
|
|
37
39
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
38
40
|
import { DescribeStorageConfigurationCommandInput, DescribeStorageConfigurationCommandOutput } from "./commands/DescribeStorageConfigurationCommand";
|
|
41
|
+
import { DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput } from "./commands/DescribeTimeSeriesCommand";
|
|
39
42
|
import { DisassociateAssetsCommandInput, DisassociateAssetsCommandOutput } from "./commands/DisassociateAssetsCommand";
|
|
43
|
+
import { DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
40
44
|
import { GetAssetPropertyAggregatesCommandInput, GetAssetPropertyAggregatesCommandOutput } from "./commands/GetAssetPropertyAggregatesCommand";
|
|
41
45
|
import { GetAssetPropertyValueCommandInput, GetAssetPropertyValueCommandOutput } from "./commands/GetAssetPropertyValueCommand";
|
|
42
46
|
import { GetAssetPropertyValueHistoryCommandInput, GetAssetPropertyValueHistoryCommandOutput } from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
@@ -52,6 +56,7 @@ import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/Li
|
|
|
52
56
|
import { ListProjectAssetsCommandInput, ListProjectAssetsCommandOutput } from "./commands/ListProjectAssetsCommand";
|
|
53
57
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
54
58
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
59
|
+
import { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "./commands/ListTimeSeriesCommand";
|
|
55
60
|
import { PutDefaultEncryptionConfigurationCommandInput, PutDefaultEncryptionConfigurationCommandOutput } from "./commands/PutDefaultEncryptionConfigurationCommand";
|
|
56
61
|
import { PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput } from "./commands/PutLoggingOptionsCommand";
|
|
57
62
|
import { PutStorageConfigurationCommandInput, PutStorageConfigurationCommandOutput } from "./commands/PutStorageConfigurationCommand";
|
|
@@ -66,8 +71,8 @@ import { UpdateGatewayCapabilityConfigurationCommandInput, UpdateGatewayCapabili
|
|
|
66
71
|
import { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
67
72
|
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
68
73
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
69
|
-
export declare type ServiceInputTypes = AssociateAssetsCommandInput | BatchAssociateProjectAssetsCommandInput | BatchDisassociateProjectAssetsCommandInput | BatchPutAssetPropertyValueCommandInput | CreateAccessPolicyCommandInput | CreateAssetCommandInput | CreateAssetModelCommandInput | CreateDashboardCommandInput | CreateGatewayCommandInput | CreatePortalCommandInput | CreateProjectCommandInput | DeleteAccessPolicyCommandInput | DeleteAssetCommandInput | DeleteAssetModelCommandInput | DeleteDashboardCommandInput | DeleteGatewayCommandInput | DeletePortalCommandInput | DeleteProjectCommandInput | DescribeAccessPolicyCommandInput | DescribeAssetCommandInput | DescribeAssetModelCommandInput | DescribeAssetPropertyCommandInput | DescribeDashboardCommandInput | DescribeDefaultEncryptionConfigurationCommandInput | DescribeGatewayCapabilityConfigurationCommandInput | DescribeGatewayCommandInput | DescribeLoggingOptionsCommandInput | DescribePortalCommandInput | DescribeProjectCommandInput | DescribeStorageConfigurationCommandInput | DisassociateAssetsCommandInput | GetAssetPropertyAggregatesCommandInput | GetAssetPropertyValueCommandInput | GetAssetPropertyValueHistoryCommandInput | GetInterpolatedAssetPropertyValuesCommandInput | ListAccessPoliciesCommandInput | ListAssetModelsCommandInput | ListAssetRelationshipsCommandInput | ListAssetsCommandInput | ListAssociatedAssetsCommandInput | ListDashboardsCommandInput | ListGatewaysCommandInput | ListPortalsCommandInput | ListProjectAssetsCommandInput | ListProjectsCommandInput | ListTagsForResourceCommandInput | PutDefaultEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | PutStorageConfigurationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessPolicyCommandInput | UpdateAssetCommandInput | UpdateAssetModelCommandInput | UpdateAssetPropertyCommandInput | UpdateDashboardCommandInput | UpdateGatewayCapabilityConfigurationCommandInput | UpdateGatewayCommandInput | UpdatePortalCommandInput | UpdateProjectCommandInput;
|
|
70
|
-
export declare type ServiceOutputTypes = AssociateAssetsCommandOutput | BatchAssociateProjectAssetsCommandOutput | BatchDisassociateProjectAssetsCommandOutput | BatchPutAssetPropertyValueCommandOutput | CreateAccessPolicyCommandOutput | CreateAssetCommandOutput | CreateAssetModelCommandOutput | CreateDashboardCommandOutput | CreateGatewayCommandOutput | CreatePortalCommandOutput | CreateProjectCommandOutput | DeleteAccessPolicyCommandOutput | DeleteAssetCommandOutput | DeleteAssetModelCommandOutput | DeleteDashboardCommandOutput | DeleteGatewayCommandOutput | DeletePortalCommandOutput | DeleteProjectCommandOutput | DescribeAccessPolicyCommandOutput | DescribeAssetCommandOutput | DescribeAssetModelCommandOutput | DescribeAssetPropertyCommandOutput | DescribeDashboardCommandOutput | DescribeDefaultEncryptionConfigurationCommandOutput | DescribeGatewayCapabilityConfigurationCommandOutput | DescribeGatewayCommandOutput | DescribeLoggingOptionsCommandOutput | DescribePortalCommandOutput | DescribeProjectCommandOutput | DescribeStorageConfigurationCommandOutput | DisassociateAssetsCommandOutput | GetAssetPropertyAggregatesCommandOutput | GetAssetPropertyValueCommandOutput | GetAssetPropertyValueHistoryCommandOutput | GetInterpolatedAssetPropertyValuesCommandOutput | ListAccessPoliciesCommandOutput | ListAssetModelsCommandOutput | ListAssetRelationshipsCommandOutput | ListAssetsCommandOutput | ListAssociatedAssetsCommandOutput | ListDashboardsCommandOutput | ListGatewaysCommandOutput | ListPortalsCommandOutput | ListProjectAssetsCommandOutput | ListProjectsCommandOutput | ListTagsForResourceCommandOutput | PutDefaultEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | PutStorageConfigurationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessPolicyCommandOutput | UpdateAssetCommandOutput | UpdateAssetModelCommandOutput | UpdateAssetPropertyCommandOutput | UpdateDashboardCommandOutput | UpdateGatewayCapabilityConfigurationCommandOutput | UpdateGatewayCommandOutput | UpdatePortalCommandOutput | UpdateProjectCommandOutput;
|
|
74
|
+
export declare type ServiceInputTypes = AssociateAssetsCommandInput | AssociateTimeSeriesToAssetPropertyCommandInput | BatchAssociateProjectAssetsCommandInput | BatchDisassociateProjectAssetsCommandInput | BatchPutAssetPropertyValueCommandInput | CreateAccessPolicyCommandInput | CreateAssetCommandInput | CreateAssetModelCommandInput | CreateDashboardCommandInput | CreateGatewayCommandInput | CreatePortalCommandInput | CreateProjectCommandInput | DeleteAccessPolicyCommandInput | DeleteAssetCommandInput | DeleteAssetModelCommandInput | DeleteDashboardCommandInput | DeleteGatewayCommandInput | DeletePortalCommandInput | DeleteProjectCommandInput | DeleteTimeSeriesCommandInput | DescribeAccessPolicyCommandInput | DescribeAssetCommandInput | DescribeAssetModelCommandInput | DescribeAssetPropertyCommandInput | DescribeDashboardCommandInput | DescribeDefaultEncryptionConfigurationCommandInput | DescribeGatewayCapabilityConfigurationCommandInput | DescribeGatewayCommandInput | DescribeLoggingOptionsCommandInput | DescribePortalCommandInput | DescribeProjectCommandInput | DescribeStorageConfigurationCommandInput | DescribeTimeSeriesCommandInput | DisassociateAssetsCommandInput | DisassociateTimeSeriesFromAssetPropertyCommandInput | GetAssetPropertyAggregatesCommandInput | GetAssetPropertyValueCommandInput | GetAssetPropertyValueHistoryCommandInput | GetInterpolatedAssetPropertyValuesCommandInput | ListAccessPoliciesCommandInput | ListAssetModelsCommandInput | ListAssetRelationshipsCommandInput | ListAssetsCommandInput | ListAssociatedAssetsCommandInput | ListDashboardsCommandInput | ListGatewaysCommandInput | ListPortalsCommandInput | ListProjectAssetsCommandInput | ListProjectsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesCommandInput | PutDefaultEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | PutStorageConfigurationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessPolicyCommandInput | UpdateAssetCommandInput | UpdateAssetModelCommandInput | UpdateAssetPropertyCommandInput | UpdateDashboardCommandInput | UpdateGatewayCapabilityConfigurationCommandInput | UpdateGatewayCommandInput | UpdatePortalCommandInput | UpdateProjectCommandInput;
|
|
75
|
+
export declare type ServiceOutputTypes = AssociateAssetsCommandOutput | AssociateTimeSeriesToAssetPropertyCommandOutput | BatchAssociateProjectAssetsCommandOutput | BatchDisassociateProjectAssetsCommandOutput | BatchPutAssetPropertyValueCommandOutput | CreateAccessPolicyCommandOutput | CreateAssetCommandOutput | CreateAssetModelCommandOutput | CreateDashboardCommandOutput | CreateGatewayCommandOutput | CreatePortalCommandOutput | CreateProjectCommandOutput | DeleteAccessPolicyCommandOutput | DeleteAssetCommandOutput | DeleteAssetModelCommandOutput | DeleteDashboardCommandOutput | DeleteGatewayCommandOutput | DeletePortalCommandOutput | DeleteProjectCommandOutput | DeleteTimeSeriesCommandOutput | DescribeAccessPolicyCommandOutput | DescribeAssetCommandOutput | DescribeAssetModelCommandOutput | DescribeAssetPropertyCommandOutput | DescribeDashboardCommandOutput | DescribeDefaultEncryptionConfigurationCommandOutput | DescribeGatewayCapabilityConfigurationCommandOutput | DescribeGatewayCommandOutput | DescribeLoggingOptionsCommandOutput | DescribePortalCommandOutput | DescribeProjectCommandOutput | DescribeStorageConfigurationCommandOutput | DescribeTimeSeriesCommandOutput | DisassociateAssetsCommandOutput | DisassociateTimeSeriesFromAssetPropertyCommandOutput | GetAssetPropertyAggregatesCommandOutput | GetAssetPropertyValueCommandOutput | GetAssetPropertyValueHistoryCommandOutput | GetInterpolatedAssetPropertyValuesCommandOutput | ListAccessPoliciesCommandOutput | ListAssetModelsCommandOutput | ListAssetRelationshipsCommandOutput | ListAssetsCommandOutput | ListAssociatedAssetsCommandOutput | ListDashboardsCommandOutput | ListGatewaysCommandOutput | ListPortalsCommandOutput | ListProjectAssetsCommandOutput | ListProjectsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesCommandOutput | PutDefaultEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | PutStorageConfigurationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessPolicyCommandOutput | UpdateAssetCommandOutput | UpdateAssetModelCommandOutput | UpdateAssetPropertyCommandOutput | UpdateDashboardCommandOutput | UpdateGatewayCapabilityConfigurationCommandOutput | UpdateGatewayCommandOutput | UpdatePortalCommandOutput | UpdateProjectCommandOutput;
|
|
71
76
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
72
77
|
|
|
73
78
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
4
|
+
import { AssociateTimeSeriesToAssetPropertyRequest } from "../models/models_0";
|
|
5
|
+
export interface AssociateTimeSeriesToAssetPropertyCommandInput extends AssociateTimeSeriesToAssetPropertyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AssociateTimeSeriesToAssetPropertyCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AssociateTimeSeriesToAssetPropertyCommand extends $Command<AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
11
|
+
readonly input: AssociateTimeSeriesToAssetPropertyCommandInput;
|
|
12
|
+
constructor(input: AssociateTimeSeriesToAssetPropertyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
4
|
+
import { DeleteTimeSeriesRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteTimeSeriesCommandInput extends DeleteTimeSeriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteTimeSeriesCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteTimeSeriesCommand extends $Command<DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteTimeSeriesCommandInput;
|
|
12
|
+
constructor(input: DeleteTimeSeriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
4
|
+
import { DescribeTimeSeriesRequest, DescribeTimeSeriesResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeTimeSeriesCommandInput extends DescribeTimeSeriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeTimeSeriesCommandOutput extends DescribeTimeSeriesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeTimeSeriesCommand extends $Command<DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeTimeSeriesCommandInput;
|
|
12
|
+
constructor(input: DescribeTimeSeriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
4
|
+
import { DisassociateTimeSeriesFromAssetPropertyRequest } from "../models/models_0";
|
|
5
|
+
export interface DisassociateTimeSeriesFromAssetPropertyCommandInput extends DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisassociateTimeSeriesFromAssetPropertyCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisassociateTimeSeriesFromAssetPropertyCommand extends $Command<DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
11
|
+
readonly input: DisassociateTimeSeriesFromAssetPropertyCommandInput;
|
|
12
|
+
constructor(input: DisassociateTimeSeriesFromAssetPropertyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
4
|
+
import { ListTimeSeriesRequest, ListTimeSeriesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTimeSeriesCommandInput extends ListTimeSeriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTimeSeriesCommandOutput extends ListTimeSeriesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTimeSeriesCommand extends $Command<ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTimeSeriesCommandInput;
|
|
12
|
+
constructor(input: ListTimeSeriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./AssociateAssetsCommand";
|
|
2
|
+
export * from "./AssociateTimeSeriesToAssetPropertyCommand";
|
|
2
3
|
export * from "./BatchAssociateProjectAssetsCommand";
|
|
3
4
|
export * from "./BatchDisassociateProjectAssetsCommand";
|
|
4
5
|
export * from "./BatchPutAssetPropertyValueCommand";
|
|
@@ -16,6 +17,7 @@ export * from "./DeleteDashboardCommand";
|
|
|
16
17
|
export * from "./DeleteGatewayCommand";
|
|
17
18
|
export * from "./DeletePortalCommand";
|
|
18
19
|
export * from "./DeleteProjectCommand";
|
|
20
|
+
export * from "./DeleteTimeSeriesCommand";
|
|
19
21
|
export * from "./DescribeAccessPolicyCommand";
|
|
20
22
|
export * from "./DescribeAssetCommand";
|
|
21
23
|
export * from "./DescribeAssetModelCommand";
|
|
@@ -28,7 +30,9 @@ export * from "./DescribeLoggingOptionsCommand";
|
|
|
28
30
|
export * from "./DescribePortalCommand";
|
|
29
31
|
export * from "./DescribeProjectCommand";
|
|
30
32
|
export * from "./DescribeStorageConfigurationCommand";
|
|
33
|
+
export * from "./DescribeTimeSeriesCommand";
|
|
31
34
|
export * from "./DisassociateAssetsCommand";
|
|
35
|
+
export * from "./DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
32
36
|
export * from "./GetAssetPropertyAggregatesCommand";
|
|
33
37
|
export * from "./GetAssetPropertyValueCommand";
|
|
34
38
|
export * from "./GetAssetPropertyValueHistoryCommand";
|
|
@@ -44,6 +48,7 @@ export * from "./ListPortalsCommand";
|
|
|
44
48
|
export * from "./ListProjectAssetsCommand";
|
|
45
49
|
export * from "./ListProjectsCommand";
|
|
46
50
|
export * from "./ListTagsForResourceCommand";
|
|
51
|
+
export * from "./ListTimeSeriesCommand";
|
|
47
52
|
export * from "./PutDefaultEncryptionConfigurationCommand";
|
|
48
53
|
export * from "./PutLoggingOptionsCommand";
|
|
49
54
|
export * from "./PutStorageConfigurationCommand";
|
|
@@ -760,6 +760,20 @@ export declare namespace AssociatedAssetsSummary {
|
|
|
760
760
|
|
|
761
761
|
const filterSensitiveLog: (obj: AssociatedAssetsSummary) => any;
|
|
762
762
|
}
|
|
763
|
+
export interface AssociateTimeSeriesToAssetPropertyRequest {
|
|
764
|
+
|
|
765
|
+
alias: string | undefined;
|
|
766
|
+
|
|
767
|
+
assetId: string | undefined;
|
|
768
|
+
|
|
769
|
+
propertyId: string | undefined;
|
|
770
|
+
|
|
771
|
+
clientToken?: string;
|
|
772
|
+
}
|
|
773
|
+
export declare namespace AssociateTimeSeriesToAssetPropertyRequest {
|
|
774
|
+
|
|
775
|
+
const filterSensitiveLog: (obj: AssociateTimeSeriesToAssetPropertyRequest) => any;
|
|
776
|
+
}
|
|
763
777
|
export declare enum AuthMode {
|
|
764
778
|
IAM = "IAM",
|
|
765
779
|
SSO = "SSO"
|
|
@@ -1299,6 +1313,20 @@ export declare namespace DeleteProjectResponse {
|
|
|
1299
1313
|
|
|
1300
1314
|
const filterSensitiveLog: (obj: DeleteProjectResponse) => any;
|
|
1301
1315
|
}
|
|
1316
|
+
export interface DeleteTimeSeriesRequest {
|
|
1317
|
+
|
|
1318
|
+
alias?: string;
|
|
1319
|
+
|
|
1320
|
+
assetId?: string;
|
|
1321
|
+
|
|
1322
|
+
propertyId?: string;
|
|
1323
|
+
|
|
1324
|
+
clientToken?: string;
|
|
1325
|
+
}
|
|
1326
|
+
export declare namespace DeleteTimeSeriesRequest {
|
|
1327
|
+
|
|
1328
|
+
const filterSensitiveLog: (obj: DeleteTimeSeriesRequest) => any;
|
|
1329
|
+
}
|
|
1302
1330
|
export interface DescribeAccessPolicyRequest {
|
|
1303
1331
|
|
|
1304
1332
|
accessPolicyId: string | undefined;
|
|
@@ -1720,6 +1748,10 @@ export declare namespace DescribeStorageConfigurationRequest {
|
|
|
1720
1748
|
|
|
1721
1749
|
const filterSensitiveLog: (obj: DescribeStorageConfigurationRequest) => any;
|
|
1722
1750
|
}
|
|
1751
|
+
export declare enum DisassociatedDataStorageState {
|
|
1752
|
+
DISABLED = "DISABLED",
|
|
1753
|
+
ENABLED = "ENABLED"
|
|
1754
|
+
}
|
|
1723
1755
|
|
|
1724
1756
|
export interface CustomerManagedS3Storage {
|
|
1725
1757
|
|
|
@@ -1740,6 +1772,17 @@ export declare namespace MultiLayerStorage {
|
|
|
1740
1772
|
|
|
1741
1773
|
const filterSensitiveLog: (obj: MultiLayerStorage) => any;
|
|
1742
1774
|
}
|
|
1775
|
+
|
|
1776
|
+
export interface RetentionPeriod {
|
|
1777
|
+
|
|
1778
|
+
numberOfDays?: number;
|
|
1779
|
+
|
|
1780
|
+
unlimited?: boolean;
|
|
1781
|
+
}
|
|
1782
|
+
export declare namespace RetentionPeriod {
|
|
1783
|
+
|
|
1784
|
+
const filterSensitiveLog: (obj: RetentionPeriod) => any;
|
|
1785
|
+
}
|
|
1743
1786
|
export declare enum StorageType {
|
|
1744
1787
|
MULTI_LAYER_STORAGE = "MULTI_LAYER_STORAGE",
|
|
1745
1788
|
SITEWISE_DEFAULT_STORAGE = "SITEWISE_DEFAULT_STORAGE"
|
|
@@ -1750,6 +1793,10 @@ export interface DescribeStorageConfigurationResponse {
|
|
|
1750
1793
|
|
|
1751
1794
|
multiLayerStorage?: MultiLayerStorage;
|
|
1752
1795
|
|
|
1796
|
+
disassociatedDataStorage?: DisassociatedDataStorageState | string;
|
|
1797
|
+
|
|
1798
|
+
retentionPeriod?: RetentionPeriod;
|
|
1799
|
+
|
|
1753
1800
|
configurationStatus: ConfigurationStatus | undefined;
|
|
1754
1801
|
|
|
1755
1802
|
lastUpdateDate?: Date;
|
|
@@ -1758,6 +1805,40 @@ export declare namespace DescribeStorageConfigurationResponse {
|
|
|
1758
1805
|
|
|
1759
1806
|
const filterSensitiveLog: (obj: DescribeStorageConfigurationResponse) => any;
|
|
1760
1807
|
}
|
|
1808
|
+
export interface DescribeTimeSeriesRequest {
|
|
1809
|
+
|
|
1810
|
+
alias?: string;
|
|
1811
|
+
|
|
1812
|
+
assetId?: string;
|
|
1813
|
+
|
|
1814
|
+
propertyId?: string;
|
|
1815
|
+
}
|
|
1816
|
+
export declare namespace DescribeTimeSeriesRequest {
|
|
1817
|
+
|
|
1818
|
+
const filterSensitiveLog: (obj: DescribeTimeSeriesRequest) => any;
|
|
1819
|
+
}
|
|
1820
|
+
export interface DescribeTimeSeriesResponse {
|
|
1821
|
+
|
|
1822
|
+
assetId?: string;
|
|
1823
|
+
|
|
1824
|
+
propertyId?: string;
|
|
1825
|
+
|
|
1826
|
+
alias?: string;
|
|
1827
|
+
|
|
1828
|
+
timeSeriesId: string | undefined;
|
|
1829
|
+
|
|
1830
|
+
dataType: PropertyDataType | string | undefined;
|
|
1831
|
+
|
|
1832
|
+
dataTypeSpec?: string;
|
|
1833
|
+
|
|
1834
|
+
timeSeriesCreationDate: Date | undefined;
|
|
1835
|
+
|
|
1836
|
+
timeSeriesLastUpdateDate: Date | undefined;
|
|
1837
|
+
}
|
|
1838
|
+
export declare namespace DescribeTimeSeriesResponse {
|
|
1839
|
+
|
|
1840
|
+
const filterSensitiveLog: (obj: DescribeTimeSeriesResponse) => any;
|
|
1841
|
+
}
|
|
1761
1842
|
export interface DisassociateAssetsRequest {
|
|
1762
1843
|
|
|
1763
1844
|
assetId: string | undefined;
|
|
@@ -1772,6 +1853,20 @@ export declare namespace DisassociateAssetsRequest {
|
|
|
1772
1853
|
|
|
1773
1854
|
const filterSensitiveLog: (obj: DisassociateAssetsRequest) => any;
|
|
1774
1855
|
}
|
|
1856
|
+
export interface DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
1857
|
+
|
|
1858
|
+
alias: string | undefined;
|
|
1859
|
+
|
|
1860
|
+
assetId: string | undefined;
|
|
1861
|
+
|
|
1862
|
+
propertyId: string | undefined;
|
|
1863
|
+
|
|
1864
|
+
clientToken?: string;
|
|
1865
|
+
}
|
|
1866
|
+
export declare namespace DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
1867
|
+
|
|
1868
|
+
const filterSensitiveLog: (obj: DisassociateTimeSeriesFromAssetPropertyRequest) => any;
|
|
1869
|
+
}
|
|
1775
1870
|
export declare enum TimeOrdering {
|
|
1776
1871
|
ASCENDING = "ASCENDING",
|
|
1777
1872
|
DESCENDING = "DESCENDING"
|
|
@@ -2275,6 +2370,59 @@ export declare namespace UnauthorizedException {
|
|
|
2275
2370
|
|
|
2276
2371
|
const filterSensitiveLog: (obj: UnauthorizedException) => any;
|
|
2277
2372
|
}
|
|
2373
|
+
export declare enum ListTimeSeriesType {
|
|
2374
|
+
ASSOCIATED = "ASSOCIATED",
|
|
2375
|
+
DISASSOCIATED = "DISASSOCIATED"
|
|
2376
|
+
}
|
|
2377
|
+
export interface ListTimeSeriesRequest {
|
|
2378
|
+
|
|
2379
|
+
nextToken?: string;
|
|
2380
|
+
|
|
2381
|
+
maxResults?: number;
|
|
2382
|
+
|
|
2383
|
+
assetId?: string;
|
|
2384
|
+
|
|
2385
|
+
aliasPrefix?: string;
|
|
2386
|
+
|
|
2387
|
+
timeSeriesType?: ListTimeSeriesType | string;
|
|
2388
|
+
}
|
|
2389
|
+
export declare namespace ListTimeSeriesRequest {
|
|
2390
|
+
|
|
2391
|
+
const filterSensitiveLog: (obj: ListTimeSeriesRequest) => any;
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
export interface TimeSeriesSummary {
|
|
2395
|
+
|
|
2396
|
+
assetId?: string;
|
|
2397
|
+
|
|
2398
|
+
propertyId?: string;
|
|
2399
|
+
|
|
2400
|
+
alias?: string;
|
|
2401
|
+
|
|
2402
|
+
timeSeriesId: string | undefined;
|
|
2403
|
+
|
|
2404
|
+
dataType: PropertyDataType | string | undefined;
|
|
2405
|
+
|
|
2406
|
+
dataTypeSpec?: string;
|
|
2407
|
+
|
|
2408
|
+
timeSeriesCreationDate: Date | undefined;
|
|
2409
|
+
|
|
2410
|
+
timeSeriesLastUpdateDate: Date | undefined;
|
|
2411
|
+
}
|
|
2412
|
+
export declare namespace TimeSeriesSummary {
|
|
2413
|
+
|
|
2414
|
+
const filterSensitiveLog: (obj: TimeSeriesSummary) => any;
|
|
2415
|
+
}
|
|
2416
|
+
export interface ListTimeSeriesResponse {
|
|
2417
|
+
|
|
2418
|
+
TimeSeriesSummaries: TimeSeriesSummary[] | undefined;
|
|
2419
|
+
|
|
2420
|
+
nextToken?: string;
|
|
2421
|
+
}
|
|
2422
|
+
export declare namespace ListTimeSeriesResponse {
|
|
2423
|
+
|
|
2424
|
+
const filterSensitiveLog: (obj: ListTimeSeriesResponse) => any;
|
|
2425
|
+
}
|
|
2278
2426
|
export interface PutDefaultEncryptionConfigurationRequest {
|
|
2279
2427
|
|
|
2280
2428
|
encryptionType: EncryptionType | string | undefined;
|
|
@@ -2316,6 +2464,10 @@ export interface PutStorageConfigurationRequest {
|
|
|
2316
2464
|
storageType: StorageType | string | undefined;
|
|
2317
2465
|
|
|
2318
2466
|
multiLayerStorage?: MultiLayerStorage;
|
|
2467
|
+
|
|
2468
|
+
disassociatedDataStorage?: DisassociatedDataStorageState | string;
|
|
2469
|
+
|
|
2470
|
+
retentionPeriod?: RetentionPeriod;
|
|
2319
2471
|
}
|
|
2320
2472
|
export declare namespace PutStorageConfigurationRequest {
|
|
2321
2473
|
|
|
@@ -2327,6 +2479,10 @@ export interface PutStorageConfigurationResponse {
|
|
|
2327
2479
|
|
|
2328
2480
|
multiLayerStorage?: MultiLayerStorage;
|
|
2329
2481
|
|
|
2482
|
+
disassociatedDataStorage?: DisassociatedDataStorageState | string;
|
|
2483
|
+
|
|
2484
|
+
retentionPeriod?: RetentionPeriod;
|
|
2485
|
+
|
|
2330
2486
|
configurationStatus: ConfigurationStatus | undefined;
|
|
2331
2487
|
}
|
|
2332
2488
|
export declare namespace PutStorageConfigurationResponse {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "../commands/ListTimeSeriesCommand";
|
|
3
|
+
import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTimeSeries(config: IoTSiteWisePaginationConfiguration, input: ListTimeSeriesCommandInput, ...additionalArguments: any): Paginator<ListTimeSeriesCommandOutput>;
|