@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 { CreateComponentTypeRequest, CreateComponentTypeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateComponentTypeCommand}.
8
10
  */
9
11
  export interface CreateComponentTypeCommandInput extends CreateComponentTypeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateComponentTypeCommand}.
13
17
  */
14
18
  export interface CreateComponentTypeCommandOutput extends CreateComponentTypeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a component type.</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 CreateComponentTypeCommandOutput extends CreateComponentTypeRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateComponentTypeCommandInput - {@link CreateComponentTypeCommandInput}
34
+ * @returns {@link CreateComponentTypeCommandOutput}
28
35
  * @see {@link CreateComponentTypeCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateComponentTypeCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes
52
59
  export declare class CreateComponentTypeCommand extends $Command<CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: CreateComponentTypeCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateComponentTypeCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput>;
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 { CreateEntityRequest, CreateEntityResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateEntityCommand}.
8
10
  */
9
11
  export interface CreateEntityCommandInput extends CreateEntityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateEntityCommand}.
13
17
  */
14
18
  export interface CreateEntityCommandOutput extends CreateEntityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an entity.</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 CreateEntityCommandOutput extends CreateEntityResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateEntityCommandInput - {@link CreateEntityCommandInput}
34
+ * @returns {@link CreateEntityCommandOutput}
28
35
  * @see {@link CreateEntityCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateEntityCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
52
59
  export declare class CreateEntityCommand extends $Command<CreateEntityCommandInput, CreateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: CreateEntityCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateEntityCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEntityCommandInput, CreateEntityCommandOutput>;
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 { CreateSceneRequest, CreateSceneResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateSceneCommand}.
8
10
  */
9
11
  export interface CreateSceneCommandInput extends CreateSceneRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateSceneCommand}.
13
17
  */
14
18
  export interface CreateSceneCommandOutput extends CreateSceneResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates 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 CreateSceneCommandOutput extends CreateSceneResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateSceneCommandInput - {@link CreateSceneCommandInput}
34
+ * @returns {@link CreateSceneCommandOutput}
28
35
  * @see {@link CreateSceneCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateSceneCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateSceneCommandOutput extends CreateSceneResponse, __Metadat
52
59
  export declare class CreateSceneCommand extends $Command<CreateSceneCommandInput, CreateSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: CreateSceneCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateSceneCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSceneCommandInput, CreateSceneCommandOutput>;
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 { CreateSyncJobRequest, CreateSyncJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateSyncJobCommand}.
8
10
  */
9
11
  export interface CreateSyncJobCommandInput extends CreateSyncJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateSyncJobCommand}.
13
17
  */
14
18
  export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This action creates a 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 CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateSyncJobCommandInput - {@link CreateSyncJobCommandInput}
34
+ * @returns {@link CreateSyncJobCommandOutput}
28
35
  * @see {@link CreateSyncJobCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateSyncJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met
52
59
  export declare class CreateSyncJobCommand extends $Command<CreateSyncJobCommandInput, CreateSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: CreateSyncJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateSyncJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSyncJobCommandInput, CreateSyncJobCommandOutput>;
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 { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateWorkspaceCommand}.
8
10
  */
9
11
  export interface CreateWorkspaceCommandInput extends CreateWorkspaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateWorkspaceCommand}.
13
17
  */
14
18
  export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a workplace.</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 CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateWorkspaceCommandInput - {@link CreateWorkspaceCommandInput}
34
+ * @returns {@link CreateWorkspaceCommandOutput}
28
35
  * @see {@link CreateWorkspaceCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateWorkspaceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
52
59
  export declare class CreateWorkspaceCommand extends $Command<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: CreateWorkspaceCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateWorkspaceCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput>;
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 { DeleteComponentTypeRequest, DeleteComponentTypeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteComponentTypeCommand}.
8
10
  */
9
11
  export interface DeleteComponentTypeCommandInput extends DeleteComponentTypeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteComponentTypeCommand}.
13
17
  */
14
18
  export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a component type.</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 DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteComponentTypeCommandInput - {@link DeleteComponentTypeCommandInput}
34
+ * @returns {@link DeleteComponentTypeCommandOutput}
28
35
  * @see {@link DeleteComponentTypeCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteComponentTypeCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes
49
56
  export declare class DeleteComponentTypeCommand extends $Command<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: DeleteComponentTypeCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteComponentTypeCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput>;
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 { DeleteEntityRequest, DeleteEntityResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteEntityCommand}.
8
10
  */
9
11
  export interface DeleteEntityCommandInput extends DeleteEntityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteEntityCommand}.
13
17
  */
14
18
  export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an entity.</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 DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteEntityCommandInput - {@link DeleteEntityCommandInput}
34
+ * @returns {@link DeleteEntityCommandOutput}
28
35
  * @see {@link DeleteEntityCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteEntityCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad
49
56
  export declare class DeleteEntityCommand extends $Command<DeleteEntityCommandInput, DeleteEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: DeleteEntityCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteEntityCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEntityCommandInput, DeleteEntityCommandOutput>;
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 { DeleteSceneRequest, DeleteSceneResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSceneCommand}.
8
10
  */
9
11
  export interface DeleteSceneCommandInput extends DeleteSceneRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSceneCommand}.
13
17
  */
14
18
  export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes 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 DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteSceneCommandInput - {@link DeleteSceneCommandInput}
34
+ * @returns {@link DeleteSceneCommandOutput}
28
35
  * @see {@link DeleteSceneCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteSceneCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat
49
56
  export declare class DeleteSceneCommand extends $Command<DeleteSceneCommandInput, DeleteSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: DeleteSceneCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteSceneCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSceneCommandInput, DeleteSceneCommandOutput>;
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 { DeleteSyncJobRequest, DeleteSyncJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSyncJobCommand}.
8
10
  */
9
11
  export interface DeleteSyncJobCommandInput extends DeleteSyncJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSyncJobCommand}.
13
17
  */
14
18
  export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete 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 DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteSyncJobCommandInput - {@link DeleteSyncJobCommandInput}
34
+ * @returns {@link DeleteSyncJobCommandOutput}
28
35
  * @see {@link DeleteSyncJobCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteSyncJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met
52
59
  export declare class DeleteSyncJobCommand extends $Command<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: DeleteSyncJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteSyncJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput>;
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 { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteWorkspaceCommand}.
8
10
  */
9
11
  export interface DeleteWorkspaceCommandInput extends DeleteWorkspaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteWorkspaceCommand}.
13
17
  */
14
18
  export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes 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 DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteWorkspaceCommandInput - {@link DeleteWorkspaceCommandInput}
34
+ * @returns {@link DeleteWorkspaceCommandOutput}
28
35
  * @see {@link DeleteWorkspaceCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteWorkspaceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
49
56
  export declare class DeleteWorkspaceCommand extends $Command<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: DeleteWorkspaceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteWorkspaceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,17 +4,23 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { ExecuteQueryRequest, ExecuteQueryResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExecuteQueryCommand}.
8
10
  */
9
11
  export interface ExecuteQueryCommandInput extends ExecuteQueryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExecuteQueryCommand}.
13
17
  */
14
18
  export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
17
- * <p>Run queries to access information from your knowledge graph of entities within individual workspaces.</p>
21
+ * @public
22
+ * <p>Run queries to access information from your knowledge graph of entities within
23
+ * individual workspaces.</p>
18
24
  * @example
19
25
  * Use a bare-bones client and the command you need to make an API call.
20
26
  * ```javascript
@@ -25,6 +31,8 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
25
31
  * const response = await client.send(command);
26
32
  * ```
27
33
  *
34
+ * @param ExecuteQueryCommandInput - {@link ExecuteQueryCommandInput}
35
+ * @returns {@link ExecuteQueryCommandOutput}
28
36
  * @see {@link ExecuteQueryCommandInput} for command's `input` shape.
29
37
  * @see {@link ExecuteQueryCommandOutput} for command's `response` shape.
30
38
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +60,20 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
52
60
  export declare class ExecuteQueryCommand extends $Command<ExecuteQueryCommandInput, ExecuteQueryCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
61
  readonly input: ExecuteQueryCommandInput;
54
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
55
66
  constructor(input: ExecuteQueryCommandInput);
56
67
  /**
57
68
  * @internal
58
69
  */
59
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteQueryCommandInput, ExecuteQueryCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
60
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
61
78
  private deserialize;
62
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { GetComponentTypeRequest, GetComponentTypeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetComponentTypeCommand}.
8
10
  */
9
11
  export interface GetComponentTypeCommandInput extends GetComponentTypeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetComponentTypeCommand}.
13
17
  */
14
18
  export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about a component type.</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 GetComponentTypeCommandOutput extends GetComponentTypeResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetComponentTypeCommandInput - {@link GetComponentTypeCommandInput}
34
+ * @returns {@link GetComponentTypeCommandOutput}
28
35
  * @see {@link GetComponentTypeCommandInput} for command's `input` shape.
29
36
  * @see {@link GetComponentTypeCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse,
49
56
  export declare class GetComponentTypeCommand extends $Command<GetComponentTypeCommandInput, GetComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: GetComponentTypeCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetComponentTypeCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentTypeCommandInput, GetComponentTypeCommandOutput>;
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 { GetEntityRequest, GetEntityResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEntityCommand}.
8
10
  */
9
11
  export interface GetEntityCommandInput extends GetEntityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEntityCommand}.
13
17
  */
14
18
  export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about an entity.</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 GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetEntityCommandInput - {@link GetEntityCommandInput}
34
+ * @returns {@link GetEntityCommandOutput}
28
35
  * @see {@link GetEntityCommandInput} for command's `input` shape.
29
36
  * @see {@link GetEntityCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
49
56
  export declare class GetEntityCommand extends $Command<GetEntityCommandInput, GetEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: GetEntityCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetEntityCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEntityCommandInput, GetEntityCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }