@aws-sdk/client-iotthingsgraph 3.50.0 → 3.53.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 (73) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/IoTThingsGraphServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +95 -3
  5. package/dist-cjs/protocols/Aws_json1_1.js +319 -1211
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/IoTThingsGraphServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +86 -1
  9. package/dist-es/protocols/Aws_json1_1.js +736 -1338
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/IoTThingsGraphServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +51 -29
  13. package/dist-types/ts3.4/IoTThingsGraph.d.ts +180 -0
  14. package/dist-types/ts3.4/IoTThingsGraphClient.d.ts +108 -0
  15. package/dist-types/ts3.4/commands/AssociateEntityToThingCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateFlowTemplateCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateSystemInstanceCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateSystemTemplateCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteFlowTemplateCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteSystemInstanceCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeleteSystemTemplateCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeploySystemInstanceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DeprecateFlowTemplateCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DeprecateSystemTemplateCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/DissociateEntityFromThingCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetEntitiesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/GetFlowTemplateCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/GetFlowTemplateRevisionsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/GetNamespaceDeletionStatusCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/GetSystemInstanceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/GetSystemTemplateCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/GetSystemTemplateRevisionsCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/GetUploadStatusCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/ListFlowExecutionMessagesCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/SearchEntitiesCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/SearchFlowExecutionsCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/SearchFlowTemplatesCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/SearchSystemInstancesCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/SearchSystemTemplatesCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/SearchThingsCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  45. package/dist-types/ts3.4/commands/UndeploySystemInstanceCommand.d.ts +17 -0
  46. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  47. package/dist-types/ts3.4/commands/UpdateFlowTemplateCommand.d.ts +17 -0
  48. package/dist-types/ts3.4/commands/UpdateSystemTemplateCommand.d.ts +17 -0
  49. package/dist-types/ts3.4/commands/UploadEntityDefinitionsCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +35 -0
  51. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  52. package/dist-types/ts3.4/index.d.ts +6 -0
  53. package/dist-types/ts3.4/models/IoTThingsGraphServiceException.d.ts +6 -0
  54. package/dist-types/ts3.4/models/index.d.ts +1 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +1073 -0
  56. package/dist-types/ts3.4/pagination/GetFlowTemplateRevisionsPaginator.d.ts +4 -0
  57. package/dist-types/ts3.4/pagination/GetSystemTemplateRevisionsPaginator.d.ts +4 -0
  58. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  59. package/dist-types/ts3.4/pagination/ListFlowExecutionMessagesPaginator.d.ts +4 -0
  60. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  61. package/dist-types/ts3.4/pagination/SearchEntitiesPaginator.d.ts +4 -0
  62. package/dist-types/ts3.4/pagination/SearchFlowExecutionsPaginator.d.ts +4 -0
  63. package/dist-types/ts3.4/pagination/SearchFlowTemplatesPaginator.d.ts +4 -0
  64. package/dist-types/ts3.4/pagination/SearchSystemInstancesPaginator.d.ts +4 -0
  65. package/dist-types/ts3.4/pagination/SearchSystemTemplatesPaginator.d.ts +4 -0
  66. package/dist-types/ts3.4/pagination/SearchThingsPaginator.d.ts +4 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +11 -0
  68. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +107 -0
  69. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  70. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  71. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  72. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  73. package/package.json +33 -33
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { DeprecateFlowTemplateRequest, DeprecateFlowTemplateResponse } from "../models/models_0";
5
+ export interface DeprecateFlowTemplateCommandInput extends DeprecateFlowTemplateRequest {
6
+ }
7
+ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeprecateFlowTemplateCommand extends $Command<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeprecateFlowTemplateCommandInput;
12
+ constructor(input: DeprecateFlowTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { DeprecateSystemTemplateRequest, DeprecateSystemTemplateResponse } from "../models/models_0";
5
+ export interface DeprecateSystemTemplateCommandInput extends DeprecateSystemTemplateRequest {
6
+ }
7
+ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeprecateSystemTemplateCommand extends $Command<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeprecateSystemTemplateCommandInput;
12
+ constructor(input: DeprecateSystemTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_0";
5
+ export interface DescribeNamespaceCommandInput extends DescribeNamespaceRequest {
6
+ }
7
+ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeNamespaceCommand extends $Command<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DescribeNamespaceCommandInput;
12
+ constructor(input: DescribeNamespaceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { DissociateEntityFromThingRequest, DissociateEntityFromThingResponse } from "../models/models_0";
5
+ export interface DissociateEntityFromThingCommandInput extends DissociateEntityFromThingRequest {
6
+ }
7
+ export interface DissociateEntityFromThingCommandOutput extends DissociateEntityFromThingResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DissociateEntityFromThingCommand extends $Command<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DissociateEntityFromThingCommandInput;
12
+ constructor(input: DissociateEntityFromThingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetEntitiesRequest, GetEntitiesResponse } from "../models/models_0";
5
+ export interface GetEntitiesCommandInput extends GetEntitiesRequest {
6
+ }
7
+ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetEntitiesCommand extends $Command<GetEntitiesCommandInput, GetEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetEntitiesCommandInput;
12
+ constructor(input: GetEntitiesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEntitiesCommandInput, GetEntitiesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetFlowTemplateRequest, GetFlowTemplateResponse } from "../models/models_0";
5
+ export interface GetFlowTemplateCommandInput extends GetFlowTemplateRequest {
6
+ }
7
+ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetFlowTemplateCommand extends $Command<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetFlowTemplateCommandInput;
12
+ constructor(input: GetFlowTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetFlowTemplateRevisionsRequest, GetFlowTemplateRevisionsResponse } from "../models/models_0";
5
+ export interface GetFlowTemplateRevisionsCommandInput extends GetFlowTemplateRevisionsRequest {
6
+ }
7
+ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRevisionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetFlowTemplateRevisionsCommand extends $Command<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetFlowTemplateRevisionsCommandInput;
12
+ constructor(input: GetFlowTemplateRevisionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetNamespaceDeletionStatusRequest, GetNamespaceDeletionStatusResponse } from "../models/models_0";
5
+ export interface GetNamespaceDeletionStatusCommandInput extends GetNamespaceDeletionStatusRequest {
6
+ }
7
+ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDeletionStatusResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetNamespaceDeletionStatusCommand extends $Command<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetNamespaceDeletionStatusCommandInput;
12
+ constructor(input: GetNamespaceDeletionStatusCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetSystemInstanceRequest, GetSystemInstanceResponse } from "../models/models_0";
5
+ export interface GetSystemInstanceCommandInput extends GetSystemInstanceRequest {
6
+ }
7
+ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSystemInstanceCommand extends $Command<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetSystemInstanceCommandInput;
12
+ constructor(input: GetSystemInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetSystemTemplateRequest, GetSystemTemplateResponse } from "../models/models_0";
5
+ export interface GetSystemTemplateCommandInput extends GetSystemTemplateRequest {
6
+ }
7
+ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSystemTemplateCommand extends $Command<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetSystemTemplateCommandInput;
12
+ constructor(input: GetSystemTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetSystemTemplateRevisionsRequest, GetSystemTemplateRevisionsResponse } from "../models/models_0";
5
+ export interface GetSystemTemplateRevisionsCommandInput extends GetSystemTemplateRevisionsRequest {
6
+ }
7
+ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTemplateRevisionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSystemTemplateRevisionsCommand extends $Command<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetSystemTemplateRevisionsCommandInput;
12
+ constructor(input: GetSystemTemplateRevisionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { GetUploadStatusRequest, GetUploadStatusResponse } from "../models/models_0";
5
+ export interface GetUploadStatusCommandInput extends GetUploadStatusRequest {
6
+ }
7
+ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetUploadStatusCommand extends $Command<GetUploadStatusCommandInput, GetUploadStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: GetUploadStatusCommandInput;
12
+ constructor(input: GetUploadStatusCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUploadStatusCommandInput, GetUploadStatusCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { ListFlowExecutionMessagesRequest, ListFlowExecutionMessagesResponse } from "../models/models_0";
5
+ export interface ListFlowExecutionMessagesCommandInput extends ListFlowExecutionMessagesRequest {
6
+ }
7
+ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutionMessagesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListFlowExecutionMessagesCommand extends $Command<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: ListFlowExecutionMessagesCommandInput;
12
+ constructor(input: ListFlowExecutionMessagesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchEntitiesRequest, SearchEntitiesResponse } from "../models/models_0";
5
+ export interface SearchEntitiesCommandInput extends SearchEntitiesRequest {
6
+ }
7
+ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchEntitiesCommand extends $Command<SearchEntitiesCommandInput, SearchEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchEntitiesCommandInput;
12
+ constructor(input: SearchEntitiesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchEntitiesCommandInput, SearchEntitiesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchFlowExecutionsRequest, SearchFlowExecutionsResponse } from "../models/models_0";
5
+ export interface SearchFlowExecutionsCommandInput extends SearchFlowExecutionsRequest {
6
+ }
7
+ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchFlowExecutionsCommand extends $Command<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchFlowExecutionsCommandInput;
12
+ constructor(input: SearchFlowExecutionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchFlowTemplatesRequest, SearchFlowTemplatesResponse } from "../models/models_0";
5
+ export interface SearchFlowTemplatesCommandInput extends SearchFlowTemplatesRequest {
6
+ }
7
+ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchFlowTemplatesCommand extends $Command<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchFlowTemplatesCommandInput;
12
+ constructor(input: SearchFlowTemplatesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchSystemInstancesRequest, SearchSystemInstancesResponse } from "../models/models_0";
5
+ export interface SearchSystemInstancesCommandInput extends SearchSystemInstancesRequest {
6
+ }
7
+ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstancesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchSystemInstancesCommand extends $Command<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchSystemInstancesCommandInput;
12
+ constructor(input: SearchSystemInstancesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchSystemTemplatesRequest, SearchSystemTemplatesResponse } from "../models/models_0";
5
+ export interface SearchSystemTemplatesCommandInput extends SearchSystemTemplatesRequest {
6
+ }
7
+ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplatesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchSystemTemplatesCommand extends $Command<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchSystemTemplatesCommandInput;
12
+ constructor(input: SearchSystemTemplatesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { SearchThingsRequest, SearchThingsResponse } from "../models/models_0";
5
+ export interface SearchThingsCommandInput extends SearchThingsRequest {
6
+ }
7
+ export interface SearchThingsCommandOutput extends SearchThingsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchThingsCommand extends $Command<SearchThingsCommandInput, SearchThingsCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: SearchThingsCommandInput;
12
+ constructor(input: SearchThingsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchThingsCommandInput, SearchThingsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { UndeploySystemInstanceRequest, UndeploySystemInstanceResponse } from "../models/models_0";
5
+ export interface UndeploySystemInstanceCommandInput extends UndeploySystemInstanceRequest {
6
+ }
7
+ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInstanceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UndeploySystemInstanceCommand extends $Command<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: UndeploySystemInstanceCommandInput;
12
+ constructor(input: UndeploySystemInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { UpdateFlowTemplateRequest, UpdateFlowTemplateResponse } from "../models/models_0";
5
+ export interface UpdateFlowTemplateCommandInput extends UpdateFlowTemplateRequest {
6
+ }
7
+ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateFlowTemplateCommand extends $Command<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: UpdateFlowTemplateCommandInput;
12
+ constructor(input: UpdateFlowTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { UpdateSystemTemplateRequest, UpdateSystemTemplateResponse } from "../models/models_0";
5
+ export interface UpdateSystemTemplateCommandInput extends UpdateSystemTemplateRequest {
6
+ }
7
+ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateSystemTemplateCommand extends $Command<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: UpdateSystemTemplateCommandInput;
12
+ constructor(input: UpdateSystemTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
4
+ import { UploadEntityDefinitionsRequest, UploadEntityDefinitionsResponse } from "../models/models_0";
5
+ export interface UploadEntityDefinitionsCommandInput extends UploadEntityDefinitionsRequest {
6
+ }
7
+ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefinitionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UploadEntityDefinitionsCommand extends $Command<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: UploadEntityDefinitionsCommandInput;
12
+ constructor(input: UploadEntityDefinitionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,35 @@
1
+ export * from "./AssociateEntityToThingCommand";
2
+ export * from "./CreateFlowTemplateCommand";
3
+ export * from "./CreateSystemInstanceCommand";
4
+ export * from "./CreateSystemTemplateCommand";
5
+ export * from "./DeleteFlowTemplateCommand";
6
+ export * from "./DeleteNamespaceCommand";
7
+ export * from "./DeleteSystemInstanceCommand";
8
+ export * from "./DeleteSystemTemplateCommand";
9
+ export * from "./DeploySystemInstanceCommand";
10
+ export * from "./DeprecateFlowTemplateCommand";
11
+ export * from "./DeprecateSystemTemplateCommand";
12
+ export * from "./DescribeNamespaceCommand";
13
+ export * from "./DissociateEntityFromThingCommand";
14
+ export * from "./GetEntitiesCommand";
15
+ export * from "./GetFlowTemplateCommand";
16
+ export * from "./GetFlowTemplateRevisionsCommand";
17
+ export * from "./GetNamespaceDeletionStatusCommand";
18
+ export * from "./GetSystemInstanceCommand";
19
+ export * from "./GetSystemTemplateCommand";
20
+ export * from "./GetSystemTemplateRevisionsCommand";
21
+ export * from "./GetUploadStatusCommand";
22
+ export * from "./ListFlowExecutionMessagesCommand";
23
+ export * from "./ListTagsForResourceCommand";
24
+ export * from "./SearchEntitiesCommand";
25
+ export * from "./SearchFlowExecutionsCommand";
26
+ export * from "./SearchFlowTemplatesCommand";
27
+ export * from "./SearchSystemInstancesCommand";
28
+ export * from "./SearchSystemTemplatesCommand";
29
+ export * from "./SearchThingsCommand";
30
+ export * from "./TagResourceCommand";
31
+ export * from "./UndeploySystemInstanceCommand";
32
+ export * from "./UntagResourceCommand";
33
+ export * from "./UpdateFlowTemplateCommand";
34
+ export * from "./UpdateSystemTemplateCommand";
35
+ export * from "./UploadEntityDefinitionsCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./IoTThingsGraph";
2
+ export * from "./IoTThingsGraphClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { IoTThingsGraphServiceException } from "./models/IoTThingsGraphServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class IoTThingsGraphServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";