@aws-sdk/client-iottwinmaker 3.295.0 → 3.297.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 (57) hide show
  1. package/README.md +7 -5
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/protocols/Aws_restJson1.js +39 -0
  4. package/dist-es/endpoint/ruleset.js +3 -3
  5. package/dist-es/protocols/Aws_restJson1.js +39 -0
  6. package/dist-types/IoTTwinMaker.d.ts +51 -10
  7. package/dist-types/IoTTwinMakerClient.d.ts +31 -9
  8. package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateComponentTypeCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateEntityCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateSceneCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateSyncJobCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateWorkspaceCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteComponentTypeCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteEntityCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteSceneCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteSyncJobCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +16 -0
  19. package/dist-types/commands/ExecuteQueryCommand.d.ts +18 -1
  20. package/dist-types/commands/GetComponentTypeCommand.d.ts +16 -0
  21. package/dist-types/commands/GetEntityCommand.d.ts +16 -0
  22. package/dist-types/commands/GetPricingPlanCommand.d.ts +16 -0
  23. package/dist-types/commands/GetPropertyValueCommand.d.ts +18 -1
  24. package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +21 -3
  25. package/dist-types/commands/GetSceneCommand.d.ts +16 -0
  26. package/dist-types/commands/GetSyncJobCommand.d.ts +16 -0
  27. package/dist-types/commands/GetWorkspaceCommand.d.ts +16 -0
  28. package/dist-types/commands/ListComponentTypesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListEntitiesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListScenesCommand.d.ts +16 -0
  31. package/dist-types/commands/ListSyncJobsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListSyncResourcesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/ListWorkspacesCommand.d.ts +16 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateComponentTypeCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateEntityCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateSceneCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateWorkspaceCommand.d.ts +16 -0
  42. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  43. package/dist-types/models/IoTTwinMakerServiceException.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +463 -82
  45. package/dist-types/pagination/ExecuteQueryPaginator.d.ts +3 -0
  46. package/dist-types/pagination/GetPropertyValueHistoryPaginator.d.ts +3 -0
  47. package/dist-types/pagination/GetPropertyValuePaginator.d.ts +3 -0
  48. package/dist-types/pagination/Interfaces.d.ts +3 -0
  49. package/dist-types/pagination/ListComponentTypesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListEntitiesPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListScenesPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListSyncJobsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListSyncResourcesPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListWorkspacesPaginator.d.ts +3 -0
  55. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  56. package/dist-types/ts3.4/models/models_0.d.ts +4 -0
  57. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetPricingPlanRequest, GetPricingPlanResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPricingPlanCommand}.
8
10
  */
9
11
  export interface GetPricingPlanCommandInput extends GetPricingPlanRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPricingPlanCommand}.
13
17
  */
14
18
  export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the pricing plan.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetPricingPlanCommandInput - {@link GetPricingPlanCommandInput}
34
+ * @returns {@link GetPricingPlanCommandOutput}
28
35
  * @see {@link GetPricingPlanCommandInput} for command's `input` shape.
29
36
  * @see {@link GetPricingPlanCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M
46
53
  export declare class GetPricingPlanCommand extends $Command<GetPricingPlanCommandInput, GetPricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: GetPricingPlanCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetPricingPlanCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPricingPlanCommandInput, GetPricingPlanCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,18 +4,24 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetPropertyValueRequest, GetPropertyValueResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPropertyValueCommand}.
8
10
  */
9
11
  export interface GetPropertyValueCommandInput extends GetPropertyValueRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPropertyValueCommand}.
13
17
  */
14
18
  export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the property values for a component, component type, entity, or workspace.</p>
18
- * <p>You must specify a value for either <code>componentName</code>, <code>componentTypeId</code>, <code>entityId</code>, or <code>workspaceId</code>.</p>
23
+ * <p>You must specify a value for either <code>componentName</code>,
24
+ * <code>componentTypeId</code>, <code>entityId</code>, or <code>workspaceId</code>.</p>
19
25
  * @example
20
26
  * Use a bare-bones client and the command you need to make an API call.
21
27
  * ```javascript
@@ -26,6 +32,8 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
26
32
  * const response = await client.send(command);
27
33
  * ```
28
34
  *
35
+ * @param GetPropertyValueCommandInput - {@link GetPropertyValueCommandInput}
36
+ * @returns {@link GetPropertyValueCommandOutput}
29
37
  * @see {@link GetPropertyValueCommandInput} for command's `input` shape.
30
38
  * @see {@link GetPropertyValueCommandOutput} for command's `response` shape.
31
39
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -56,11 +64,20 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
56
64
  export declare class GetPropertyValueCommand extends $Command<GetPropertyValueCommandInput, GetPropertyValueCommandOutput, IoTTwinMakerClientResolvedConfig> {
57
65
  readonly input: GetPropertyValueCommandInput;
58
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
59
70
  constructor(input: GetPropertyValueCommandInput);
60
71
  /**
61
72
  * @internal
62
73
  */
63
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPropertyValueCommandInput, GetPropertyValueCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
64
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
65
82
  private deserialize;
66
83
  }
@@ -4,19 +4,26 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetPropertyValueHistoryRequest, GetPropertyValueHistoryResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPropertyValueHistoryCommand}.
8
10
  */
9
11
  export interface GetPropertyValueHistoryCommandInput extends GetPropertyValueHistoryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPropertyValueHistoryCommand}.
13
17
  */
14
18
  export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHistoryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
17
- * <p>Retrieves information about the history of a time series property value for a component, component type, entity, or workspace.</p>
18
- * <p>You must specify a value for <code>workspaceId</code>. For entity-specific queries, specify values for <code>componentName</code> and
19
- * <code>entityId</code>. For cross-entity quries, specify a value for <code>componentTypeId</code>.</p>
21
+ * @public
22
+ * <p>Retrieves information about the history of a time series property value for a component,
23
+ * component type, entity, or workspace.</p>
24
+ * <p>You must specify a value for <code>workspaceId</code>. For entity-specific queries,
25
+ * specify values for <code>componentName</code> and <code>entityId</code>. For cross-entity
26
+ * quries, specify a value for <code>componentTypeId</code>.</p>
20
27
  * @example
21
28
  * Use a bare-bones client and the command you need to make an API call.
22
29
  * ```javascript
@@ -27,6 +34,8 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
27
34
  * const response = await client.send(command);
28
35
  * ```
29
36
  *
37
+ * @param GetPropertyValueHistoryCommandInput - {@link GetPropertyValueHistoryCommandInput}
38
+ * @returns {@link GetPropertyValueHistoryCommandOutput}
30
39
  * @see {@link GetPropertyValueHistoryCommandInput} for command's `input` shape.
31
40
  * @see {@link GetPropertyValueHistoryCommandOutput} for command's `response` shape.
32
41
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -57,11 +66,20 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
57
66
  export declare class GetPropertyValueHistoryCommand extends $Command<GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput, IoTTwinMakerClientResolvedConfig> {
58
67
  readonly input: GetPropertyValueHistoryCommandInput;
59
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
60
72
  constructor(input: GetPropertyValueHistoryCommandInput);
61
73
  /**
62
74
  * @internal
63
75
  */
64
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
65
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
66
84
  private deserialize;
67
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetSceneRequest, GetSceneResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSceneCommand}.
8
10
  */
9
11
  export interface GetSceneCommandInput extends GetSceneRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSceneCommand}.
13
17
  */
14
18
  export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about a scene.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetSceneCommandInput - {@link GetSceneCommandInput}
34
+ * @returns {@link GetSceneCommandOutput}
28
35
  * @see {@link GetSceneCommandInput} for command's `input` shape.
29
36
  * @see {@link GetSceneCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare
49
56
  export declare class GetSceneCommand extends $Command<GetSceneCommandInput, GetSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: GetSceneCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetSceneCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSceneCommandInput, GetSceneCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetSyncJobRequest, GetSyncJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSyncJobCommand}.
8
10
  */
9
11
  export interface GetSyncJobCommandInput extends GetSyncJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSyncJobCommand}.
13
17
  */
14
18
  export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the SyncJob.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetSyncJobCommandInput - {@link GetSyncJobCommandInput}
34
+ * @returns {@link GetSyncJobCommandOutput}
28
35
  * @see {@link GetSyncJobCommandInput} for command's `input` shape.
29
36
  * @see {@link GetSyncJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB
52
59
  export declare class GetSyncJobCommand extends $Command<GetSyncJobCommandInput, GetSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: GetSyncJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetSyncJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSyncJobCommandInput, GetSyncJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetWorkspaceRequest, GetWorkspaceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkspaceCommand}.
8
10
  */
9
11
  export interface GetWorkspaceCommandInput extends GetWorkspaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkspaceCommand}.
13
17
  */
14
18
  export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about a workspace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWorkspaceCommandInput - {@link GetWorkspaceCommandInput}
34
+ * @returns {@link GetWorkspaceCommandOutput}
28
35
  * @see {@link GetWorkspaceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWorkspaceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad
49
56
  export declare class GetWorkspaceCommand extends $Command<GetWorkspaceCommandInput, GetWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: GetWorkspaceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetWorkspaceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkspaceCommandInput, GetWorkspaceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListComponentTypesRequest, ListComponentTypesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListComponentTypesCommand}.
8
10
  */
9
11
  export interface ListComponentTypesCommandInput extends ListComponentTypesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListComponentTypesCommand}.
13
17
  */
14
18
  export interface ListComponentTypesCommandOutput extends ListComponentTypesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all component types in a workspace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListComponentTypesCommandInput - {@link ListComponentTypesCommandInput}
34
+ * @returns {@link ListComponentTypesCommandOutput}
28
35
  * @see {@link ListComponentTypesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListComponentTypesCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo
46
53
  export declare class ListComponentTypesCommand extends $Command<ListComponentTypesCommandInput, ListComponentTypesCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: ListComponentTypesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListComponentTypesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentTypesCommandInput, ListComponentTypesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEntitiesCommand}.
8
10
  */
9
11
  export interface ListEntitiesCommandInput extends ListEntitiesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEntitiesCommand}.
13
17
  */
14
18
  export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all entities in a workspace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEntitiesCommandInput - {@link ListEntitiesCommandInput}
34
+ * @returns {@link ListEntitiesCommandOutput}
28
35
  * @see {@link ListEntitiesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEntitiesCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
46
53
  export declare class ListEntitiesCommand extends $Command<ListEntitiesCommandInput, ListEntitiesCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: ListEntitiesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListEntitiesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEntitiesCommandInput, ListEntitiesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListScenesRequest, ListScenesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListScenesCommand}.
8
10
  */
9
11
  export interface ListScenesCommandInput extends ListScenesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListScenesCommand}.
13
17
  */
14
18
  export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all scenes in a workspace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListScenesCommandInput - {@link ListScenesCommandInput}
34
+ * @returns {@link ListScenesCommandOutput}
28
35
  * @see {@link ListScenesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListScenesCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB
46
53
  export declare class ListScenesCommand extends $Command<ListScenesCommandInput, ListScenesCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: ListScenesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListScenesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListScenesCommandInput, ListScenesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListSyncJobsRequest, ListSyncJobsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSyncJobsCommand}.
8
10
  */
9
11
  export interface ListSyncJobsCommandInput extends ListSyncJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSyncJobsCommand}.
13
17
  */
14
18
  export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List all SyncJobs.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSyncJobsCommandInput - {@link ListSyncJobsCommandInput}
34
+ * @returns {@link ListSyncJobsCommandOutput}
28
35
  * @see {@link ListSyncJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSyncJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad
49
56
  export declare class ListSyncJobsCommand extends $Command<ListSyncJobsCommandInput, ListSyncJobsCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: ListSyncJobsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListSyncJobsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSyncJobsCommandInput, ListSyncJobsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListSyncResourcesRequest, ListSyncResourcesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSyncResourcesCommand}.
8
10
  */
9
11
  export interface ListSyncResourcesCommandInput extends ListSyncResourcesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSyncResourcesCommand}.
13
17
  */
14
18
  export interface ListSyncResourcesCommandOutput extends ListSyncResourcesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the sync resources.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSyncResourcesCommandInput - {@link ListSyncResourcesCommandInput}
34
+ * @returns {@link ListSyncResourcesCommandOutput}
28
35
  * @see {@link ListSyncResourcesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSyncResourcesCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons
49
56
  export declare class ListSyncResourcesCommand extends $Command<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: ListSyncResourcesCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListSyncResourcesCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all tags associated with a resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
40
47
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
41
48
  readonly input: ListTagsForResourceCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListTagsForResourceCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }