@aws-sdk/client-iotsitewise 3.201.0 → 3.202.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/IoTSiteWise.js +30 -0
  3. package/dist-cjs/commands/ListAssetModelPropertiesCommand.js +46 -0
  4. package/dist-cjs/commands/ListAssetPropertiesCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +40 -6
  7. package/dist-cjs/pagination/ListAssetModelPropertiesPaginator.js +36 -0
  8. package/dist-cjs/pagination/ListAssetPropertiesPaginator.js +36 -0
  9. package/dist-cjs/pagination/index.js +2 -0
  10. package/dist-cjs/protocols/Aws_restJson1.js +211 -3
  11. package/dist-es/IoTSiteWise.js +30 -0
  12. package/dist-es/commands/ListAssetModelPropertiesCommand.js +42 -0
  13. package/dist-es/commands/ListAssetPropertiesCommand.js +42 -0
  14. package/dist-es/commands/index.js +2 -0
  15. package/dist-es/models/models_0.js +28 -0
  16. package/dist-es/pagination/ListAssetModelPropertiesPaginator.js +32 -0
  17. package/dist-es/pagination/ListAssetPropertiesPaginator.js +32 -0
  18. package/dist-es/pagination/index.js +2 -0
  19. package/dist-es/protocols/Aws_restJson1.js +204 -0
  20. package/dist-types/IoTSiteWise.d.ts +35 -21
  21. package/dist-types/IoTSiteWiseClient.d.ts +4 -2
  22. package/dist-types/commands/BatchGetAssetPropertyAggregatesCommand.d.ts +3 -3
  23. package/dist-types/commands/BatchGetAssetPropertyValueCommand.d.ts +1 -1
  24. package/dist-types/commands/BatchGetAssetPropertyValueHistoryCommand.d.ts +2 -2
  25. package/dist-types/commands/CreateAccessPolicyCommand.d.ts +1 -1
  26. package/dist-types/commands/CreateBulkImportJobCommand.d.ts +4 -6
  27. package/dist-types/commands/CreatePortalCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +2 -3
  29. package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +39 -0
  31. package/dist-types/commands/ListAssetPropertiesCommand.d.ts +39 -0
  32. package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -3
  33. package/dist-types/commands/index.d.ts +2 -0
  34. package/dist-types/models/models_0.d.ts +285 -72
  35. package/dist-types/pagination/ListAssetModelPropertiesPaginator.d.ts +4 -0
  36. package/dist-types/pagination/ListAssetPropertiesPaginator.d.ts +4 -0
  37. package/dist-types/pagination/index.d.ts +2 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  39. package/dist-types/ts3.4/IoTSiteWise.d.ts +34 -0
  40. package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +12 -0
  41. package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +41 -0
  42. package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +38 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +67 -0
  45. package/dist-types/ts3.4/pagination/ListAssetModelPropertiesPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/ListAssetPropertiesPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  49. package/package.json +4 -4
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
5
+ import { ListAssetPropertiesRequest, ListAssetPropertiesResponse } from "../models/models_0";
6
+ export interface ListAssetPropertiesCommandInput extends ListAssetPropertiesRequest {
7
+ }
8
+ export interface ListAssetPropertiesCommandOutput extends ListAssetPropertiesResponse, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Retrieves a paginated list of properties associated with an asset.
12
+ * If you update properties associated with the model before you finish listing all the properties,
13
+ * you need to start all over again.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { IoTSiteWiseClient, ListAssetPropertiesCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
18
+ * // const { IoTSiteWiseClient, ListAssetPropertiesCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
19
+ * const client = new IoTSiteWiseClient(config);
20
+ * const command = new ListAssetPropertiesCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link ListAssetPropertiesCommandInput} for command's `input` shape.
25
+ * @see {@link ListAssetPropertiesCommandOutput} for command's `response` shape.
26
+ * @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class ListAssetPropertiesCommand extends $Command<ListAssetPropertiesCommandInput, ListAssetPropertiesCommandOutput, IoTSiteWiseClientResolvedConfig> {
30
+ readonly input: ListAssetPropertiesCommandInput;
31
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
32
+ constructor(input: ListAssetPropertiesCommandInput);
33
+ /**
34
+ * @internal
35
+ */
36
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetPropertiesCommandInput, ListAssetPropertiesCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -8,9 +8,8 @@ export interface ListBulkImportJobsCommandInput extends ListBulkImportJobsReques
8
8
  export interface ListBulkImportJobsCommandOutput extends ListBulkImportJobsResponse, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves a paginated list of bulk import job requests. For more information,
12
- * see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/ListBulkImportJobs.html">List bulk import jobs (CLI)</a>
13
- * in the <i>IoT SiteWise User Guide</i>.</p>
11
+ * <p>Retrieves a paginated list of bulk import job requests. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/ListBulkImportJobs.html">List bulk
12
+ * import jobs (CLI)</a> in the <i>IoT SiteWise User Guide</i>.</p>
14
13
  * @example
15
14
  * Use a bare-bones client and the command you need to make an API call.
16
15
  * ```javascript
@@ -43,7 +43,9 @@ export * from "./GetAssetPropertyValueCommand";
43
43
  export * from "./GetAssetPropertyValueHistoryCommand";
44
44
  export * from "./GetInterpolatedAssetPropertyValuesCommand";
45
45
  export * from "./ListAccessPoliciesCommand";
46
+ export * from "./ListAssetModelPropertiesCommand";
46
47
  export * from "./ListAssetModelsCommand";
48
+ export * from "./ListAssetPropertiesCommand";
47
49
  export * from "./ListAssetRelationshipsCommand";
48
50
  export * from "./ListAssetsCommand";
49
51
  export * from "./ListAssociatedAssetsCommand";