@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
@@ -3,3 +3,4 @@ export * from "./IoTThingsGraphClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { IoTThingsGraphServiceException } from "./models/IoTThingsGraphServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from IoTThingsGraph service.
4
+ */
5
+ export declare class IoTThingsGraphServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
2
3
  export interface AssociateEntityToThingRequest {
3
4
  /**
4
5
  * <p>The name of the thing to which the entity is to be associated.</p>
@@ -34,34 +35,46 @@ export declare namespace AssociateEntityToThingResponse {
34
35
  /**
35
36
  * <p></p>
36
37
  */
37
- export interface InternalFailureException extends __SmithyException, $MetadataBearer {
38
- name: "InternalFailureException";
39
- $fault: "server";
40
- message?: string;
38
+ export declare class InternalFailureException extends __BaseException {
39
+ readonly name: "InternalFailureException";
40
+ readonly $fault: "server";
41
+ /**
42
+ * @internal
43
+ */
44
+ constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
41
45
  }
42
46
  /**
43
47
  * <p></p>
44
48
  */
45
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
46
- name: "InvalidRequestException";
47
- $fault: "client";
48
- message?: string;
49
+ export declare class InvalidRequestException extends __BaseException {
50
+ readonly name: "InvalidRequestException";
51
+ readonly $fault: "client";
52
+ /**
53
+ * @internal
54
+ */
55
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
49
56
  }
50
57
  /**
51
58
  * <p></p>
52
59
  */
53
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
54
- name: "ResourceNotFoundException";
55
- $fault: "client";
56
- message?: string;
60
+ export declare class ResourceNotFoundException extends __BaseException {
61
+ readonly name: "ResourceNotFoundException";
62
+ readonly $fault: "client";
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
57
67
  }
58
68
  /**
59
69
  * <p></p>
60
70
  */
61
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
62
- name: "ThrottlingException";
63
- $fault: "client";
64
- message?: string;
71
+ export declare class ThrottlingException extends __BaseException {
72
+ readonly name: "ThrottlingException";
73
+ readonly $fault: "client";
74
+ /**
75
+ * @internal
76
+ */
77
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
65
78
  }
66
79
  export declare enum DefinitionLanguage {
67
80
  GRAPHQL = "GRAPHQL"
@@ -144,18 +157,24 @@ export declare namespace CreateFlowTemplateResponse {
144
157
  /**
145
158
  * <p></p>
146
159
  */
147
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
148
- name: "LimitExceededException";
149
- $fault: "client";
150
- message?: string;
160
+ export declare class LimitExceededException extends __BaseException {
161
+ readonly name: "LimitExceededException";
162
+ readonly $fault: "client";
163
+ /**
164
+ * @internal
165
+ */
166
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
151
167
  }
152
168
  /**
153
169
  * <p></p>
154
170
  */
155
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
156
- name: "ResourceAlreadyExistsException";
157
- $fault: "client";
158
- message?: string;
171
+ export declare class ResourceAlreadyExistsException extends __BaseException {
172
+ readonly name: "ResourceAlreadyExistsException";
173
+ readonly $fault: "client";
174
+ /**
175
+ * @internal
176
+ */
177
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
159
178
  }
160
179
  /**
161
180
  * <p>An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.</p>
@@ -393,10 +412,13 @@ export declare namespace DeleteFlowTemplateResponse {
393
412
  /**
394
413
  * <p></p>
395
414
  */
396
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
397
- name: "ResourceInUseException";
398
- $fault: "client";
399
- message?: string;
415
+ export declare class ResourceInUseException extends __BaseException {
416
+ readonly name: "ResourceInUseException";
417
+ readonly $fault: "client";
418
+ /**
419
+ * @internal
420
+ */
421
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
400
422
  }
401
423
  export interface DeleteNamespaceRequest {
402
424
  }
@@ -0,0 +1,180 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput } from "./commands/AssociateEntityToThingCommand";
3
+ import { CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput } from "./commands/CreateFlowTemplateCommand";
4
+ import { CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput } from "./commands/CreateSystemInstanceCommand";
5
+ import { CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput } from "./commands/CreateSystemTemplateCommand";
6
+ import { DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput } from "./commands/DeleteFlowTemplateCommand";
7
+ import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
8
+ import { DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput } from "./commands/DeleteSystemInstanceCommand";
9
+ import { DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput } from "./commands/DeleteSystemTemplateCommand";
10
+ import { DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput } from "./commands/DeploySystemInstanceCommand";
11
+ import { DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput } from "./commands/DeprecateFlowTemplateCommand";
12
+ import { DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput } from "./commands/DeprecateSystemTemplateCommand";
13
+ import { DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput } from "./commands/DescribeNamespaceCommand";
14
+ import { DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput } from "./commands/DissociateEntityFromThingCommand";
15
+ import { GetEntitiesCommandInput, GetEntitiesCommandOutput } from "./commands/GetEntitiesCommand";
16
+ import { GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput } from "./commands/GetFlowTemplateCommand";
17
+ import { GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput } from "./commands/GetFlowTemplateRevisionsCommand";
18
+ import { GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput } from "./commands/GetNamespaceDeletionStatusCommand";
19
+ import { GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput } from "./commands/GetSystemInstanceCommand";
20
+ import { GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput } from "./commands/GetSystemTemplateCommand";
21
+ import { GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput } from "./commands/GetSystemTemplateRevisionsCommand";
22
+ import { GetUploadStatusCommandInput, GetUploadStatusCommandOutput } from "./commands/GetUploadStatusCommand";
23
+ import { ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput } from "./commands/ListFlowExecutionMessagesCommand";
24
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
25
+ import { SearchEntitiesCommandInput, SearchEntitiesCommandOutput } from "./commands/SearchEntitiesCommand";
26
+ import { SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput } from "./commands/SearchFlowExecutionsCommand";
27
+ import { SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput } from "./commands/SearchFlowTemplatesCommand";
28
+ import { SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput } from "./commands/SearchSystemInstancesCommand";
29
+ import { SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput } from "./commands/SearchSystemTemplatesCommand";
30
+ import { SearchThingsCommandInput, SearchThingsCommandOutput } from "./commands/SearchThingsCommand";
31
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
32
+ import { UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput } from "./commands/UndeploySystemInstanceCommand";
33
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
34
+ import { UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput } from "./commands/UpdateFlowTemplateCommand";
35
+ import { UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput } from "./commands/UpdateSystemTemplateCommand";
36
+ import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput } from "./commands/UploadEntityDefinitionsCommand";
37
+ import { IoTThingsGraphClient } from "./IoTThingsGraphClient";
38
+
39
+ export declare class IoTThingsGraph extends IoTThingsGraphClient {
40
+
41
+ associateEntityToThing(args: AssociateEntityToThingCommandInput, options?: __HttpHandlerOptions): Promise<AssociateEntityToThingCommandOutput>;
42
+ associateEntityToThing(args: AssociateEntityToThingCommandInput, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
43
+ associateEntityToThing(args: AssociateEntityToThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
44
+
45
+ createFlowTemplate(args: CreateFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowTemplateCommandOutput>;
46
+ createFlowTemplate(args: CreateFlowTemplateCommandInput, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
47
+ createFlowTemplate(args: CreateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
48
+
49
+ createSystemInstance(args: CreateSystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateSystemInstanceCommandOutput>;
50
+ createSystemInstance(args: CreateSystemInstanceCommandInput, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
51
+ createSystemInstance(args: CreateSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
52
+
53
+ createSystemTemplate(args: CreateSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateSystemTemplateCommandOutput>;
54
+ createSystemTemplate(args: CreateSystemTemplateCommandInput, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
55
+ createSystemTemplate(args: CreateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
56
+
57
+ deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowTemplateCommandOutput>;
58
+ deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
59
+ deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
60
+
61
+ deleteNamespace(args: DeleteNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNamespaceCommandOutput>;
62
+ deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
63
+ deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
64
+
65
+ deleteSystemInstance(args: DeleteSystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSystemInstanceCommandOutput>;
66
+ deleteSystemInstance(args: DeleteSystemInstanceCommandInput, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
67
+ deleteSystemInstance(args: DeleteSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
68
+
69
+ deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSystemTemplateCommandOutput>;
70
+ deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
71
+ deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
72
+
73
+ deploySystemInstance(args: DeploySystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeploySystemInstanceCommandOutput>;
74
+ deploySystemInstance(args: DeploySystemInstanceCommandInput, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
75
+ deploySystemInstance(args: DeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
76
+
77
+ deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeprecateFlowTemplateCommandOutput>;
78
+ deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
79
+ deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
80
+
81
+ deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeprecateSystemTemplateCommandOutput>;
82
+ deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
83
+ deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
84
+
85
+ describeNamespace(args: DescribeNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNamespaceCommandOutput>;
86
+ describeNamespace(args: DescribeNamespaceCommandInput, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
87
+ describeNamespace(args: DescribeNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
88
+
89
+ dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, options?: __HttpHandlerOptions): Promise<DissociateEntityFromThingCommandOutput>;
90
+ dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
91
+ dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
92
+
93
+ getEntities(args: GetEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<GetEntitiesCommandOutput>;
94
+ getEntities(args: GetEntitiesCommandInput, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
95
+ getEntities(args: GetEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
96
+
97
+ getFlowTemplate(args: GetFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetFlowTemplateCommandOutput>;
98
+ getFlowTemplate(args: GetFlowTemplateCommandInput, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
99
+ getFlowTemplate(args: GetFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
100
+
101
+ getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<GetFlowTemplateRevisionsCommandOutput>;
102
+ getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
103
+ getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
104
+
105
+ getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetNamespaceDeletionStatusCommandOutput>;
106
+ getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
107
+ getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
108
+
109
+ getSystemInstance(args: GetSystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemInstanceCommandOutput>;
110
+ getSystemInstance(args: GetSystemInstanceCommandInput, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
111
+ getSystemInstance(args: GetSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
112
+
113
+ getSystemTemplate(args: GetSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemTemplateCommandOutput>;
114
+ getSystemTemplate(args: GetSystemTemplateCommandInput, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
115
+ getSystemTemplate(args: GetSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
116
+
117
+ getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemTemplateRevisionsCommandOutput>;
118
+ getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
119
+ getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
120
+
121
+ getUploadStatus(args: GetUploadStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetUploadStatusCommandOutput>;
122
+ getUploadStatus(args: GetUploadStatusCommandInput, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
123
+ getUploadStatus(args: GetUploadStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
124
+
125
+ listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowExecutionMessagesCommandOutput>;
126
+ listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
127
+ listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
128
+
129
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
130
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
131
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
132
+
133
+ searchEntities(args: SearchEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<SearchEntitiesCommandOutput>;
134
+ searchEntities(args: SearchEntitiesCommandInput, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
135
+ searchEntities(args: SearchEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
136
+
137
+ searchFlowExecutions(args: SearchFlowExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<SearchFlowExecutionsCommandOutput>;
138
+ searchFlowExecutions(args: SearchFlowExecutionsCommandInput, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
139
+ searchFlowExecutions(args: SearchFlowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
140
+
141
+ searchFlowTemplates(args: SearchFlowTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<SearchFlowTemplatesCommandOutput>;
142
+ searchFlowTemplates(args: SearchFlowTemplatesCommandInput, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
143
+ searchFlowTemplates(args: SearchFlowTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
144
+
145
+ searchSystemInstances(args: SearchSystemInstancesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSystemInstancesCommandOutput>;
146
+ searchSystemInstances(args: SearchSystemInstancesCommandInput, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
147
+ searchSystemInstances(args: SearchSystemInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
148
+
149
+ searchSystemTemplates(args: SearchSystemTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSystemTemplatesCommandOutput>;
150
+ searchSystemTemplates(args: SearchSystemTemplatesCommandInput, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
151
+ searchSystemTemplates(args: SearchSystemTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
152
+
153
+ searchThings(args: SearchThingsCommandInput, options?: __HttpHandlerOptions): Promise<SearchThingsCommandOutput>;
154
+ searchThings(args: SearchThingsCommandInput, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
155
+ searchThings(args: SearchThingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
156
+
157
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
158
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
159
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
160
+
161
+ undeploySystemInstance(args: UndeploySystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UndeploySystemInstanceCommandOutput>;
162
+ undeploySystemInstance(args: UndeploySystemInstanceCommandInput, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
163
+ undeploySystemInstance(args: UndeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
164
+
165
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
166
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
167
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
168
+
169
+ updateFlowTemplate(args: UpdateFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowTemplateCommandOutput>;
170
+ updateFlowTemplate(args: UpdateFlowTemplateCommandInput, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
171
+ updateFlowTemplate(args: UpdateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
172
+
173
+ updateSystemTemplate(args: UpdateSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSystemTemplateCommandOutput>;
174
+ updateSystemTemplate(args: UpdateSystemTemplateCommandInput, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
175
+ updateSystemTemplate(args: UpdateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
176
+
177
+ uploadEntityDefinitions(args: UploadEntityDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<UploadEntityDefinitionsCommandOutput>;
178
+ uploadEntityDefinitions(args: UploadEntityDefinitionsCommandInput, cb: (err: any, data?: UploadEntityDefinitionsCommandOutput) => void): void;
179
+ uploadEntityDefinitions(args: UploadEntityDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UploadEntityDefinitionsCommandOutput) => void): void;
180
+ }
@@ -0,0 +1,108 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput } from "./commands/AssociateEntityToThingCommand";
10
+ import { CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput } from "./commands/CreateFlowTemplateCommand";
11
+ import { CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput } from "./commands/CreateSystemInstanceCommand";
12
+ import { CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput } from "./commands/CreateSystemTemplateCommand";
13
+ import { DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput } from "./commands/DeleteFlowTemplateCommand";
14
+ import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
15
+ import { DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput } from "./commands/DeleteSystemInstanceCommand";
16
+ import { DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput } from "./commands/DeleteSystemTemplateCommand";
17
+ import { DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput } from "./commands/DeploySystemInstanceCommand";
18
+ import { DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput } from "./commands/DeprecateFlowTemplateCommand";
19
+ import { DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput } from "./commands/DeprecateSystemTemplateCommand";
20
+ import { DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput } from "./commands/DescribeNamespaceCommand";
21
+ import { DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput } from "./commands/DissociateEntityFromThingCommand";
22
+ import { GetEntitiesCommandInput, GetEntitiesCommandOutput } from "./commands/GetEntitiesCommand";
23
+ import { GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput } from "./commands/GetFlowTemplateCommand";
24
+ import { GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput } from "./commands/GetFlowTemplateRevisionsCommand";
25
+ import { GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput } from "./commands/GetNamespaceDeletionStatusCommand";
26
+ import { GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput } from "./commands/GetSystemInstanceCommand";
27
+ import { GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput } from "./commands/GetSystemTemplateCommand";
28
+ import { GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput } from "./commands/GetSystemTemplateRevisionsCommand";
29
+ import { GetUploadStatusCommandInput, GetUploadStatusCommandOutput } from "./commands/GetUploadStatusCommand";
30
+ import { ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput } from "./commands/ListFlowExecutionMessagesCommand";
31
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
32
+ import { SearchEntitiesCommandInput, SearchEntitiesCommandOutput } from "./commands/SearchEntitiesCommand";
33
+ import { SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput } from "./commands/SearchFlowExecutionsCommand";
34
+ import { SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput } from "./commands/SearchFlowTemplatesCommand";
35
+ import { SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput } from "./commands/SearchSystemInstancesCommand";
36
+ import { SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput } from "./commands/SearchSystemTemplatesCommand";
37
+ import { SearchThingsCommandInput, SearchThingsCommandOutput } from "./commands/SearchThingsCommand";
38
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
39
+ import { UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput } from "./commands/UndeploySystemInstanceCommand";
40
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
+ import { UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput } from "./commands/UpdateFlowTemplateCommand";
42
+ import { UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput } from "./commands/UpdateSystemTemplateCommand";
43
+ import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput } from "./commands/UploadEntityDefinitionsCommand";
44
+ export declare type ServiceInputTypes = AssociateEntityToThingCommandInput | CreateFlowTemplateCommandInput | CreateSystemInstanceCommandInput | CreateSystemTemplateCommandInput | DeleteFlowTemplateCommandInput | DeleteNamespaceCommandInput | DeleteSystemInstanceCommandInput | DeleteSystemTemplateCommandInput | DeploySystemInstanceCommandInput | DeprecateFlowTemplateCommandInput | DeprecateSystemTemplateCommandInput | DescribeNamespaceCommandInput | DissociateEntityFromThingCommandInput | GetEntitiesCommandInput | GetFlowTemplateCommandInput | GetFlowTemplateRevisionsCommandInput | GetNamespaceDeletionStatusCommandInput | GetSystemInstanceCommandInput | GetSystemTemplateCommandInput | GetSystemTemplateRevisionsCommandInput | GetUploadStatusCommandInput | ListFlowExecutionMessagesCommandInput | ListTagsForResourceCommandInput | SearchEntitiesCommandInput | SearchFlowExecutionsCommandInput | SearchFlowTemplatesCommandInput | SearchSystemInstancesCommandInput | SearchSystemTemplatesCommandInput | SearchThingsCommandInput | TagResourceCommandInput | UndeploySystemInstanceCommandInput | UntagResourceCommandInput | UpdateFlowTemplateCommandInput | UpdateSystemTemplateCommandInput | UploadEntityDefinitionsCommandInput;
45
+ export declare type ServiceOutputTypes = AssociateEntityToThingCommandOutput | CreateFlowTemplateCommandOutput | CreateSystemInstanceCommandOutput | CreateSystemTemplateCommandOutput | DeleteFlowTemplateCommandOutput | DeleteNamespaceCommandOutput | DeleteSystemInstanceCommandOutput | DeleteSystemTemplateCommandOutput | DeploySystemInstanceCommandOutput | DeprecateFlowTemplateCommandOutput | DeprecateSystemTemplateCommandOutput | DescribeNamespaceCommandOutput | DissociateEntityFromThingCommandOutput | GetEntitiesCommandOutput | GetFlowTemplateCommandOutput | GetFlowTemplateRevisionsCommandOutput | GetNamespaceDeletionStatusCommandOutput | GetSystemInstanceCommandOutput | GetSystemTemplateCommandOutput | GetSystemTemplateRevisionsCommandOutput | GetUploadStatusCommandOutput | ListFlowExecutionMessagesCommandOutput | ListTagsForResourceCommandOutput | SearchEntitiesCommandOutput | SearchFlowExecutionsCommandOutput | SearchFlowTemplatesCommandOutput | SearchSystemInstancesCommandOutput | SearchSystemTemplatesCommandOutput | SearchThingsCommandOutput | TagResourceCommandOutput | UndeploySystemInstanceCommandOutput | UntagResourceCommandOutput | UpdateFlowTemplateCommandOutput | UpdateSystemTemplateCommandOutput | UploadEntityDefinitionsCommandOutput;
46
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
47
+
48
+ requestHandler?: __HttpHandler;
49
+
50
+ sha256?: __HashConstructor;
51
+
52
+ urlParser?: __UrlParser;
53
+
54
+ bodyLengthChecker?: (body: any) => number | undefined;
55
+
56
+ streamCollector?: __StreamCollector;
57
+
58
+ base64Decoder?: __Decoder;
59
+
60
+ base64Encoder?: __Encoder;
61
+
62
+ utf8Decoder?: __Decoder;
63
+
64
+ utf8Encoder?: __Encoder;
65
+
66
+ runtime?: string;
67
+
68
+ disableHostPrefix?: boolean;
69
+
70
+ maxAttempts?: number | __Provider<number>;
71
+
72
+ retryMode?: string | __Provider<string>;
73
+
74
+ logger?: __Logger;
75
+
76
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
77
+
78
+ useFipsEndpoint?: boolean | __Provider<boolean>;
79
+
80
+ serviceId?: string;
81
+
82
+ region?: string | __Provider<string>;
83
+
84
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
85
+
86
+ regionInfoProvider?: RegionInfoProvider;
87
+
88
+ defaultUserAgentProvider?: Provider<__UserAgent>;
89
+
90
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
91
+ }
92
+ declare type IoTThingsGraphClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
93
+
94
+ export interface IoTThingsGraphClientConfig extends IoTThingsGraphClientConfigType {
95
+ }
96
+ declare type IoTThingsGraphClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
97
+
98
+ export interface IoTThingsGraphClientResolvedConfig extends IoTThingsGraphClientResolvedConfigType {
99
+ }
100
+
101
+ export declare class IoTThingsGraphClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTThingsGraphClientResolvedConfig> {
102
+
103
+ readonly config: IoTThingsGraphClientResolvedConfig;
104
+ constructor(configuration: IoTThingsGraphClientConfig);
105
+
106
+ destroy(): void;
107
+ }
108
+ export {};
@@ -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 { AssociateEntityToThingRequest, AssociateEntityToThingResponse } from "../models/models_0";
5
+ export interface AssociateEntityToThingCommandInput extends AssociateEntityToThingRequest {
6
+ }
7
+ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToThingResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AssociateEntityToThingCommand extends $Command<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: AssociateEntityToThingCommandInput;
12
+ constructor(input: AssociateEntityToThingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput>;
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 { CreateFlowTemplateRequest, CreateFlowTemplateResponse } from "../models/models_0";
5
+ export interface CreateFlowTemplateCommandInput extends CreateFlowTemplateRequest {
6
+ }
7
+ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateFlowTemplateCommand extends $Command<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: CreateFlowTemplateCommandInput;
12
+ constructor(input: CreateFlowTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput>;
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 { CreateSystemInstanceRequest, CreateSystemInstanceResponse } from "../models/models_0";
5
+ export interface CreateSystemInstanceCommandInput extends CreateSystemInstanceRequest {
6
+ }
7
+ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateSystemInstanceCommand extends $Command<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: CreateSystemInstanceCommandInput;
12
+ constructor(input: CreateSystemInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput>;
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 { CreateSystemTemplateRequest, CreateSystemTemplateResponse } from "../models/models_0";
5
+ export interface CreateSystemTemplateCommandInput extends CreateSystemTemplateRequest {
6
+ }
7
+ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateSystemTemplateCommand extends $Command<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: CreateSystemTemplateCommandInput;
12
+ constructor(input: CreateSystemTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput>;
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 { DeleteFlowTemplateRequest, DeleteFlowTemplateResponse } from "../models/models_0";
5
+ export interface DeleteFlowTemplateCommandInput extends DeleteFlowTemplateRequest {
6
+ }
7
+ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteFlowTemplateCommand extends $Command<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeleteFlowTemplateCommandInput;
12
+ constructor(input: DeleteFlowTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput>;
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 { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0";
5
+ export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {
6
+ }
7
+ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeleteNamespaceCommandInput;
12
+ constructor(input: DeleteNamespaceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput>;
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 { DeleteSystemInstanceRequest, DeleteSystemInstanceResponse } from "../models/models_0";
5
+ export interface DeleteSystemInstanceCommandInput extends DeleteSystemInstanceRequest {
6
+ }
7
+ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteSystemInstanceCommand extends $Command<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeleteSystemInstanceCommandInput;
12
+ constructor(input: DeleteSystemInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput>;
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 { DeleteSystemTemplateRequest, DeleteSystemTemplateResponse } from "../models/models_0";
5
+ export interface DeleteSystemTemplateCommandInput extends DeleteSystemTemplateRequest {
6
+ }
7
+ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteSystemTemplateCommand extends $Command<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeleteSystemTemplateCommandInput;
12
+ constructor(input: DeleteSystemTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput>;
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 { DeploySystemInstanceRequest, DeploySystemInstanceResponse } from "../models/models_0";
5
+ export interface DeploySystemInstanceCommandInput extends DeploySystemInstanceRequest {
6
+ }
7
+ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeploySystemInstanceCommand extends $Command<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
11
+ readonly input: DeploySystemInstanceCommandInput;
12
+ constructor(input: DeploySystemInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }