@aws-sdk/client-iotsitewise 3.42.0 → 3.43.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-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/models/models_0.js +62 -4
- package/dist-cjs/pagination/ListTimeSeriesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +613 -8
- 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/models/models_0.js +42 -0
- package/dist-es/pagination/ListTimeSeriesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +790 -109
- 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 +393 -73
- 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 +139 -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 +2 -2
|
@@ -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";
|
|
@@ -73,6 +78,12 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
73
78
|
associateAssets(args: AssociateAssetsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAssetsCommandOutput>;
|
|
74
79
|
associateAssets(args: AssociateAssetsCommandInput, cb: (err: any, data?: AssociateAssetsCommandOutput) => void): void;
|
|
75
80
|
associateAssets(args: AssociateAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAssetsCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* <p>Associates a time series (data stream) with an asset property.</p>
|
|
83
|
+
*/
|
|
84
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
85
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
86
|
+
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
76
87
|
/**
|
|
77
88
|
* <p>Associates a group (batch) of assets with an IoT SiteWise Monitor project.</p>
|
|
78
89
|
*/
|
|
@@ -167,6 +178,10 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
167
178
|
createPortal(args: CreatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
168
179
|
/**
|
|
169
180
|
* <p>Creates a project in the specified portal.</p>
|
|
181
|
+
* <note>
|
|
182
|
+
* <p>Make sure that the project name and description don't contain confidential
|
|
183
|
+
* information.</p>
|
|
184
|
+
* </note>
|
|
170
185
|
*/
|
|
171
186
|
createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
|
|
172
187
|
createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
@@ -225,6 +240,33 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
225
240
|
deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
|
|
226
241
|
deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
227
242
|
deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
243
|
+
/**
|
|
244
|
+
* <p>Deletes a time series (data stream). If you delete a time series that's associated with an
|
|
245
|
+
* asset property, the asset property still exists, but the time series will no longer be
|
|
246
|
+
* associated with this asset property.</p>
|
|
247
|
+
* <p>To identify a time series, do one of the following:</p>
|
|
248
|
+
* <ul>
|
|
249
|
+
* <li>
|
|
250
|
+
* <p>If the time series isn't associated with an asset property,
|
|
251
|
+
* specify the <code>alias</code> of the time series.</p>
|
|
252
|
+
* </li>
|
|
253
|
+
* <li>
|
|
254
|
+
* <p>If the time series is associated with an asset property,
|
|
255
|
+
* specify one of the following: </p>
|
|
256
|
+
* <ul>
|
|
257
|
+
* <li>
|
|
258
|
+
* <p>The <code>alias</code> of the time series.</p>
|
|
259
|
+
* </li>
|
|
260
|
+
* <li>
|
|
261
|
+
* <p>The <code>assetId</code> and <code>propertyId</code> that identifies the asset property.</p>
|
|
262
|
+
* </li>
|
|
263
|
+
* </ul>
|
|
264
|
+
* </li>
|
|
265
|
+
* </ul>
|
|
266
|
+
*/
|
|
267
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTimeSeriesCommandOutput>;
|
|
268
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
269
|
+
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
228
270
|
/**
|
|
229
271
|
* <p>Describes an access policy, which specifies an identity's access to an IoT SiteWise Monitor portal or
|
|
230
272
|
* project.</p>
|
|
@@ -311,6 +353,31 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
311
353
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageConfigurationCommandOutput>;
|
|
312
354
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
313
355
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
356
|
+
/**
|
|
357
|
+
* <p>Retrieves information about a time series (data stream).</p>
|
|
358
|
+
* <p>To identify a time series, do one of the following:</p>
|
|
359
|
+
* <ul>
|
|
360
|
+
* <li>
|
|
361
|
+
* <p>If the time series isn't associated with an asset property,
|
|
362
|
+
* specify the <code>alias</code> of the time series.</p>
|
|
363
|
+
* </li>
|
|
364
|
+
* <li>
|
|
365
|
+
* <p>If the time series is associated with an asset property,
|
|
366
|
+
* specify one of the following: </p>
|
|
367
|
+
* <ul>
|
|
368
|
+
* <li>
|
|
369
|
+
* <p>The <code>alias</code> of the time series.</p>
|
|
370
|
+
* </li>
|
|
371
|
+
* <li>
|
|
372
|
+
* <p>The <code>assetId</code> and <code>propertyId</code> that identifies the asset property.</p>
|
|
373
|
+
* </li>
|
|
374
|
+
* </ul>
|
|
375
|
+
* </li>
|
|
376
|
+
* </ul>
|
|
377
|
+
*/
|
|
378
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTimeSeriesCommandOutput>;
|
|
379
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
380
|
+
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
314
381
|
/**
|
|
315
382
|
* <p>Disassociates a child asset from the given parent asset through a hierarchy defined in the
|
|
316
383
|
* parent asset's model.</p>
|
|
@@ -318,6 +385,12 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
318
385
|
disassociateAssets(args: DisassociateAssetsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAssetsCommandOutput>;
|
|
319
386
|
disassociateAssets(args: DisassociateAssetsCommandInput, cb: (err: any, data?: DisassociateAssetsCommandOutput) => void): void;
|
|
320
387
|
disassociateAssets(args: DisassociateAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAssetsCommandOutput) => void): void;
|
|
388
|
+
/**
|
|
389
|
+
* <p>Disassociates a time series (data stream) from an asset property.</p>
|
|
390
|
+
*/
|
|
391
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
392
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, cb: (err: any, data?: DisassociateTimeSeriesFromAssetPropertyCommandOutput) => void): void;
|
|
393
|
+
disassociateTimeSeriesFromAssetProperty(args: DisassociateTimeSeriesFromAssetPropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTimeSeriesFromAssetPropertyCommandOutput) => void): void;
|
|
321
394
|
/**
|
|
322
395
|
* <p>Gets aggregated values for an asset property. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#aggregates">Querying
|
|
323
396
|
* aggregates</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
@@ -373,8 +446,8 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
373
446
|
* <p>Get interpolated values for an asset property for a specified time interval, during a
|
|
374
447
|
* period of time. If your time series is missing data points during the specified time interval,
|
|
375
448
|
* you can use interpolation to estimate the missing data.</p>
|
|
376
|
-
* <p>For example, you can use this operation to return the interpolated
|
|
377
|
-
*
|
|
449
|
+
* <p>For example, you can use this operation to return the interpolated temperature values for
|
|
450
|
+
* a wind turbine every 24 hours over a duration of 7 days.</p>
|
|
378
451
|
* <p>To identify an asset property, you must specify one of the following:</p>
|
|
379
452
|
* <ul>
|
|
380
453
|
* <li>
|
|
@@ -479,6 +552,12 @@ export declare class IoTSiteWise extends IoTSiteWiseClient {
|
|
|
479
552
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
480
553
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
481
554
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
555
|
+
/**
|
|
556
|
+
* <p>Retrieves a paginated list of time series (data streams).</p>
|
|
557
|
+
*/
|
|
558
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<ListTimeSeriesCommandOutput>;
|
|
559
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
560
|
+
listTimeSeries(args: ListTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
482
561
|
/**
|
|
483
562
|
* <p>Sets the default encryption configuration for the Amazon Web Services account. For more information, see
|
|
484
563
|
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/key-management.html">Key management</a> in
|
|
@@ -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
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Associates a time series (data stream) with an asset property.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { IoTSiteWiseClient, AssociateTimeSeriesToAssetPropertyCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
15
|
+
* // const { IoTSiteWiseClient, AssociateTimeSeriesToAssetPropertyCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
16
|
+
* const client = new IoTSiteWiseClient(config);
|
|
17
|
+
* const command = new AssociateTimeSeriesToAssetPropertyCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link AssociateTimeSeriesToAssetPropertyCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link AssociateTimeSeriesToAssetPropertyCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class AssociateTimeSeriesToAssetPropertyCommand extends $Command<AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
27
|
+
readonly input: AssociateTimeSeriesToAssetPropertyCommandInput;
|
|
28
|
+
constructor(input: AssociateTimeSeriesToAssetPropertyCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -8,6 +8,10 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Creates a project in the specified portal.</p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>Make sure that the project name and description don't contain confidential
|
|
13
|
+
* information.</p>
|
|
14
|
+
* </note>
|
|
11
15
|
* @example
|
|
12
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
17
|
* ```javascript
|
|
@@ -0,0 +1,56 @@
|
|
|
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
|
+
* <p>Deletes a time series (data stream). If you delete a time series that's associated with an
|
|
11
|
+
* asset property, the asset property still exists, but the time series will no longer be
|
|
12
|
+
* associated with this asset property.</p>
|
|
13
|
+
* <p>To identify a time series, do one of the following:</p>
|
|
14
|
+
* <ul>
|
|
15
|
+
* <li>
|
|
16
|
+
* <p>If the time series isn't associated with an asset property,
|
|
17
|
+
* specify the <code>alias</code> of the time series.</p>
|
|
18
|
+
* </li>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>If the time series is associated with an asset property,
|
|
21
|
+
* specify one of the following: </p>
|
|
22
|
+
* <ul>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>The <code>alias</code> of the time series.</p>
|
|
25
|
+
* </li>
|
|
26
|
+
* <li>
|
|
27
|
+
* <p>The <code>assetId</code> and <code>propertyId</code> that identifies the asset property.</p>
|
|
28
|
+
* </li>
|
|
29
|
+
* </ul>
|
|
30
|
+
* </li>
|
|
31
|
+
* </ul>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { IoTSiteWiseClient, DeleteTimeSeriesCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
36
|
+
* // const { IoTSiteWiseClient, DeleteTimeSeriesCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
37
|
+
* const client = new IoTSiteWiseClient(config);
|
|
38
|
+
* const command = new DeleteTimeSeriesCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* @see {@link DeleteTimeSeriesCommandInput} for command's `input` shape.
|
|
43
|
+
* @see {@link DeleteTimeSeriesCommandOutput} for command's `response` shape.
|
|
44
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
export declare class DeleteTimeSeriesCommand extends $Command<DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
48
|
+
readonly input: DeleteTimeSeriesCommandInput;
|
|
49
|
+
constructor(input: DeleteTimeSeriesCommandInput);
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput>;
|
|
54
|
+
private serialize;
|
|
55
|
+
private deserialize;
|
|
56
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
* <p>Retrieves information about a time series (data stream).</p>
|
|
11
|
+
* <p>To identify a time series, do one of the following:</p>
|
|
12
|
+
* <ul>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>If the time series isn't associated with an asset property,
|
|
15
|
+
* specify the <code>alias</code> of the time series.</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>If the time series is associated with an asset property,
|
|
19
|
+
* specify one of the following: </p>
|
|
20
|
+
* <ul>
|
|
21
|
+
* <li>
|
|
22
|
+
* <p>The <code>alias</code> of the time series.</p>
|
|
23
|
+
* </li>
|
|
24
|
+
* <li>
|
|
25
|
+
* <p>The <code>assetId</code> and <code>propertyId</code> that identifies the asset property.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* </ul>
|
|
28
|
+
* </li>
|
|
29
|
+
* </ul>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { IoTSiteWiseClient, DescribeTimeSeriesCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
34
|
+
* // const { IoTSiteWiseClient, DescribeTimeSeriesCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
35
|
+
* const client = new IoTSiteWiseClient(config);
|
|
36
|
+
* const command = new DescribeTimeSeriesCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* @see {@link DescribeTimeSeriesCommandInput} for command's `input` shape.
|
|
41
|
+
* @see {@link DescribeTimeSeriesCommandOutput} for command's `response` shape.
|
|
42
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
export declare class DescribeTimeSeriesCommand extends $Command<DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
46
|
+
readonly input: DescribeTimeSeriesCommandInput;
|
|
47
|
+
constructor(input: DescribeTimeSeriesCommandInput);
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput>;
|
|
52
|
+
private serialize;
|
|
53
|
+
private deserialize;
|
|
54
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Disassociates a time series (data stream) from an asset property.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { IoTSiteWiseClient, DisassociateTimeSeriesFromAssetPropertyCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
15
|
+
* // const { IoTSiteWiseClient, DisassociateTimeSeriesFromAssetPropertyCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
16
|
+
* const client = new IoTSiteWiseClient(config);
|
|
17
|
+
* const command = new DisassociateTimeSeriesFromAssetPropertyCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DisassociateTimeSeriesFromAssetPropertyCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DisassociateTimeSeriesFromAssetPropertyCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DisassociateTimeSeriesFromAssetPropertyCommand extends $Command<DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
27
|
+
readonly input: DisassociateTimeSeriesFromAssetPropertyCommandInput;
|
|
28
|
+
constructor(input: DisassociateTimeSeriesFromAssetPropertyCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -10,8 +10,8 @@ export interface GetInterpolatedAssetPropertyValuesCommandOutput extends GetInte
|
|
|
10
10
|
* <p>Get interpolated values for an asset property for a specified time interval, during a
|
|
11
11
|
* period of time. If your time series is missing data points during the specified time interval,
|
|
12
12
|
* you can use interpolation to estimate the missing data.</p>
|
|
13
|
-
* <p>For example, you can use this operation to return the interpolated
|
|
14
|
-
*
|
|
13
|
+
* <p>For example, you can use this operation to return the interpolated temperature values for
|
|
14
|
+
* a wind turbine every 24 hours over a duration of 7 days.</p>
|
|
15
15
|
* <p>To identify an asset property, you must specify one of the following:</p>
|
|
16
16
|
* <ul>
|
|
17
17
|
* <li>
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Retrieves a paginated list of time series (data streams).</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { IoTSiteWiseClient, ListTimeSeriesCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
15
|
+
* // const { IoTSiteWiseClient, ListTimeSeriesCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
16
|
+
* const client = new IoTSiteWiseClient(config);
|
|
17
|
+
* const command = new ListTimeSeriesCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListTimeSeriesCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListTimeSeriesCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListTimeSeriesCommand extends $Command<ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
27
|
+
readonly input: ListTimeSeriesCommandInput;
|
|
28
|
+
constructor(input: ListTimeSeriesCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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";
|