@aws-sdk/client-iotthingsgraph 3.325.0 → 3.326.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.
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +4 -0
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +11 -0
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +11 -0
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +7 -0
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +17 -0
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +10 -0
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +4 -0
- package/dist-types/commands/GetEntitiesCommand.d.ts +17 -0
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +18 -0
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +14 -0
- package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +10 -0
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +35 -0
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +18 -0
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +14 -0
- package/dist-types/commands/GetUploadStatusCommand.d.ts +14 -0
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/SearchEntitiesCommand.d.ts +18 -0
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +14 -0
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +19 -0
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +14 -0
- package/dist-types/commands/SearchThingsCommand.d.ts +12 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +11 -0
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +11 -0
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -36,6 +36,8 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new AssociateEntityToThingCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param AssociateEntityToThingCommandInput - {@link AssociateEntityToThingCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
56
58
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
59
|
* <p></p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class AssociateEntityToThingCommand extends $Command<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -39,6 +39,15 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateFlowTemplateCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateFlowTemplateResponse
|
|
43
|
+
* // summary: { // FlowTemplateSummary
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // arn: "STRING_VALUE",
|
|
46
|
+
* // revisionNumber: Number("long"),
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
42
51
|
* ```
|
|
43
52
|
*
|
|
44
53
|
* @param CreateFlowTemplateCommandInput - {@link CreateFlowTemplateCommandInput}
|
|
@@ -62,6 +71,8 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
62
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
63
72
|
* <p></p>
|
|
64
73
|
*
|
|
74
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
65
76
|
*
|
|
66
77
|
*/
|
|
67
78
|
export declare class CreateFlowTemplateCommand extends $Command<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -58,6 +58,20 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
58
58
|
* };
|
|
59
59
|
* const command = new CreateSystemInstanceCommand(input);
|
|
60
60
|
* const response = await client.send(command);
|
|
61
|
+
* // { // CreateSystemInstanceResponse
|
|
62
|
+
* // summary: { // SystemInstanceSummary
|
|
63
|
+
* // id: "STRING_VALUE",
|
|
64
|
+
* // arn: "STRING_VALUE",
|
|
65
|
+
* // status: "STRING_VALUE",
|
|
66
|
+
* // target: "STRING_VALUE",
|
|
67
|
+
* // greengrassGroupName: "STRING_VALUE",
|
|
68
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
69
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
70
|
+
* // greengrassGroupId: "STRING_VALUE",
|
|
71
|
+
* // greengrassGroupVersionId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
61
75
|
* ```
|
|
62
76
|
*
|
|
63
77
|
* @param CreateSystemInstanceCommandInput - {@link CreateSystemInstanceCommandInput}
|
|
@@ -81,6 +95,8 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
81
95
|
* @throws {@link ThrottlingException} (client fault)
|
|
82
96
|
* <p></p>
|
|
83
97
|
*
|
|
98
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
84
100
|
*
|
|
85
101
|
*/
|
|
86
102
|
export declare class CreateSystemInstanceCommand extends $Command<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -38,6 +38,15 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateSystemTemplateCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateSystemTemplateResponse
|
|
42
|
+
* // summary: { // SystemTemplateSummary
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // arn: "STRING_VALUE",
|
|
45
|
+
* // revisionNumber: Number("long"),
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
41
50
|
* ```
|
|
42
51
|
*
|
|
43
52
|
* @param CreateSystemTemplateCommandInput - {@link CreateSystemTemplateCommandInput}
|
|
@@ -58,6 +67,8 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
58
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
59
68
|
* <p></p>
|
|
60
69
|
*
|
|
70
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
61
72
|
*
|
|
62
73
|
*/
|
|
63
74
|
export declare class CreateSystemTemplateCommand extends $Command<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteFlowTemplateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteFlowTemplateCommandInput - {@link DeleteFlowTemplateCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
54
56
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
57
|
* <p></p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteFlowTemplateCommand extends $Command<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
32
32
|
* const input = {};
|
|
33
33
|
* const command = new DeleteNamespaceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteNamespaceResponse
|
|
36
|
+
* // namespaceArn: "STRING_VALUE",
|
|
37
|
+
* // namespaceName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeleteNamespaceCommandInput - {@link DeleteNamespaceCommandInput}
|
|
@@ -46,6 +51,8 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
46
51
|
* @throws {@link ThrottlingException} (client fault)
|
|
47
52
|
* <p></p>
|
|
48
53
|
*
|
|
54
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
49
56
|
*
|
|
50
57
|
*/
|
|
51
58
|
export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSystemInstanceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteSystemInstanceCommandInput - {@link DeleteSystemInstanceCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
|
|
|
55
57
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
58
|
* <p></p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteSystemInstanceCommand extends $Command<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteSystemTemplateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteSystemTemplateCommandInput - {@link DeleteSystemTemplateCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
|
|
|
54
56
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
57
|
* <p></p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteSystemTemplateCommand extends $Command<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -44,6 +44,21 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new DeploySystemInstanceCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // DeploySystemInstanceResponse
|
|
48
|
+
* // summary: { // SystemInstanceSummary
|
|
49
|
+
* // id: "STRING_VALUE",
|
|
50
|
+
* // arn: "STRING_VALUE",
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // target: "STRING_VALUE",
|
|
53
|
+
* // greengrassGroupName: "STRING_VALUE",
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // greengrassGroupId: "STRING_VALUE",
|
|
57
|
+
* // greengrassGroupVersionId: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // greengrassDeploymentId: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
47
62
|
* ```
|
|
48
63
|
*
|
|
49
64
|
* @param DeploySystemInstanceCommandInput - {@link DeploySystemInstanceCommandInput}
|
|
@@ -67,6 +82,8 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
|
|
|
67
82
|
* @throws {@link ThrottlingException} (client fault)
|
|
68
83
|
* <p></p>
|
|
69
84
|
*
|
|
85
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
70
87
|
*
|
|
71
88
|
*/
|
|
72
89
|
export declare class DeploySystemInstanceCommand extends $Command<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeprecateFlowTemplateCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeprecateFlowTemplateCommandInput - {@link DeprecateFlowTemplateCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
|
|
|
53
55
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
56
|
* <p></p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeprecateFlowTemplateCommand extends $Command<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeprecateSystemTemplateCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeprecateSystemTemplateCommandInput - {@link DeprecateSystemTemplateCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
|
|
|
53
55
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
56
|
* <p></p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeprecateSystemTemplateCommand extends $Command<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,14 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeNamespaceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeNamespaceResponse
|
|
37
|
+
* // namespaceArn: "STRING_VALUE",
|
|
38
|
+
* // namespaceName: "STRING_VALUE",
|
|
39
|
+
* // trackingNamespaceName: "STRING_VALUE",
|
|
40
|
+
* // trackingNamespaceVersion: Number("long"),
|
|
41
|
+
* // namespaceVersion: Number("long"),
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
36
44
|
* ```
|
|
37
45
|
*
|
|
38
46
|
* @param DescribeNamespaceCommandInput - {@link DescribeNamespaceCommandInput}
|
|
@@ -53,6 +61,8 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
|
|
|
53
61
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
62
|
* <p></p>
|
|
55
63
|
*
|
|
64
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
56
66
|
*
|
|
57
67
|
*/
|
|
58
68
|
export declare class DescribeNamespaceCommand extends $Command<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DissociateEntityFromThingCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DissociateEntityFromThingCommandInput - {@link DissociateEntityFromThingCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
|
|
|
55
57
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
58
|
* <p></p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DissociateEntityFromThingCommand extends $Command<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -67,6 +67,21 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new GetEntitiesCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // { // GetEntitiesResponse
|
|
71
|
+
* // descriptions: [ // EntityDescriptions
|
|
72
|
+
* // { // EntityDescription
|
|
73
|
+
* // id: "STRING_VALUE",
|
|
74
|
+
* // arn: "STRING_VALUE",
|
|
75
|
+
* // type: "STRING_VALUE",
|
|
76
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
77
|
+
* // definition: { // DefinitionDocument
|
|
78
|
+
* // language: "STRING_VALUE", // required
|
|
79
|
+
* // text: "STRING_VALUE", // required
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
70
85
|
* ```
|
|
71
86
|
*
|
|
72
87
|
* @param GetEntitiesCommandInput - {@link GetEntitiesCommandInput}
|
|
@@ -87,6 +102,8 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
|
|
|
87
102
|
* @throws {@link ThrottlingException} (client fault)
|
|
88
103
|
* <p></p>
|
|
89
104
|
*
|
|
105
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
90
107
|
*
|
|
91
108
|
*/
|
|
92
109
|
export declare class GetEntitiesCommand extends $Command<GetEntitiesCommandInput, GetEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -34,6 +34,22 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetFlowTemplateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetFlowTemplateResponse
|
|
38
|
+
* // description: { // FlowTemplateDescription
|
|
39
|
+
* // summary: { // FlowTemplateSummary
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // arn: "STRING_VALUE",
|
|
42
|
+
* // revisionNumber: Number("long"),
|
|
43
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // },
|
|
45
|
+
* // definition: { // DefinitionDocument
|
|
46
|
+
* // language: "STRING_VALUE", // required
|
|
47
|
+
* // text: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // validatedNamespaceVersion: Number("long"),
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
37
53
|
* ```
|
|
38
54
|
*
|
|
39
55
|
* @param GetFlowTemplateCommandInput - {@link GetFlowTemplateCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
|
|
|
54
70
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
71
|
* <p></p>
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class GetFlowTemplateCommand extends $Command<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -36,6 +36,18 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetFlowTemplateRevisionsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetFlowTemplateRevisionsResponse
|
|
40
|
+
* // summaries: [ // FlowTemplateSummaries
|
|
41
|
+
* // { // FlowTemplateSummary
|
|
42
|
+
* // id: "STRING_VALUE",
|
|
43
|
+
* // arn: "STRING_VALUE",
|
|
44
|
+
* // revisionNumber: Number("long"),
|
|
45
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
39
51
|
* ```
|
|
40
52
|
*
|
|
41
53
|
* @param GetFlowTemplateRevisionsCommandInput - {@link GetFlowTemplateRevisionsCommandInput}
|
|
@@ -56,6 +68,8 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
|
|
|
56
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
69
|
* <p></p>
|
|
58
70
|
*
|
|
71
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
59
73
|
*
|
|
60
74
|
*/
|
|
61
75
|
export declare class GetFlowTemplateRevisionsCommand extends $Command<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -31,6 +31,14 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
|
|
|
31
31
|
* const input = {};
|
|
32
32
|
* const command = new GetNamespaceDeletionStatusCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetNamespaceDeletionStatusResponse
|
|
35
|
+
* // namespaceArn: "STRING_VALUE",
|
|
36
|
+
* // namespaceName: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // errorCode: "STRING_VALUE",
|
|
39
|
+
* // errorMessage: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
34
42
|
* ```
|
|
35
43
|
*
|
|
36
44
|
* @param GetNamespaceDeletionStatusCommandInput - {@link GetNamespaceDeletionStatusCommandInput}
|
|
@@ -48,6 +56,8 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
|
|
|
48
56
|
* @throws {@link ThrottlingException} (client fault)
|
|
49
57
|
* <p></p>
|
|
50
58
|
*
|
|
59
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
51
61
|
*
|
|
52
62
|
*/
|
|
53
63
|
export declare class GetNamespaceDeletionStatusCommand extends $Command<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,39 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSystemInstanceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetSystemInstanceResponse
|
|
37
|
+
* // description: { // SystemInstanceDescription
|
|
38
|
+
* // summary: { // SystemInstanceSummary
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // target: "STRING_VALUE",
|
|
43
|
+
* // greengrassGroupName: "STRING_VALUE",
|
|
44
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // greengrassGroupId: "STRING_VALUE",
|
|
47
|
+
* // greengrassGroupVersionId: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // definition: { // DefinitionDocument
|
|
50
|
+
* // language: "STRING_VALUE", // required
|
|
51
|
+
* // text: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // s3BucketName: "STRING_VALUE",
|
|
54
|
+
* // metricsConfiguration: { // MetricsConfiguration
|
|
55
|
+
* // cloudMetricEnabled: true || false,
|
|
56
|
+
* // metricRuleRoleArn: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // validatedNamespaceVersion: Number("long"),
|
|
59
|
+
* // validatedDependencyRevisions: [ // DependencyRevisions
|
|
60
|
+
* // { // DependencyRevision
|
|
61
|
+
* // id: "STRING_VALUE",
|
|
62
|
+
* // revisionNumber: Number("long"),
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // flowActionsRoleArn: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
36
69
|
* ```
|
|
37
70
|
*
|
|
38
71
|
* @param GetSystemInstanceCommandInput - {@link GetSystemInstanceCommandInput}
|
|
@@ -53,6 +86,8 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
|
|
|
53
86
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
87
|
* <p></p>
|
|
55
88
|
*
|
|
89
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
56
91
|
*
|
|
57
92
|
*/
|
|
58
93
|
export declare class GetSystemInstanceCommand extends $Command<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -34,6 +34,22 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetSystemTemplateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetSystemTemplateResponse
|
|
38
|
+
* // description: { // SystemTemplateDescription
|
|
39
|
+
* // summary: { // SystemTemplateSummary
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // arn: "STRING_VALUE",
|
|
42
|
+
* // revisionNumber: Number("long"),
|
|
43
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // },
|
|
45
|
+
* // definition: { // DefinitionDocument
|
|
46
|
+
* // language: "STRING_VALUE", // required
|
|
47
|
+
* // text: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // validatedNamespaceVersion: Number("long"),
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
37
53
|
* ```
|
|
38
54
|
*
|
|
39
55
|
* @param GetSystemTemplateCommandInput - {@link GetSystemTemplateCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
|
|
|
54
70
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
71
|
* <p></p>
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class GetSystemTemplateCommand extends $Command<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -36,6 +36,18 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetSystemTemplateRevisionsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetSystemTemplateRevisionsResponse
|
|
40
|
+
* // summaries: [ // SystemTemplateSummaries
|
|
41
|
+
* // { // SystemTemplateSummary
|
|
42
|
+
* // id: "STRING_VALUE",
|
|
43
|
+
* // arn: "STRING_VALUE",
|
|
44
|
+
* // revisionNumber: Number("long"),
|
|
45
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
39
51
|
* ```
|
|
40
52
|
*
|
|
41
53
|
* @param GetSystemTemplateRevisionsCommandInput - {@link GetSystemTemplateRevisionsCommandInput}
|
|
@@ -56,6 +68,8 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
|
|
|
56
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
69
|
* <p></p>
|
|
58
70
|
*
|
|
71
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
59
73
|
*
|
|
60
74
|
*/
|
|
61
75
|
export declare class GetSystemTemplateRevisionsCommand extends $Command<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetUploadStatusCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetUploadStatusResponse
|
|
37
|
+
* // uploadId: "STRING_VALUE", // required
|
|
38
|
+
* // uploadStatus: "STRING_VALUE", // required
|
|
39
|
+
* // namespaceArn: "STRING_VALUE",
|
|
40
|
+
* // namespaceName: "STRING_VALUE",
|
|
41
|
+
* // namespaceVersion: Number("long"),
|
|
42
|
+
* // failureReason: [ // StringList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // createdDate: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param GetUploadStatusCommandInput - {@link GetUploadStatusCommandInput}
|
|
@@ -53,6 +65,8 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
|
|
|
53
65
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
66
|
* <p></p>
|
|
55
67
|
*
|
|
68
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
56
70
|
*
|
|
57
71
|
*/
|
|
58
72
|
export declare class GetUploadStatusCommand extends $Command<GetUploadStatusCommandInput, GetUploadStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -35,6 +35,18 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListFlowExecutionMessagesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListFlowExecutionMessagesResponse
|
|
39
|
+
* // messages: [ // FlowExecutionMessages
|
|
40
|
+
* // { // FlowExecutionMessage
|
|
41
|
+
* // messageId: "STRING_VALUE",
|
|
42
|
+
* // eventType: "STRING_VALUE",
|
|
43
|
+
* // timestamp: new Date("TIMESTAMP"),
|
|
44
|
+
* // payload: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
38
50
|
* ```
|
|
39
51
|
*
|
|
40
52
|
* @param ListFlowExecutionMessagesCommandInput - {@link ListFlowExecutionMessagesCommandInput}
|
|
@@ -55,6 +67,8 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
|
|
|
55
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
68
|
* <p></p>
|
|
57
69
|
*
|
|
70
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
58
72
|
*
|
|
59
73
|
*/
|
|
60
74
|
export declare class ListFlowExecutionMessagesCommand extends $Command<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -35,6 +35,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListTagsForResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListTagsForResourceResponse
|
|
39
|
+
* // tags: [ // TagList
|
|
40
|
+
* // { // Tag
|
|
41
|
+
* // key: "STRING_VALUE", // required
|
|
42
|
+
* // value: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
38
48
|
* ```
|
|
39
49
|
*
|
|
40
50
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
55
65
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
66
|
* <p></p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -46,6 +46,22 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new SearchEntitiesCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // SearchEntitiesResponse
|
|
50
|
+
* // descriptions: [ // EntityDescriptions
|
|
51
|
+
* // { // EntityDescription
|
|
52
|
+
* // id: "STRING_VALUE",
|
|
53
|
+
* // arn: "STRING_VALUE",
|
|
54
|
+
* // type: "STRING_VALUE",
|
|
55
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // definition: { // DefinitionDocument
|
|
57
|
+
* // language: "STRING_VALUE", // required
|
|
58
|
+
* // text: "STRING_VALUE", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
49
65
|
* ```
|
|
50
66
|
*
|
|
51
67
|
* @param SearchEntitiesCommandInput - {@link SearchEntitiesCommandInput}
|
|
@@ -63,6 +79,8 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
|
|
|
63
79
|
* @throws {@link ThrottlingException} (client fault)
|
|
64
80
|
* <p></p>
|
|
65
81
|
*
|
|
82
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
66
84
|
*
|
|
67
85
|
*/
|
|
68
86
|
export declare class SearchEntitiesCommand extends $Command<SearchEntitiesCommandInput, SearchEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -38,6 +38,20 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new SearchFlowExecutionsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // SearchFlowExecutionsResponse
|
|
42
|
+
* // summaries: [ // FlowExecutionSummaries
|
|
43
|
+
* // { // FlowExecutionSummary
|
|
44
|
+
* // flowExecutionId: "STRING_VALUE",
|
|
45
|
+
* // status: "STRING_VALUE",
|
|
46
|
+
* // systemInstanceId: "STRING_VALUE",
|
|
47
|
+
* // flowTemplateId: "STRING_VALUE",
|
|
48
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // nextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
41
55
|
* ```
|
|
42
56
|
*
|
|
43
57
|
* @param SearchFlowExecutionsCommandInput - {@link SearchFlowExecutionsCommandInput}
|
|
@@ -58,6 +72,8 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
|
|
|
58
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
59
73
|
* <p></p>
|
|
60
74
|
*
|
|
75
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
61
77
|
*
|
|
62
78
|
*/
|
|
63
79
|
export declare class SearchFlowExecutionsCommand extends $Command<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -42,6 +42,18 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new SearchFlowTemplatesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // SearchFlowTemplatesResponse
|
|
46
|
+
* // summaries: [ // FlowTemplateSummaries
|
|
47
|
+
* // { // FlowTemplateSummary
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // revisionNumber: Number("long"),
|
|
51
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
45
57
|
* ```
|
|
46
58
|
*
|
|
47
59
|
* @param SearchFlowTemplatesCommandInput - {@link SearchFlowTemplatesCommandInput}
|
|
@@ -59,6 +71,8 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
|
|
|
59
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
72
|
* <p></p>
|
|
61
73
|
*
|
|
74
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
76
|
*
|
|
63
77
|
*/
|
|
64
78
|
export declare class SearchFlowTemplatesCommand extends $Command<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -42,6 +42,23 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new SearchSystemInstancesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // SearchSystemInstancesResponse
|
|
46
|
+
* // summaries: [ // SystemInstanceSummaries
|
|
47
|
+
* // { // SystemInstanceSummary
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // status: "STRING_VALUE",
|
|
51
|
+
* // target: "STRING_VALUE",
|
|
52
|
+
* // greengrassGroupName: "STRING_VALUE",
|
|
53
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // greengrassGroupId: "STRING_VALUE",
|
|
56
|
+
* // greengrassGroupVersionId: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
45
62
|
* ```
|
|
46
63
|
*
|
|
47
64
|
* @param SearchSystemInstancesCommandInput - {@link SearchSystemInstancesCommandInput}
|
|
@@ -59,6 +76,8 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
|
|
|
59
76
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
77
|
* <p></p>
|
|
61
78
|
*
|
|
79
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
81
|
*
|
|
63
82
|
*/
|
|
64
83
|
export declare class SearchSystemInstancesCommand extends $Command<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -42,6 +42,18 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new SearchSystemTemplatesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // SearchSystemTemplatesResponse
|
|
46
|
+
* // summaries: [ // SystemTemplateSummaries
|
|
47
|
+
* // { // SystemTemplateSummary
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // revisionNumber: Number("long"),
|
|
51
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
45
57
|
* ```
|
|
46
58
|
*
|
|
47
59
|
* @param SearchSystemTemplatesCommandInput - {@link SearchSystemTemplatesCommandInput}
|
|
@@ -59,6 +71,8 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
|
|
|
59
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
72
|
* <p></p>
|
|
61
73
|
*
|
|
74
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
76
|
*
|
|
63
77
|
*/
|
|
64
78
|
export declare class SearchSystemTemplatesCommand extends $Command<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -39,6 +39,16 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new SearchThingsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // SearchThingsResponse
|
|
43
|
+
* // things: [ // Things
|
|
44
|
+
* // { // Thing
|
|
45
|
+
* // thingArn: "STRING_VALUE",
|
|
46
|
+
* // thingName: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // nextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
42
52
|
* ```
|
|
43
53
|
*
|
|
44
54
|
* @param SearchThingsCommandInput - {@link SearchThingsCommandInput}
|
|
@@ -59,6 +69,8 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
|
|
|
59
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
70
|
* <p></p>
|
|
61
71
|
*
|
|
72
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
74
|
*
|
|
63
75
|
*/
|
|
64
76
|
export declare class SearchThingsCommand extends $Command<SearchThingsCommandInput, SearchThingsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new TagResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
59
61
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
62
|
* <p></p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UndeploySystemInstanceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UndeploySystemInstanceResponse
|
|
37
|
+
* // summary: { // SystemInstanceSummary
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // target: "STRING_VALUE",
|
|
42
|
+
* // greengrassGroupName: "STRING_VALUE",
|
|
43
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // greengrassGroupId: "STRING_VALUE",
|
|
46
|
+
* // greengrassGroupVersionId: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param UndeploySystemInstanceCommandInput - {@link UndeploySystemInstanceCommandInput}
|
|
@@ -56,6 +70,8 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
|
|
|
56
70
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
71
|
* <p></p>
|
|
58
72
|
*
|
|
73
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
59
75
|
*
|
|
60
76
|
*/
|
|
61
77
|
export declare class UndeploySystemInstanceCommand extends $Command<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UntagResourceCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
56
58
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
59
|
* <p></p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -39,6 +39,15 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateFlowTemplateCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateFlowTemplateResponse
|
|
43
|
+
* // summary: { // FlowTemplateSummary
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // arn: "STRING_VALUE",
|
|
46
|
+
* // revisionNumber: Number("long"),
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
42
51
|
* ```
|
|
43
52
|
*
|
|
44
53
|
* @param UpdateFlowTemplateCommandInput - {@link UpdateFlowTemplateCommandInput}
|
|
@@ -59,6 +68,8 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
|
|
|
59
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
69
|
* <p></p>
|
|
61
70
|
*
|
|
71
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
62
73
|
*
|
|
63
74
|
*/
|
|
64
75
|
export declare class UpdateFlowTemplateCommand extends $Command<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -38,6 +38,15 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateSystemTemplateCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateSystemTemplateResponse
|
|
42
|
+
* // summary: { // SystemTemplateSummary
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // arn: "STRING_VALUE",
|
|
45
|
+
* // revisionNumber: Number("long"),
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
41
50
|
* ```
|
|
42
51
|
*
|
|
43
52
|
* @param UpdateSystemTemplateCommandInput - {@link UpdateSystemTemplateCommandInput}
|
|
@@ -58,6 +67,8 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
|
|
|
58
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
59
68
|
* <p></p>
|
|
60
69
|
*
|
|
70
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
61
72
|
*
|
|
62
73
|
*/
|
|
63
74
|
export declare class UpdateSystemTemplateCommand extends $Command<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
@@ -48,6 +48,10 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UploadEntityDefinitionsCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UploadEntityDefinitionsResponse
|
|
52
|
+
* // uploadId: "STRING_VALUE", // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
51
55
|
* ```
|
|
52
56
|
*
|
|
53
57
|
* @param UploadEntityDefinitionsCommandInput - {@link UploadEntityDefinitionsCommandInput}
|
|
@@ -65,6 +69,8 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
|
|
|
65
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
66
70
|
* <p></p>
|
|
67
71
|
*
|
|
72
|
+
* @throws {@link IoTThingsGraphServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
|
|
68
74
|
*
|
|
69
75
|
*/
|
|
70
76
|
export declare class UploadEntityDefinitionsCommand extends $Command<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotthingsgraph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|