You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-iotsitewise): This release adds 3 new batch data query APIs : BatchGetAssetPropertyValue, BatchGetAssetPropertyValueHistory and BatchGetAssetPropertyAggregates
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
484
+
this.send(command,optionsOrCb||{},cb);
485
+
}else{
486
+
returnthis.send(command,optionsOrCb);
487
+
}
488
+
}
489
+
490
+
/**
491
+
* <p>Gets the current value for one or more asset properties. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#current-values">Querying
492
+
* current values</a> in the <i>IoT SiteWise User Guide</i>.</p>
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
517
+
this.send(command,optionsOrCb||{},cb);
518
+
}else{
519
+
returnthis.send(command,optionsOrCb);
520
+
}
521
+
}
522
+
523
+
/**
524
+
* <p>Gets the historical values for one or more asset properties. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#historical-values">Querying
525
+
* historical values</a> in the <i>IoT SiteWise User Guide</i>.</p>
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
550
+
this.send(command,optionsOrCb||{},cb);
551
+
}else{
552
+
returnthis.send(command,optionsOrCb);
553
+
}
554
+
}
555
+
441
556
/**
442
557
* <p>Sends a list of asset property values to IoT SiteWise. Each value is a timestamp-quality-value
443
558
* (TQV) data point. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/ingest-api.html">Ingesting data using the API</a> in the
* <p>Gets the current value for one or more asset properties. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#current-values">Querying
26
+
* current values</a> in the <i>IoT SiteWise User Guide</i>.</p>
27
+
* @example
28
+
* Use a bare-bones client and the command you need to make an API call.
29
+
* ```javascript
30
+
* import { IoTSiteWiseClient, BatchGetAssetPropertyValueCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
0 commit comments