@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 { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkspacesCommand}.
8
10
  */
9
11
  export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkspacesCommand}.
13
17
  */
14
18
  export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about workspaces in the current account.</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 ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkspacesCommandInput - {@link ListWorkspacesCommandInput}
34
+ * @returns {@link ListWorkspacesCommandOutput}
28
35
  * @see {@link ListWorkspacesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkspacesCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
46
53
  export declare class ListWorkspacesCommand extends $Command<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: ListWorkspacesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListWorkspacesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkspacesCommandInput, ListWorkspacesCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds tags to 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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from 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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
40
47
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
41
48
  readonly input: UntagResourceCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: UntagResourceCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { UpdateComponentTypeRequest, UpdateComponentTypeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateComponentTypeCommand}.
8
10
  */
9
11
  export interface UpdateComponentTypeCommandInput extends UpdateComponentTypeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateComponentTypeCommand}.
13
17
  */
14
18
  export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates information in 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 UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateComponentTypeCommandInput - {@link UpdateComponentTypeCommandInput}
34
+ * @returns {@link UpdateComponentTypeCommandOutput}
28
35
  * @see {@link UpdateComponentTypeCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateComponentTypeCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes
52
59
  export declare class UpdateComponentTypeCommand extends $Command<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: UpdateComponentTypeCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateComponentTypeCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput>;
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 { UpdateEntityRequest, UpdateEntityResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEntityCommand}.
8
10
  */
9
11
  export interface UpdateEntityCommandInput extends UpdateEntityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEntityCommand}.
13
17
  */
14
18
  export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates 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 UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateEntityCommandInput - {@link UpdateEntityCommandInput}
34
+ * @returns {@link UpdateEntityCommandOutput}
28
35
  * @see {@link UpdateEntityCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateEntityCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -55,11 +62,20 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
55
62
  export declare class UpdateEntityCommand extends $Command<UpdateEntityCommandInput, UpdateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
56
63
  readonly input: UpdateEntityCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: UpdateEntityCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEntityCommandInput, UpdateEntityCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
5
  import { UpdatePricingPlanRequest, UpdatePricingPlanResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdatePricingPlanCommand}.
8
10
  */
9
11
  export interface UpdatePricingPlanCommandInput extends UpdatePricingPlanRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdatePricingPlanCommand}.
13
17
  */
14
18
  export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update 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 UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdatePricingPlanCommandInput - {@link UpdatePricingPlanCommandInput}
34
+ * @returns {@link UpdatePricingPlanCommandOutput}
28
35
  * @see {@link UpdatePricingPlanCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdatePricingPlanCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons
46
53
  export declare class UpdatePricingPlanCommand extends $Command<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
47
54
  readonly input: UpdatePricingPlanCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UpdatePricingPlanCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput>;
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 { UpdateSceneRequest, UpdateSceneResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateSceneCommand}.
8
10
  */
9
11
  export interface UpdateSceneCommandInput extends UpdateSceneRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateSceneCommand}.
13
17
  */
14
18
  export interface UpdateSceneCommandOutput extends UpdateSceneResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates 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 UpdateSceneCommandOutput extends UpdateSceneResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateSceneCommandInput - {@link UpdateSceneCommandInput}
34
+ * @returns {@link UpdateSceneCommandOutput}
28
35
  * @see {@link UpdateSceneCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateSceneCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateSceneCommandOutput extends UpdateSceneResponse, __Metadat
49
56
  export declare class UpdateSceneCommand extends $Command<UpdateSceneCommandInput, UpdateSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
50
57
  readonly input: UpdateSceneCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateSceneCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSceneCommandInput, UpdateSceneCommandOutput>;
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 { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateWorkspaceCommand}.
8
10
  */
9
11
  export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateWorkspaceCommand}.
13
17
  */
14
18
  export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates 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 UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateWorkspaceCommandInput - {@link UpdateWorkspaceCommandInput}
34
+ * @returns {@link UpdateWorkspaceCommandOutput}
28
35
  * @see {@link UpdateWorkspaceCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateWorkspaceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _
52
59
  export declare class UpdateWorkspaceCommand extends $Command<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
53
60
  readonly input: UpdateWorkspaceCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateWorkspaceCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region: string;
15
+ Region?: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from IoTTwinMaker service.
4
6
  */
5
7
  export declare class IoTTwinMakerServiceException extends __ServiceException {