@aws-sdk/client-iotthingsgraph 3.952.0 → 3.953.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-cjs/index.js +451 -299
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateEntityToThingCommand.js +2 -2
- package/dist-es/commands/CreateFlowTemplateCommand.js +2 -2
- package/dist-es/commands/CreateSystemInstanceCommand.js +2 -2
- package/dist-es/commands/CreateSystemTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteFlowTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteNamespaceCommand.js +2 -2
- package/dist-es/commands/DeleteSystemInstanceCommand.js +2 -2
- package/dist-es/commands/DeleteSystemTemplateCommand.js +2 -2
- package/dist-es/commands/DeploySystemInstanceCommand.js +2 -2
- package/dist-es/commands/DeprecateFlowTemplateCommand.js +2 -2
- package/dist-es/commands/DeprecateSystemTemplateCommand.js +2 -2
- package/dist-es/commands/DescribeNamespaceCommand.js +2 -2
- package/dist-es/commands/DissociateEntityFromThingCommand.js +2 -2
- package/dist-es/commands/GetEntitiesCommand.js +2 -2
- package/dist-es/commands/GetFlowTemplateCommand.js +2 -2
- package/dist-es/commands/GetFlowTemplateRevisionsCommand.js +2 -2
- package/dist-es/commands/GetNamespaceDeletionStatusCommand.js +2 -2
- package/dist-es/commands/GetSystemInstanceCommand.js +2 -2
- package/dist-es/commands/GetSystemTemplateCommand.js +2 -2
- package/dist-es/commands/GetSystemTemplateRevisionsCommand.js +2 -2
- package/dist-es/commands/GetUploadStatusCommand.js +2 -2
- package/dist-es/commands/ListFlowExecutionMessagesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/SearchEntitiesCommand.js +2 -2
- package/dist-es/commands/SearchFlowExecutionsCommand.js +2 -2
- package/dist-es/commands/SearchFlowTemplatesCommand.js +2 -2
- package/dist-es/commands/SearchSystemInstancesCommand.js +2 -2
- package/dist-es/commands/SearchSystemTemplatesCommand.js +2 -2
- package/dist-es/commands/SearchThingsCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UndeploySystemInstanceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateFlowTemplateCommand.js +2 -2
- package/dist-es/commands/UpdateSystemTemplateCommand.js +2 -2
- package/dist-es/commands/UploadEntityDefinitionsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +268 -247
- package/dist-types/IoTThingsGraphClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +132 -153
- package/dist-types/ts3.4/IoTThingsGraphClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +131 -153
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.iotthingsgraph",
|
|
32
|
+
version: "2018-09-06",
|
|
33
|
+
serviceTarget: "IotThingsGraphFrontEndService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "IoTThingsGraph",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateEntityToThing } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateEntityToThing$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateEntityToThingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateEntityToThingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "AssociateEntityToThing", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "AssociateEntityToThingCommand")
|
|
14
|
-
.sc(AssociateEntityToThing)
|
|
14
|
+
.sc(AssociateEntityToThing$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateFlowTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateFlowTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateFlowTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateFlowTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "CreateFlowTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "CreateFlowTemplateCommand")
|
|
14
|
-
.sc(CreateFlowTemplate)
|
|
14
|
+
.sc(CreateFlowTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSystemInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSystemInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSystemInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSystemInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "CreateSystemInstance", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "CreateSystemInstanceCommand")
|
|
14
|
-
.sc(CreateSystemInstance)
|
|
14
|
+
.sc(CreateSystemInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSystemTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSystemTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSystemTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSystemTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "CreateSystemTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "CreateSystemTemplateCommand")
|
|
14
|
-
.sc(CreateSystemTemplate)
|
|
14
|
+
.sc(CreateSystemTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteFlowTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteFlowTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteFlowTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteFlowTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeleteFlowTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeleteFlowTemplateCommand")
|
|
14
|
-
.sc(DeleteFlowTemplate)
|
|
14
|
+
.sc(DeleteFlowTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeleteNamespace", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeleteNamespaceCommand")
|
|
14
|
-
.sc(DeleteNamespace)
|
|
14
|
+
.sc(DeleteNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSystemInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSystemInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSystemInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSystemInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeleteSystemInstance", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeleteSystemInstanceCommand")
|
|
14
|
-
.sc(DeleteSystemInstance)
|
|
14
|
+
.sc(DeleteSystemInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSystemTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSystemTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSystemTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSystemTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeleteSystemTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeleteSystemTemplateCommand")
|
|
14
|
-
.sc(DeleteSystemTemplate)
|
|
14
|
+
.sc(DeleteSystemTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeploySystemInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeploySystemInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeploySystemInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeploySystemInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeploySystemInstance", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeploySystemInstanceCommand")
|
|
14
|
-
.sc(DeploySystemInstance)
|
|
14
|
+
.sc(DeploySystemInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeprecateFlowTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeprecateFlowTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeprecateFlowTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeprecateFlowTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeprecateFlowTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeprecateFlowTemplateCommand")
|
|
14
|
-
.sc(DeprecateFlowTemplate)
|
|
14
|
+
.sc(DeprecateFlowTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeprecateSystemTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeprecateSystemTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeprecateSystemTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeprecateSystemTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DeprecateSystemTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DeprecateSystemTemplateCommand")
|
|
14
|
-
.sc(DeprecateSystemTemplate)
|
|
14
|
+
.sc(DeprecateSystemTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DescribeNamespace", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DescribeNamespaceCommand")
|
|
14
|
-
.sc(DescribeNamespace)
|
|
14
|
+
.sc(DescribeNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DissociateEntityFromThing } from "../schemas/schemas_0";
|
|
4
|
+
import { DissociateEntityFromThing$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DissociateEntityFromThingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DissociateEntityFromThingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "DissociateEntityFromThing", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "DissociateEntityFromThingCommand")
|
|
14
|
-
.sc(DissociateEntityFromThing)
|
|
14
|
+
.sc(DissociateEntityFromThing$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEntities } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEntities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEntitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEntitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetEntities", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetEntitiesCommand")
|
|
14
|
-
.sc(GetEntities)
|
|
14
|
+
.sc(GetEntities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetFlowTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFlowTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFlowTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFlowTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetFlowTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetFlowTemplateCommand")
|
|
14
|
-
.sc(GetFlowTemplate)
|
|
14
|
+
.sc(GetFlowTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetFlowTemplateRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFlowTemplateRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFlowTemplateRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFlowTemplateRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetFlowTemplateRevisions", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetFlowTemplateRevisionsCommand")
|
|
14
|
-
.sc(GetFlowTemplateRevisions)
|
|
14
|
+
.sc(GetFlowTemplateRevisions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetNamespaceDeletionStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetNamespaceDeletionStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetNamespaceDeletionStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetNamespaceDeletionStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetNamespaceDeletionStatus", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetNamespaceDeletionStatusCommand")
|
|
14
|
-
.sc(GetNamespaceDeletionStatus)
|
|
14
|
+
.sc(GetNamespaceDeletionStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSystemInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSystemInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSystemInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSystemInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetSystemInstance", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetSystemInstanceCommand")
|
|
14
|
-
.sc(GetSystemInstance)
|
|
14
|
+
.sc(GetSystemInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSystemTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSystemTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSystemTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSystemTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetSystemTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetSystemTemplateCommand")
|
|
14
|
-
.sc(GetSystemTemplate)
|
|
14
|
+
.sc(GetSystemTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSystemTemplateRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSystemTemplateRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSystemTemplateRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSystemTemplateRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetSystemTemplateRevisions", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetSystemTemplateRevisionsCommand")
|
|
14
|
-
.sc(GetSystemTemplateRevisions)
|
|
14
|
+
.sc(GetSystemTemplateRevisions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetUploadStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetUploadStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetUploadStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetUploadStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "GetUploadStatus", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "GetUploadStatusCommand")
|
|
14
|
-
.sc(GetUploadStatus)
|
|
14
|
+
.sc(GetUploadStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListFlowExecutionMessages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListFlowExecutionMessages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListFlowExecutionMessagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListFlowExecutionMessagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "ListFlowExecutionMessages", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "ListFlowExecutionMessagesCommand")
|
|
14
|
-
.sc(ListFlowExecutionMessages)
|
|
14
|
+
.sc(ListFlowExecutionMessages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "ListTagsForResource", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchEntities } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchEntities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchEntitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchEntitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchEntities", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchEntitiesCommand")
|
|
14
|
-
.sc(SearchEntities)
|
|
14
|
+
.sc(SearchEntities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchFlowExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchFlowExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchFlowExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchFlowExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchFlowExecutions", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchFlowExecutionsCommand")
|
|
14
|
-
.sc(SearchFlowExecutions)
|
|
14
|
+
.sc(SearchFlowExecutions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchFlowTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchFlowTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchFlowTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchFlowTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchFlowTemplates", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchFlowTemplatesCommand")
|
|
14
|
-
.sc(SearchFlowTemplates)
|
|
14
|
+
.sc(SearchFlowTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchSystemInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchSystemInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchSystemInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchSystemInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchSystemInstances", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchSystemInstancesCommand")
|
|
14
|
-
.sc(SearchSystemInstances)
|
|
14
|
+
.sc(SearchSystemInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchSystemTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchSystemTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchSystemTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchSystemTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchSystemTemplates", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchSystemTemplatesCommand")
|
|
14
|
-
.sc(SearchSystemTemplates)
|
|
14
|
+
.sc(SearchSystemTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchThings } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchThings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchThingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchThingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "SearchThings", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "SearchThingsCommand")
|
|
14
|
-
.sc(SearchThings)
|
|
14
|
+
.sc(SearchThings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "TagResource", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UndeploySystemInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { UndeploySystemInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UndeploySystemInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UndeploySystemInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "UndeploySystemInstance", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "UndeploySystemInstanceCommand")
|
|
14
|
-
.sc(UndeploySystemInstance)
|
|
14
|
+
.sc(UndeploySystemInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "UntagResource", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateFlowTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateFlowTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateFlowTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateFlowTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "UpdateFlowTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "UpdateFlowTemplateCommand")
|
|
14
|
-
.sc(UpdateFlowTemplate)
|
|
14
|
+
.sc(UpdateFlowTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSystemTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSystemTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSystemTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSystemTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "UpdateSystemTemplate", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "UpdateSystemTemplateCommand")
|
|
14
|
-
.sc(UpdateSystemTemplate)
|
|
14
|
+
.sc(UpdateSystemTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UploadEntityDefinitions } from "../schemas/schemas_0";
|
|
4
|
+
import { UploadEntityDefinitions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UploadEntityDefinitionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UploadEntityDefinitionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotThingsGraphFrontEndService", "UploadEntityDefinitions", {})
|
|
13
13
|
.n("IoTThingsGraphClient", "UploadEntityDefinitionsCommand")
|
|
14
|
-
.sc(UploadEntityDefinitions)
|
|
14
|
+
.sc(UploadEntityDefinitions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|