Skip to content

Commit

Permalink
feat(client-iotsitewise): Provide support for 20,000 max results for …
Browse files Browse the repository at this point in the history
…GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates
  • Loading branch information
awstools committed May 8, 2023
1 parent eaced29 commit b0aef34
Show file tree
Hide file tree
Showing 2 changed files with 168 additions and 84 deletions.
38 changes: 28 additions & 10 deletions clients/client-iotsitewise/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1901,11 +1901,11 @@ export interface BatchGetAssetPropertyAggregatesRequest {
* first.</p>
* <ul>
* <li>
* <p>The size of the result set is less than 1 MB.</p>
* <p>The size of the result set is equal to 1 MB.</p>
* </li>
* <li>
* <p>The number of data points in the result set is less than the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 4000.</p>
* <p>The number of data points in the result set is equal to the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 4000.</p>
* </li>
* </ul>
*/
Expand Down Expand Up @@ -2325,11 +2325,11 @@ export interface BatchGetAssetPropertyValueHistoryRequest {
* first.</p>
* <ul>
* <li>
* <p>The size of the result set is less than 1 MB.</p>
* <p>The size of the result set is equal to 4 MB.</p>
* </li>
* <li>
* <p>The number of data points in the result set is less than the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 4000.</p>
* <p>The number of data points in the result set is equal to the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 20000.</p>
* </li>
* </ul>
*/
Expand Down Expand Up @@ -4823,8 +4823,17 @@ export interface GetAssetPropertyAggregatesRequest {
nextToken?: string;

/**
* <p>The maximum number of results to return for each paginated request.</p>
* <p>Default: 100</p>
* <p>The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs
* first.</p>
* <ul>
* <li>
* <p>The size of the result set is equal to 1 MB.</p>
* </li>
* <li>
* <p>The number of data points in the result set is equal to the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 250.</p>
* </li>
* </ul>
*/
maxResults?: number;
}
Expand Down Expand Up @@ -4927,8 +4936,17 @@ export interface GetAssetPropertyValueHistoryRequest {
nextToken?: string;

/**
* <p>The maximum number of results to return for each paginated request.</p>
* <p>Default: 100</p>
* <p>The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs
* first.</p>
* <ul>
* <li>
* <p>The size of the result set is equal to 4 MB.</p>
* </li>
* <li>
* <p>The number of data points in the result set is equal to the value of
* <code>maxResults</code>. The maximum value of <code>maxResults</code> is 20000.</p>
* </li>
* </ul>
*/
maxResults?: number;
}
Expand Down
Loading

0 comments on commit b0aef34

Please sign in to comment.