@aws-sdk/client-iotthingsgraph 3.890.0 → 3.891.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist-types/commands/AssociateEntityToThingCommand.d.ts +2 -0
  2. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -0
  5. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +2 -0
  6. package/dist-types/commands/DeleteNamespaceCommand.d.ts +2 -0
  7. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +2 -0
  9. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +2 -0
  10. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +2 -0
  11. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +2 -0
  12. package/dist-types/commands/DescribeNamespaceCommand.d.ts +2 -0
  13. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +2 -0
  14. package/dist-types/commands/GetEntitiesCommand.d.ts +2 -0
  15. package/dist-types/commands/GetFlowTemplateCommand.d.ts +2 -0
  16. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +2 -0
  17. package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +2 -0
  18. package/dist-types/commands/GetSystemInstanceCommand.d.ts +2 -0
  19. package/dist-types/commands/GetSystemTemplateCommand.d.ts +2 -0
  20. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +2 -0
  21. package/dist-types/commands/GetUploadStatusCommand.d.ts +2 -0
  22. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +2 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  24. package/dist-types/commands/SearchEntitiesCommand.d.ts +2 -0
  25. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +2 -0
  26. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +2 -0
  27. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +2 -0
  28. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +2 -0
  29. package/dist-types/commands/SearchThingsCommand.d.ts +2 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  31. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +2 -0
  32. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  33. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -0
  34. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -0
  35. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -0
  36. package/package.json +10 -10
@@ -36,6 +36,8 @@ declare const AssociateEntityToThingCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, AssociateEntityToThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, AssociateEntityToThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // AssociateEntityToThingRequest
41
43
  * thingName: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const CreateFlowTemplateCommand_base: {
37
37
  * ```javascript
38
38
  * import { IoTThingsGraphClient, CreateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
39
39
  * // const { IoTThingsGraphClient, CreateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
40
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
41
+ * const config = {}; // type is IoTThingsGraphClientConfig
40
42
  * const client = new IoTThingsGraphClient(config);
41
43
  * const input = { // CreateFlowTemplateRequest
42
44
  * definition: { // DefinitionDocument
@@ -43,6 +43,8 @@ declare const CreateSystemInstanceCommand_base: {
43
43
  * ```javascript
44
44
  * import { IoTThingsGraphClient, CreateSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
45
45
  * // const { IoTThingsGraphClient, CreateSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
46
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
47
+ * const config = {}; // type is IoTThingsGraphClientConfig
46
48
  * const client = new IoTThingsGraphClient(config);
47
49
  * const input = { // CreateSystemInstanceRequest
48
50
  * tags: [ // TagList
@@ -36,6 +36,8 @@ declare const CreateSystemTemplateCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, CreateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, CreateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // CreateSystemTemplateRequest
41
43
  * definition: { // DefinitionDocument
@@ -36,6 +36,8 @@ declare const DeleteFlowTemplateCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, DeleteFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, DeleteFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // DeleteFlowTemplateRequest
41
43
  * id: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const DeleteNamespaceCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, DeleteNamespaceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, DeleteNamespaceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = {};
41
43
  * const command = new DeleteNamespaceCommand(input);
@@ -37,6 +37,8 @@ declare const DeleteSystemInstanceCommand_base: {
37
37
  * ```javascript
38
38
  * import { IoTThingsGraphClient, DeleteSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
39
39
  * // const { IoTThingsGraphClient, DeleteSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
40
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
41
+ * const config = {}; // type is IoTThingsGraphClientConfig
40
42
  * const client = new IoTThingsGraphClient(config);
41
43
  * const input = { // DeleteSystemInstanceRequest
42
44
  * id: "STRING_VALUE",
@@ -36,6 +36,8 @@ declare const DeleteSystemTemplateCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, DeleteSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, DeleteSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // DeleteSystemTemplateRequest
41
43
  * id: "STRING_VALUE", // required
@@ -46,6 +46,8 @@ declare const DeploySystemInstanceCommand_base: {
46
46
  * ```javascript
47
47
  * import { IoTThingsGraphClient, DeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
48
48
  * // const { IoTThingsGraphClient, DeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
49
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
50
+ * const config = {}; // type is IoTThingsGraphClientConfig
49
51
  * const client = new IoTThingsGraphClient(config);
50
52
  * const input = { // DeploySystemInstanceRequest
51
53
  * id: "STRING_VALUE",
@@ -35,6 +35,8 @@ declare const DeprecateFlowTemplateCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, DeprecateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, DeprecateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // DeprecateFlowTemplateRequest
40
42
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const DeprecateSystemTemplateCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, DeprecateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, DeprecateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // DeprecateSystemTemplateRequest
40
42
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const DescribeNamespaceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, DescribeNamespaceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, DescribeNamespaceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // DescribeNamespaceRequest
40
42
  * namespaceName: "STRING_VALUE",
@@ -36,6 +36,8 @@ declare const DissociateEntityFromThingCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, DissociateEntityFromThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, DissociateEntityFromThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // DissociateEntityFromThingRequest
41
43
  * thingName: "STRING_VALUE", // required
@@ -66,6 +66,8 @@ declare const GetEntitiesCommand_base: {
66
66
  * ```javascript
67
67
  * import { IoTThingsGraphClient, GetEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
68
68
  * // const { IoTThingsGraphClient, GetEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
69
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
70
+ * const config = {}; // type is IoTThingsGraphClientConfig
69
71
  * const client = new IoTThingsGraphClient(config);
70
72
  * const input = { // GetEntitiesRequest
71
73
  * ids: [ // Urns // required
@@ -35,6 +35,8 @@ declare const GetFlowTemplateCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, GetFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, GetFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // GetFlowTemplateRequest
40
42
  * id: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const GetFlowTemplateRevisionsCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // GetFlowTemplateRevisionsRequest
41
43
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const GetNamespaceDeletionStatusCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, GetNamespaceDeletionStatusCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, GetNamespaceDeletionStatusCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = {};
40
42
  * const command = new GetNamespaceDeletionStatusCommand(input);
@@ -35,6 +35,8 @@ declare const GetSystemInstanceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, GetSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, GetSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // GetSystemInstanceRequest
40
42
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const GetSystemTemplateCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, GetSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, GetSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // GetSystemTemplateRequest
40
42
  * id: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const GetSystemTemplateRevisionsCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // GetSystemTemplateRevisionsRequest
41
43
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const GetUploadStatusCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, GetUploadStatusCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, GetUploadStatusCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // GetUploadStatusRequest
40
42
  * uploadId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const ListFlowExecutionMessagesCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // ListFlowExecutionMessagesRequest
40
42
  * flowExecutionId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const ListTagsForResourceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // ListTagsForResourceRequest
40
42
  * maxResults: Number("int"),
@@ -35,6 +35,8 @@ declare const SearchEntitiesCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, SearchEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, SearchEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // SearchEntitiesRequest
40
42
  * entityTypes: [ // EntityTypes // required
@@ -35,6 +35,8 @@ declare const SearchFlowExecutionsCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, SearchFlowExecutionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, SearchFlowExecutionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // SearchFlowExecutionsRequest
40
42
  * systemInstanceId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const SearchFlowTemplatesCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, SearchFlowTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, SearchFlowTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // SearchFlowTemplatesRequest
40
42
  * filters: [ // FlowTemplateFilters
@@ -35,6 +35,8 @@ declare const SearchSystemInstancesCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, SearchSystemInstancesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, SearchSystemInstancesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // SearchSystemInstancesRequest
40
42
  * filters: [ // SystemInstanceFilters
@@ -35,6 +35,8 @@ declare const SearchSystemTemplatesCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, SearchSystemTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, SearchSystemTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // SearchSystemTemplatesRequest
40
42
  * filters: [ // SystemTemplateFilters
@@ -38,6 +38,8 @@ declare const SearchThingsCommand_base: {
38
38
  * ```javascript
39
39
  * import { IoTThingsGraphClient, SearchThingsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
40
40
  * // const { IoTThingsGraphClient, SearchThingsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
41
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
42
+ * const config = {}; // type is IoTThingsGraphClientConfig
41
43
  * const client = new IoTThingsGraphClient(config);
42
44
  * const input = { // SearchThingsRequest
43
45
  * entityId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const TagResourceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, TagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, TagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // TagResourceRequest
40
42
  * resourceArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const UndeploySystemInstanceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, UndeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, UndeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // UndeploySystemInstanceRequest
40
42
  * id: "STRING_VALUE",
@@ -35,6 +35,8 @@ declare const UntagResourceCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, UntagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, UntagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // UntagResourceRequest
40
42
  * resourceArn: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const UpdateFlowTemplateCommand_base: {
36
36
  * ```javascript
37
37
  * import { IoTThingsGraphClient, UpdateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
38
38
  * // const { IoTThingsGraphClient, UpdateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
39
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
40
+ * const config = {}; // type is IoTThingsGraphClientConfig
39
41
  * const client = new IoTThingsGraphClient(config);
40
42
  * const input = { // UpdateFlowTemplateRequest
41
43
  * id: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const UpdateSystemTemplateCommand_base: {
35
35
  * ```javascript
36
36
  * import { IoTThingsGraphClient, UpdateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, UpdateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
39
+ * const config = {}; // type is IoTThingsGraphClientConfig
38
40
  * const client = new IoTThingsGraphClient(config);
39
41
  * const input = { // UpdateSystemTemplateRequest
40
42
  * id: "STRING_VALUE", // required
@@ -45,6 +45,8 @@ declare const UploadEntityDefinitionsCommand_base: {
45
45
  * ```javascript
46
46
  * import { IoTThingsGraphClient, UploadEntityDefinitionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
47
47
  * // const { IoTThingsGraphClient, UploadEntityDefinitionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
48
+ * // import type { IoTThingsGraphClientConfig } from "@aws-sdk/client-iotthingsgraph";
49
+ * const config = {}; // type is IoTThingsGraphClientConfig
48
50
  * const client = new IoTThingsGraphClient(config);
49
51
  * const input = { // UploadEntityDefinitionsRequest
50
52
  * document: { // DefinitionDocument
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.890.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iotthingsgraph",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
29
  "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
@@ -38,7 +38,7 @@
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
40
  "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
@@ -54,7 +54,7 @@
54
54
  "@smithy/util-defaults-mode-node": "^4.1.2",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },