@aws-sdk/client-iotthingsgraph 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/IoTThingsGraph.d.ts +36 -0
- package/dist-types/IoTThingsGraphClient.d.ts +24 -4
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +16 -0
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +16 -0
- package/dist-types/commands/GetEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/GetUploadStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SearchEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +16 -0
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/SearchThingsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +16 -0
- package/dist-types/models/IoTThingsGraphServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +274 -0
- package/dist-types/pagination/GetFlowTemplateRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetSystemTemplateRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListFlowExecutionMessagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/SearchEntitiesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchFlowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchFlowTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchSystemInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchSystemTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchThingsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { UpdateFlowTemplateRequest, UpdateFlowTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateFlowTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateFlowTemplateCommandInput extends UpdateFlowTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateFlowTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Updates the specified workflow. All deployed systems and system instances that use the workflow will see the changes in the flow when it is redeployed. If you don't want this
|
|
@@ -28,6 +33,8 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateFlowTemplateCommandInput - {@link UpdateFlowTemplateCommandInput}
|
|
37
|
+
* @returns {@link UpdateFlowTemplateCommandOutput}
|
|
31
38
|
* @see {@link UpdateFlowTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateFlowTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
|
|
|
49
56
|
export declare class UpdateFlowTemplateCommand extends $Command<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateFlowTemplateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateFlowTemplateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { UpdateSystemTemplateRequest, UpdateSystemTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSystemTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSystemTemplateCommandInput extends UpdateSystemTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSystemTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Updates the specified system. You don't need to run this action after updating a workflow. Any deployment that uses the system will see the changes in the system when it is redeployed.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateSystemTemplateCommandInput - {@link UpdateSystemTemplateCommandInput}
|
|
36
|
+
* @returns {@link UpdateSystemTemplateCommandOutput}
|
|
30
37
|
* @see {@link UpdateSystemTemplateCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateSystemTemplateCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
|
|
|
48
55
|
export declare class UpdateSystemTemplateCommand extends $Command<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
49
56
|
readonly input: UpdateSystemTemplateCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: UpdateSystemTemplateCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { UploadEntityDefinitionsRequest, UploadEntityDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UploadEntityDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UploadEntityDefinitionsCommandInput extends UploadEntityDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UploadEntityDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Asynchronously uploads one or more entity definitions to the user's namespace. The <code>document</code> parameter is required if
|
|
@@ -37,6 +42,8 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param UploadEntityDefinitionsCommandInput - {@link UploadEntityDefinitionsCommandInput}
|
|
46
|
+
* @returns {@link UploadEntityDefinitionsCommandOutput}
|
|
40
47
|
* @see {@link UploadEntityDefinitionsCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link UploadEntityDefinitionsCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
|
|
|
55
62
|
export declare class UploadEntityDefinitionsCommand extends $Command<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
56
63
|
readonly input: UploadEntityDefinitionsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: UploadEntityDefinitionsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from IoTThingsGraph service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class IoTThingsGraphServiceException extends __ServiceException {
|