@aws-sdk/client-iotthingsgraph 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 (51) hide show
  1. package/dist-types/IoTThingsGraph.d.ts +36 -0
  2. package/dist-types/IoTThingsGraphClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateEntityToThingCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +16 -0
  11. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +16 -0
  12. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +16 -0
  13. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeNamespaceCommand.d.ts +16 -0
  15. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEntitiesCommand.d.ts +16 -0
  17. package/dist-types/commands/GetFlowTemplateCommand.d.ts +16 -0
  18. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +16 -0
  19. package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSystemInstanceCommand.d.ts +16 -0
  21. package/dist-types/commands/GetSystemTemplateCommand.d.ts +16 -0
  22. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +16 -0
  23. package/dist-types/commands/GetUploadStatusCommand.d.ts +16 -0
  24. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/SearchEntitiesCommand.d.ts +16 -0
  27. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +16 -0
  28. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +16 -0
  30. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +16 -0
  31. package/dist-types/commands/SearchThingsCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +16 -0
  34. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +16 -0
  37. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +16 -0
  38. package/dist-types/models/IoTThingsGraphServiceException.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +274 -0
  40. package/dist-types/pagination/GetFlowTemplateRevisionsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/GetSystemTemplateRevisionsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/Interfaces.d.ts +3 -0
  43. package/dist-types/pagination/ListFlowExecutionMessagesPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  45. package/dist-types/pagination/SearchEntitiesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/SearchFlowExecutionsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/SearchFlowTemplatesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/SearchSystemInstancesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/SearchSystemTemplatesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/SearchThingsPaginator.d.ts +3 -0
  51. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DeleteSystemInstanceRequest, DeleteSystemInstanceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSystemInstanceCommand}.
8
10
  */
9
11
  export interface DeleteSystemInstanceCommandInput extends DeleteSystemInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSystemInstanceCommand}.
13
17
  */
14
18
  export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Deletes a system instance.
@@ -29,6 +34,8 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DeleteSystemInstanceCommandInput - {@link DeleteSystemInstanceCommandInput}
38
+ * @returns {@link DeleteSystemInstanceCommandOutput}
32
39
  * @see {@link DeleteSystemInstanceCommandInput} for command's `input` shape.
33
40
  * @see {@link DeleteSystemInstanceCommandOutput} for command's `response` shape.
34
41
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -50,11 +57,20 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
50
57
  export declare class DeleteSystemInstanceCommand extends $Command<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
51
58
  readonly input: DeleteSystemInstanceCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DeleteSystemInstanceCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DeleteSystemTemplateRequest, DeleteSystemTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSystemTemplateCommand}.
8
10
  */
9
11
  export interface DeleteSystemTemplateCommandInput extends DeleteSystemTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSystemTemplateCommand}.
13
17
  */
14
18
  export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Deletes a system. New deployments can't contain the system after its deletion.
@@ -28,6 +33,8 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DeleteSystemTemplateCommandInput - {@link DeleteSystemTemplateCommandInput}
37
+ * @returns {@link DeleteSystemTemplateCommandOutput}
31
38
  * @see {@link DeleteSystemTemplateCommandInput} for command's `input` shape.
32
39
  * @see {@link DeleteSystemTemplateCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
49
56
  export declare class DeleteSystemTemplateCommand extends $Command<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
50
57
  readonly input: DeleteSystemTemplateCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteSystemTemplateCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput>;
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 { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DeploySystemInstanceRequest, DeploySystemInstanceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeploySystemInstanceCommand}.
8
10
  */
9
11
  export interface DeploySystemInstanceCommandInput extends DeploySystemInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeploySystemInstanceCommand}.
13
17
  */
14
18
  export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>
@@ -38,6 +43,8 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
38
43
  * const response = await client.send(command);
39
44
  * ```
40
45
  *
46
+ * @param DeploySystemInstanceCommandInput - {@link DeploySystemInstanceCommandInput}
47
+ * @returns {@link DeploySystemInstanceCommandOutput}
41
48
  * @see {@link DeploySystemInstanceCommandInput} for command's `input` shape.
42
49
  * @see {@link DeploySystemInstanceCommandOutput} for command's `response` shape.
43
50
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -62,11 +69,20 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
62
69
  export declare class DeploySystemInstanceCommand extends $Command<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
63
70
  readonly input: DeploySystemInstanceCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: DeploySystemInstanceCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DeprecateFlowTemplateRequest, DeprecateFlowTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeprecateFlowTemplateCommand}.
8
10
  */
9
11
  export interface DeprecateFlowTemplateCommandInput extends DeprecateFlowTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeprecateFlowTemplateCommand}.
13
17
  */
14
18
  export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Deprecates the specified workflow. This action marks the workflow for deletion. Deprecated flows can't be deployed, but existing deployments will continue to run.</p>
@@ -27,6 +32,8 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeprecateFlowTemplateCommandInput - {@link DeprecateFlowTemplateCommandInput}
36
+ * @returns {@link DeprecateFlowTemplateCommandOutput}
30
37
  * @see {@link DeprecateFlowTemplateCommandInput} for command's `input` shape.
31
38
  * @see {@link DeprecateFlowTemplateCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
48
55
  export declare class DeprecateFlowTemplateCommand extends $Command<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: DeprecateFlowTemplateCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: DeprecateFlowTemplateCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DeprecateSystemTemplateRequest, DeprecateSystemTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeprecateSystemTemplateCommand}.
8
10
  */
9
11
  export interface DeprecateSystemTemplateCommandInput extends DeprecateSystemTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeprecateSystemTemplateCommand}.
13
17
  */
14
18
  export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Deprecates the specified system.</p>
@@ -27,6 +32,8 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeprecateSystemTemplateCommandInput - {@link DeprecateSystemTemplateCommandInput}
36
+ * @returns {@link DeprecateSystemTemplateCommandOutput}
30
37
  * @see {@link DeprecateSystemTemplateCommandInput} for command's `input` shape.
31
38
  * @see {@link DeprecateSystemTemplateCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
48
55
  export declare class DeprecateSystemTemplateCommand extends $Command<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: DeprecateSystemTemplateCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: DeprecateSystemTemplateCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeNamespaceCommand}.
8
10
  */
9
11
  export interface DescribeNamespaceCommandInput extends DescribeNamespaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeNamespaceCommand}.
13
17
  */
14
18
  export interface DescribeNamespaceCommandOutput extends DescribeNamespaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets the latest version of the user's namespace and the public version that it is tracking.</p>
@@ -27,6 +32,8 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DescribeNamespaceCommandInput - {@link DescribeNamespaceCommandInput}
36
+ * @returns {@link DescribeNamespaceCommandOutput}
30
37
  * @see {@link DescribeNamespaceCommandInput} for command's `input` shape.
31
38
  * @see {@link DescribeNamespaceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
48
55
  export declare class DescribeNamespaceCommand extends $Command<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: DescribeNamespaceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: DescribeNamespaceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { DissociateEntityFromThingRequest, DissociateEntityFromThingResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DissociateEntityFromThingCommand}.
8
10
  */
9
11
  export interface DissociateEntityFromThingCommandInput extends DissociateEntityFromThingRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DissociateEntityFromThingCommand}.
13
17
  */
14
18
  export interface DissociateEntityFromThingCommandOutput extends DissociateEntityFromThingResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Dissociates a device entity from a concrete thing. The action takes only the type of the entity that you need to dissociate because only
@@ -28,6 +33,8 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DissociateEntityFromThingCommandInput - {@link DissociateEntityFromThingCommandInput}
37
+ * @returns {@link DissociateEntityFromThingCommandOutput}
31
38
  * @see {@link DissociateEntityFromThingCommandInput} for command's `input` shape.
32
39
  * @see {@link DissociateEntityFromThingCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
49
56
  export declare class DissociateEntityFromThingCommand extends $Command<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
50
57
  readonly input: DissociateEntityFromThingCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DissociateEntityFromThingCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput>;
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 { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetEntitiesRequest, GetEntitiesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEntitiesCommand}.
8
10
  */
9
11
  export interface GetEntitiesCommandInput extends GetEntitiesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEntitiesCommand}.
13
17
  */
14
18
  export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets definitions of the specified entities. Uses the latest version of the user's namespace by default. This API returns the
@@ -58,6 +63,8 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
58
63
  * const response = await client.send(command);
59
64
  * ```
60
65
  *
66
+ * @param GetEntitiesCommandInput - {@link GetEntitiesCommandInput}
67
+ * @returns {@link GetEntitiesCommandOutput}
61
68
  * @see {@link GetEntitiesCommandInput} for command's `input` shape.
62
69
  * @see {@link GetEntitiesCommandOutput} for command's `response` shape.
63
70
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -79,11 +86,20 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
79
86
  export declare class GetEntitiesCommand extends $Command<GetEntitiesCommandInput, GetEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
80
87
  readonly input: GetEntitiesCommandInput;
81
88
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
89
+ /**
90
+ * @public
91
+ */
82
92
  constructor(input: GetEntitiesCommandInput);
83
93
  /**
84
94
  * @internal
85
95
  */
86
96
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEntitiesCommandInput, GetEntitiesCommandOutput>;
97
+ /**
98
+ * @internal
99
+ */
87
100
  private serialize;
101
+ /**
102
+ * @internal
103
+ */
88
104
  private deserialize;
89
105
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetFlowTemplateRequest, GetFlowTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetFlowTemplateCommand}.
8
10
  */
9
11
  export interface GetFlowTemplateCommandInput extends GetFlowTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetFlowTemplateCommand}.
13
17
  */
14
18
  export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets the latest version of the <code>DefinitionDocument</code> and <code>FlowTemplateSummary</code> for the specified workflow.</p>
@@ -27,6 +32,8 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetFlowTemplateCommandInput - {@link GetFlowTemplateCommandInput}
36
+ * @returns {@link GetFlowTemplateCommandOutput}
30
37
  * @see {@link GetFlowTemplateCommandInput} for command's `input` shape.
31
38
  * @see {@link GetFlowTemplateCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
48
55
  export declare class GetFlowTemplateCommand extends $Command<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: GetFlowTemplateCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: GetFlowTemplateCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetFlowTemplateRevisionsRequest, GetFlowTemplateRevisionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetFlowTemplateRevisionsCommand}.
8
10
  */
9
11
  export interface GetFlowTemplateRevisionsCommandInput extends GetFlowTemplateRevisionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetFlowTemplateRevisionsCommand}.
13
17
  */
14
18
  export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRevisionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets revisions of the specified workflow. Only the last 100 revisions are stored. If the workflow has been deprecated,
@@ -28,6 +33,8 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param GetFlowTemplateRevisionsCommandInput - {@link GetFlowTemplateRevisionsCommandInput}
37
+ * @returns {@link GetFlowTemplateRevisionsCommandOutput}
31
38
  * @see {@link GetFlowTemplateRevisionsCommandInput} for command's `input` shape.
32
39
  * @see {@link GetFlowTemplateRevisionsCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
49
56
  export declare class GetFlowTemplateRevisionsCommand extends $Command<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
50
57
  readonly input: GetFlowTemplateRevisionsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetFlowTemplateRevisionsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput>;
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 { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetNamespaceDeletionStatusRequest, GetNamespaceDeletionStatusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetNamespaceDeletionStatusCommand}.
8
10
  */
9
11
  export interface GetNamespaceDeletionStatusCommandInput extends GetNamespaceDeletionStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetNamespaceDeletionStatusCommand}.
13
17
  */
14
18
  export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDeletionStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets the status of a namespace deletion task.</p>
@@ -27,6 +32,8 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetNamespaceDeletionStatusCommandInput - {@link GetNamespaceDeletionStatusCommandInput}
36
+ * @returns {@link GetNamespaceDeletionStatusCommandOutput}
30
37
  * @see {@link GetNamespaceDeletionStatusCommandInput} for command's `input` shape.
31
38
  * @see {@link GetNamespaceDeletionStatusCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -45,11 +52,20 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
45
52
  export declare class GetNamespaceDeletionStatusCommand extends $Command<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
46
53
  readonly input: GetNamespaceDeletionStatusCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: GetNamespaceDeletionStatusCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetSystemInstanceRequest, GetSystemInstanceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSystemInstanceCommand}.
8
10
  */
9
11
  export interface GetSystemInstanceCommandInput extends GetSystemInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSystemInstanceCommand}.
13
17
  */
14
18
  export interface GetSystemInstanceCommandOutput extends GetSystemInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets a system instance.</p>
@@ -27,6 +32,8 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetSystemInstanceCommandInput - {@link GetSystemInstanceCommandInput}
36
+ * @returns {@link GetSystemInstanceCommandOutput}
30
37
  * @see {@link GetSystemInstanceCommandInput} for command's `input` shape.
31
38
  * @see {@link GetSystemInstanceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
48
55
  export declare class GetSystemInstanceCommand extends $Command<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: GetSystemInstanceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: GetSystemInstanceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetSystemTemplateRequest, GetSystemTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSystemTemplateCommand}.
8
10
  */
9
11
  export interface GetSystemTemplateCommandInput extends GetSystemTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSystemTemplateCommand}.
13
17
  */
14
18
  export interface GetSystemTemplateCommandOutput extends GetSystemTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets a system.</p>
@@ -27,6 +32,8 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetSystemTemplateCommandInput - {@link GetSystemTemplateCommandInput}
36
+ * @returns {@link GetSystemTemplateCommandOutput}
30
37
  * @see {@link GetSystemTemplateCommandInput} for command's `input` shape.
31
38
  * @see {@link GetSystemTemplateCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
48
55
  export declare class GetSystemTemplateCommand extends $Command<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: GetSystemTemplateCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: GetSystemTemplateCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }