@aws-sdk/client-iotthingsgraph 3.289.0 → 3.290.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 +13 -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 +13 -0
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +7 -0
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +13 -0
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +13 -0
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +13 -0
- package/dist-types/commands/GetEntitiesCommand.d.ts +13 -0
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +13 -0
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +13 -0
- package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +10 -0
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +13 -0
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +13 -0
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +13 -0
- package/dist-types/commands/GetUploadStatusCommand.d.ts +13 -0
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
- package/dist-types/commands/SearchEntitiesCommand.d.ts +10 -0
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +13 -0
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +10 -0
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +10 -0
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +10 -0
- package/dist-types/commands/SearchThingsCommand.d.ts +13 -0
- package/dist-types/commands/TagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +13 -0
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +13 -0
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +10 -0
- package/package.json +29 -29
|
@@ -32,6 +32,19 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
32
32
|
* @see {@link AssociateEntityToThingCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class AssociateEntityToThingCommand extends $Command<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: AssociateEntityToThingCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
33
33
|
* @see {@link CreateFlowTemplateCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
37
|
+
* <p></p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p></p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
43
|
+
* <p></p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
46
|
+
* <p></p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p></p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class CreateFlowTemplateCommand extends $Command<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
38
54
|
readonly input: CreateFlowTemplateCommandInput;
|
|
@@ -39,6 +39,22 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
39
39
|
* @see {@link CreateSystemInstanceCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
43
|
+
* <p></p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
46
|
+
* <p></p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p></p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
52
|
+
* <p></p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p></p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
42
58
|
*/
|
|
43
59
|
export declare class CreateSystemInstanceCommand extends $Command<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
44
60
|
readonly input: CreateSystemInstanceCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
32
32
|
* @see {@link CreateSystemTemplateCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class CreateSystemTemplateCommand extends $Command<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: CreateSystemTemplateCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
32
32
|
* @see {@link DeleteFlowTemplateCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class DeleteFlowTemplateCommand extends $Command<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: DeleteFlowTemplateCommandInput;
|
|
@@ -32,6 +32,13 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
32
32
|
* @see {@link DeleteNamespaceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
*/
|
|
36
43
|
export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
44
|
readonly input: DeleteNamespaceCommandInput;
|
|
@@ -33,6 +33,19 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
|
|
|
33
33
|
* @see {@link DeleteSystemInstanceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
37
|
+
* <p></p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p></p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
43
|
+
* <p></p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p></p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
36
49
|
*/
|
|
37
50
|
export declare class DeleteSystemInstanceCommand extends $Command<DeleteSystemInstanceCommandInput, DeleteSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
38
51
|
readonly input: DeleteSystemInstanceCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
|
|
|
32
32
|
* @see {@link DeleteSystemTemplateCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class DeleteSystemTemplateCommand extends $Command<DeleteSystemTemplateCommandInput, DeleteSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: DeleteSystemTemplateCommandInput;
|
|
@@ -42,6 +42,22 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
|
|
|
42
42
|
* @see {@link DeploySystemInstanceCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
46
|
+
* <p></p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
49
|
+
* <p></p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
52
|
+
* <p></p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p></p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p></p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
45
61
|
*/
|
|
46
62
|
export declare class DeploySystemInstanceCommand extends $Command<DeploySystemInstanceCommandInput, DeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
47
63
|
readonly input: DeploySystemInstanceCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
|
|
|
31
31
|
* @see {@link DeprecateFlowTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class DeprecateFlowTemplateCommand extends $Command<DeprecateFlowTemplateCommandInput, DeprecateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: DeprecateFlowTemplateCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
|
|
|
31
31
|
* @see {@link DeprecateSystemTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class DeprecateSystemTemplateCommand extends $Command<DeprecateSystemTemplateCommandInput, DeprecateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: DeprecateSystemTemplateCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
|
|
|
31
31
|
* @see {@link DescribeNamespaceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class DescribeNamespaceCommand extends $Command<DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: DescribeNamespaceCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
|
|
|
32
32
|
* @see {@link DissociateEntityFromThingCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class DissociateEntityFromThingCommand extends $Command<DissociateEntityFromThingCommandInput, DissociateEntityFromThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: DissociateEntityFromThingCommandInput;
|
|
@@ -62,6 +62,19 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
|
|
|
62
62
|
* @see {@link GetEntitiesCommandOutput} for command's `response` shape.
|
|
63
63
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
64
64
|
*
|
|
65
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
66
|
+
* <p></p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
69
|
+
* <p></p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
+
* <p></p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
+
* <p></p>
|
|
76
|
+
*
|
|
77
|
+
*
|
|
65
78
|
*/
|
|
66
79
|
export declare class GetEntitiesCommand extends $Command<GetEntitiesCommandInput, GetEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
67
80
|
readonly input: GetEntitiesCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
|
|
|
31
31
|
* @see {@link GetFlowTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class GetFlowTemplateCommand extends $Command<GetFlowTemplateCommandInput, GetFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: GetFlowTemplateCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
|
|
|
32
32
|
* @see {@link GetFlowTemplateRevisionsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class GetFlowTemplateRevisionsCommand extends $Command<GetFlowTemplateRevisionsCommandInput, GetFlowTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: GetFlowTemplateRevisionsCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
|
|
|
31
31
|
* @see {@link GetNamespaceDeletionStatusCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class GetNamespaceDeletionStatusCommand extends $Command<GetNamespaceDeletionStatusCommandInput, GetNamespaceDeletionStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
46
|
readonly input: GetNamespaceDeletionStatusCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
|
|
|
31
31
|
* @see {@link GetSystemInstanceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class GetSystemInstanceCommand extends $Command<GetSystemInstanceCommandInput, GetSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: GetSystemInstanceCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
|
|
|
31
31
|
* @see {@link GetSystemTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class GetSystemTemplateCommand extends $Command<GetSystemTemplateCommandInput, GetSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: GetSystemTemplateCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
|
|
|
32
32
|
* @see {@link GetSystemTemplateRevisionsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class GetSystemTemplateRevisionsCommand extends $Command<GetSystemTemplateRevisionsCommandInput, GetSystemTemplateRevisionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: GetSystemTemplateRevisionsCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
|
|
|
31
31
|
* @see {@link GetUploadStatusCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class GetUploadStatusCommand extends $Command<GetUploadStatusCommandInput, GetUploadStatusCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: GetUploadStatusCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
|
|
|
31
31
|
* @see {@link ListFlowExecutionMessagesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class ListFlowExecutionMessagesCommand extends $Command<ListFlowExecutionMessagesCommandInput, ListFlowExecutionMessagesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: ListFlowExecutionMessagesCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
|
|
|
31
31
|
* @see {@link SearchEntitiesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class SearchEntitiesCommand extends $Command<SearchEntitiesCommandInput, SearchEntitiesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
46
|
readonly input: SearchEntitiesCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
|
|
|
31
31
|
* @see {@link SearchFlowExecutionsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class SearchFlowExecutionsCommand extends $Command<SearchFlowExecutionsCommandInput, SearchFlowExecutionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: SearchFlowExecutionsCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
|
|
|
31
31
|
* @see {@link SearchFlowTemplatesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class SearchFlowTemplatesCommand extends $Command<SearchFlowTemplatesCommandInput, SearchFlowTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
46
|
readonly input: SearchFlowTemplatesCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
|
|
|
31
31
|
* @see {@link SearchSystemInstancesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class SearchSystemInstancesCommand extends $Command<SearchSystemInstancesCommandInput, SearchSystemInstancesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
46
|
readonly input: SearchSystemInstancesCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
|
|
|
31
31
|
* @see {@link SearchSystemTemplatesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class SearchSystemTemplatesCommand extends $Command<SearchSystemTemplatesCommandInput, SearchSystemTemplatesCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
46
|
readonly input: SearchSystemTemplatesCommandInput;
|
|
@@ -34,6 +34,19 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
|
|
|
34
34
|
* @see {@link SearchThingsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p></p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
37
50
|
*/
|
|
38
51
|
export declare class SearchThingsCommand extends $Command<SearchThingsCommandInput, SearchThingsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
39
52
|
readonly input: SearchThingsCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: TagResourceCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
|
|
|
31
31
|
* @see {@link UndeploySystemInstanceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p></p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class UndeploySystemInstanceCommand extends $Command<UndeploySystemInstanceCommandInput, UndeploySystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
52
|
readonly input: UndeploySystemInstanceCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: UntagResourceCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
|
|
|
32
32
|
* @see {@link UpdateFlowTemplateCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
36
|
+
* <p></p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p></p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p></p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class UpdateFlowTemplateCommand extends $Command<UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
37
50
|
readonly input: UpdateFlowTemplateCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
|
|
|
31
31
|
* @see {@link UpdateSystemTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
35
|
+
* <p></p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p></p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p></p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p></p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class UpdateSystemTemplateCommand extends $Command<UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
36
49
|
readonly input: UpdateSystemTemplateCommandInput;
|
|
@@ -41,6 +41,16 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
|
|
|
41
41
|
* @see {@link UploadEntityDefinitionsCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p></p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
48
|
+
* <p></p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p></p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
44
54
|
*/
|
|
45
55
|
export declare class UploadEntityDefinitionsCommand extends $Command<UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
46
56
|
readonly input: UploadEntityDefinitionsCommandInput;
|
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.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|