@aws-sdk/client-iotthingsgraph 3.296.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 +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
5
5
  import { GetSystemTemplateRevisionsRequest, GetSystemTemplateRevisionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSystemTemplateRevisionsCommand}.
8
10
  */
9
11
  export interface GetSystemTemplateRevisionsCommandInput extends GetSystemTemplateRevisionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSystemTemplateRevisionsCommand}.
13
17
  */
14
18
  export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTemplateRevisionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets revisions made to the specified system template. Only the previous 100 revisions are stored. If the system has been deprecated, this action will return
@@ -28,6 +33,8 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param GetSystemTemplateRevisionsCommandInput - {@link GetSystemTemplateRevisionsCommandInput}
37
+ * @returns {@link GetSystemTemplateRevisionsCommandOutput}
31
38
  * @see {@link GetSystemTemplateRevisionsCommandInput} for command's `input` shape.
32
39
  * @see {@link GetSystemTemplateRevisionsCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
49
56
  export declare class GetSystemTemplateRevisionsCommand extends $Command<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
50
57
  readonly input: GetSystemTemplateRevisionsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetSystemTemplateRevisionsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput>;
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 { GetUploadStatusRequest, GetUploadStatusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetUploadStatusCommand}.
8
10
  */
9
11
  export interface GetUploadStatusCommandInput extends GetUploadStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetUploadStatusCommand}.
13
17
  */
14
18
  export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Gets the status of the specified upload.</p>
@@ -27,6 +32,8 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetUploadStatusCommandInput - {@link GetUploadStatusCommandInput}
36
+ * @returns {@link GetUploadStatusCommandOutput}
30
37
  * @see {@link GetUploadStatusCommandInput} for command's `input` shape.
31
38
  * @see {@link GetUploadStatusCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
48
55
  export declare class GetUploadStatusCommand extends $Command<GetUploadStatusCommandInput, GetUploadStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: GetUploadStatusCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: GetUploadStatusCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUploadStatusCommandInput, GetUploadStatusCommandOutput>;
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 { ListFlowExecutionMessagesRequest, ListFlowExecutionMessagesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListFlowExecutionMessagesCommand}.
8
10
  */
9
11
  export interface ListFlowExecutionMessagesCommandInput extends ListFlowExecutionMessagesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListFlowExecutionMessagesCommand}.
13
17
  */
14
18
  export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutionMessagesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Returns a list of objects that contain information about events in a flow execution.</p>
@@ -27,6 +32,8 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListFlowExecutionMessagesCommandInput - {@link ListFlowExecutionMessagesCommandInput}
36
+ * @returns {@link ListFlowExecutionMessagesCommandOutput}
30
37
  * @see {@link ListFlowExecutionMessagesCommandInput} for command's `input` shape.
31
38
  * @see {@link ListFlowExecutionMessagesCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
48
55
  export declare class ListFlowExecutionMessagesCommand extends $Command<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: ListFlowExecutionMessagesCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: ListFlowExecutionMessagesCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput>;
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Lists all tags on an AWS IoT Things Graph resource.</p>
@@ -27,6 +32,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
36
+ * @returns {@link ListTagsForResourceCommandOutput}
30
37
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
48
55
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: ListTagsForResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: ListTagsForResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { SearchEntitiesRequest, SearchEntitiesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchEntitiesCommand}.
8
10
  */
9
11
  export interface SearchEntitiesCommandInput extends SearchEntitiesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchEntitiesCommand}.
13
17
  */
14
18
  export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for entities of the specified type. You can search for entities in your namespace and the public namespace that you're tracking.</p>
@@ -27,6 +32,8 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SearchEntitiesCommandInput - {@link SearchEntitiesCommandInput}
36
+ * @returns {@link SearchEntitiesCommandOutput}
30
37
  * @see {@link SearchEntitiesCommandInput} for command's `input` shape.
31
38
  * @see {@link SearchEntitiesCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -45,11 +52,20 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
45
52
  export declare class SearchEntitiesCommand extends $Command<SearchEntitiesCommandInput, SearchEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
46
53
  readonly input: SearchEntitiesCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: SearchEntitiesCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchEntitiesCommandInput, SearchEntitiesCommandOutput>;
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 { SearchFlowExecutionsRequest, SearchFlowExecutionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchFlowExecutionsCommand}.
8
10
  */
9
11
  export interface SearchFlowExecutionsCommandInput extends SearchFlowExecutionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchFlowExecutionsCommand}.
13
17
  */
14
18
  export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for AWS IoT Things Graph workflow execution instances.</p>
@@ -27,6 +32,8 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SearchFlowExecutionsCommandInput - {@link SearchFlowExecutionsCommandInput}
36
+ * @returns {@link SearchFlowExecutionsCommandOutput}
30
37
  * @see {@link SearchFlowExecutionsCommandInput} for command's `input` shape.
31
38
  * @see {@link SearchFlowExecutionsCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
48
55
  export declare class SearchFlowExecutionsCommand extends $Command<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: SearchFlowExecutionsCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: SearchFlowExecutionsCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput>;
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 { SearchFlowTemplatesRequest, SearchFlowTemplatesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchFlowTemplatesCommand}.
8
10
  */
9
11
  export interface SearchFlowTemplatesCommandInput extends SearchFlowTemplatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchFlowTemplatesCommand}.
13
17
  */
14
18
  export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for summary information about workflows.</p>
@@ -27,6 +32,8 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SearchFlowTemplatesCommandInput - {@link SearchFlowTemplatesCommandInput}
36
+ * @returns {@link SearchFlowTemplatesCommandOutput}
30
37
  * @see {@link SearchFlowTemplatesCommandInput} for command's `input` shape.
31
38
  * @see {@link SearchFlowTemplatesCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -45,11 +52,20 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
45
52
  export declare class SearchFlowTemplatesCommand extends $Command<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
46
53
  readonly input: SearchFlowTemplatesCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: SearchFlowTemplatesCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput>;
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 { SearchSystemInstancesRequest, SearchSystemInstancesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchSystemInstancesCommand}.
8
10
  */
9
11
  export interface SearchSystemInstancesCommandInput extends SearchSystemInstancesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchSystemInstancesCommand}.
13
17
  */
14
18
  export interface SearchSystemInstancesCommandOutput extends SearchSystemInstancesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for system instances in the user's account.</p>
@@ -27,6 +32,8 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SearchSystemInstancesCommandInput - {@link SearchSystemInstancesCommandInput}
36
+ * @returns {@link SearchSystemInstancesCommandOutput}
30
37
  * @see {@link SearchSystemInstancesCommandInput} for command's `input` shape.
31
38
  * @see {@link SearchSystemInstancesCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -45,11 +52,20 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
45
52
  export declare class SearchSystemInstancesCommand extends $Command<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput, IoTThingsGraphClientResolvedConfig> {
46
53
  readonly input: SearchSystemInstancesCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: SearchSystemInstancesCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput>;
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 { SearchSystemTemplatesRequest, SearchSystemTemplatesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchSystemTemplatesCommand}.
8
10
  */
9
11
  export interface SearchSystemTemplatesCommandInput extends SearchSystemTemplatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchSystemTemplatesCommand}.
13
17
  */
14
18
  export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for summary information about systems in the user's account. You can filter by the ID of a workflow to return only systems that use the specified workflow.</p>
@@ -27,6 +32,8 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SearchSystemTemplatesCommandInput - {@link SearchSystemTemplatesCommandInput}
36
+ * @returns {@link SearchSystemTemplatesCommandOutput}
30
37
  * @see {@link SearchSystemTemplatesCommandInput} for command's `input` shape.
31
38
  * @see {@link SearchSystemTemplatesCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -45,11 +52,20 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
45
52
  export declare class SearchSystemTemplatesCommand extends $Command<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
46
53
  readonly input: SearchSystemTemplatesCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: SearchSystemTemplatesCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput>;
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 { SearchThingsRequest, SearchThingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchThingsCommand}.
8
10
  */
9
11
  export interface SearchThingsCommandInput extends SearchThingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchThingsCommand}.
13
17
  */
14
18
  export interface SearchThingsCommandOutput extends SearchThingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Searches for things associated with the specified entity. You can search by both device and device model.</p>
@@ -30,6 +35,8 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param SearchThingsCommandInput - {@link SearchThingsCommandInput}
39
+ * @returns {@link SearchThingsCommandOutput}
33
40
  * @see {@link SearchThingsCommandInput} for command's `input` shape.
34
41
  * @see {@link SearchThingsCommandOutput} for command's `response` shape.
35
42
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -51,11 +58,20 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
51
58
  export declare class SearchThingsCommand extends $Command<SearchThingsCommandInput, SearchThingsCommandOutput, IoTThingsGraphClientResolvedConfig> {
52
59
  readonly input: SearchThingsCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: SearchThingsCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchThingsCommandInput, SearchThingsCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
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
  * @deprecated
18
23
  *
19
24
  * <p>Creates a tag for the specified resource.</p>
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
36
+ * @returns {@link TagResourceCommandOutput}
30
37
  * @see {@link TagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
48
55
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: TagResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: TagResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UndeploySystemInstanceRequest, UndeploySystemInstanceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UndeploySystemInstanceCommand}.
8
10
  */
9
11
  export interface UndeploySystemInstanceCommandInput extends UndeploySystemInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UndeploySystemInstanceCommand}.
13
17
  */
14
18
  export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <p>Removes a system instance from its target (Cloud or Greengrass).</p>
@@ -27,6 +32,8 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UndeploySystemInstanceCommandInput - {@link UndeploySystemInstanceCommandInput}
36
+ * @returns {@link UndeploySystemInstanceCommandOutput}
30
37
  * @see {@link UndeploySystemInstanceCommandInput} for command's `input` shape.
31
38
  * @see {@link UndeploySystemInstanceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -51,11 +58,20 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
51
58
  export declare class UndeploySystemInstanceCommand extends $Command<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
52
59
  readonly input: UndeploySystemInstanceCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: UndeploySystemInstanceCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
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
  * @deprecated
18
23
  *
19
24
  * <p>Removes a tag from the specified resource.</p>
@@ -27,6 +32,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
36
+ * @returns {@link UntagResourceCommandOutput}
30
37
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
@@ -48,11 +55,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
48
55
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
49
56
  readonly input: UntagResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: UntagResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }