@aws-sdk/client-iotthingsgraph 3.299.0 → 3.301.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 +5 -0
  2. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +7 -0
  3. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +20 -0
  4. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +7 -0
  5. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteNamespaceCommand.d.ts +1 -0
  7. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +3 -0
  9. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +3 -0
  10. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +3 -0
  11. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeNamespaceCommand.d.ts +3 -0
  13. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +4 -0
  14. package/dist-types/commands/GetEntitiesCommand.d.ts +6 -0
  15. package/dist-types/commands/GetFlowTemplateCommand.d.ts +4 -0
  16. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +5 -0
  17. package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +1 -0
  18. package/dist-types/commands/GetSystemInstanceCommand.d.ts +3 -0
  19. package/dist-types/commands/GetSystemTemplateCommand.d.ts +4 -0
  20. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +5 -0
  21. package/dist-types/commands/GetUploadStatusCommand.d.ts +3 -0
  22. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +5 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
  24. package/dist-types/commands/SearchEntitiesCommand.d.ts +16 -0
  25. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +8 -0
  26. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +12 -0
  27. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +12 -0
  28. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +12 -0
  29. package/dist-types/commands/SearchThingsCommand.d.ts +6 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +3 -0
  32. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  33. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +8 -0
  34. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +8 -0
  35. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +8 -0
  36. package/package.json +8 -8
@@ -29,6 +29,11 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
29
29
  * import { IoTThingsGraphClient, AssociateEntityToThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, AssociateEntityToThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // AssociateEntityToThingRequest
33
+ * thingName: "STRING_VALUE", // required
34
+ * entityId: "STRING_VALUE", // required
35
+ * namespaceVersion: Number("long"),
36
+ * };
32
37
  * const command = new AssociateEntityToThingCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -30,6 +30,13 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
30
30
  * import { IoTThingsGraphClient, CreateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
31
31
  * // const { IoTThingsGraphClient, CreateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
32
32
  * const client = new IoTThingsGraphClient(config);
33
+ * const input = { // CreateFlowTemplateRequest
34
+ * definition: { // DefinitionDocument
35
+ * language: "STRING_VALUE", // required
36
+ * text: "STRING_VALUE", // required
37
+ * },
38
+ * compatibleNamespaceVersion: Number("long"),
39
+ * };
33
40
  * const command = new CreateFlowTemplateCommand(input);
34
41
  * const response = await client.send(command);
35
42
  * ```
@@ -36,6 +36,26 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
36
36
  * import { IoTThingsGraphClient, CreateSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
37
37
  * // const { IoTThingsGraphClient, CreateSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
38
38
  * const client = new IoTThingsGraphClient(config);
39
+ * const input = { // CreateSystemInstanceRequest
40
+ * tags: [ // TagList
41
+ * { // Tag
42
+ * key: "STRING_VALUE", // required
43
+ * value: "STRING_VALUE", // required
44
+ * },
45
+ * ],
46
+ * definition: { // DefinitionDocument
47
+ * language: "STRING_VALUE", // required
48
+ * text: "STRING_VALUE", // required
49
+ * },
50
+ * target: "STRING_VALUE", // required
51
+ * greengrassGroupName: "STRING_VALUE",
52
+ * s3BucketName: "STRING_VALUE",
53
+ * metricsConfiguration: { // MetricsConfiguration
54
+ * cloudMetricEnabled: true || false,
55
+ * metricRuleRoleArn: "STRING_VALUE",
56
+ * },
57
+ * flowActionsRoleArn: "STRING_VALUE",
58
+ * };
39
59
  * const command = new CreateSystemInstanceCommand(input);
40
60
  * const response = await client.send(command);
41
61
  * ```
@@ -29,6 +29,13 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
29
29
  * import { IoTThingsGraphClient, CreateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, CreateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // CreateSystemTemplateRequest
33
+ * definition: { // DefinitionDocument
34
+ * language: "STRING_VALUE", // required
35
+ * text: "STRING_VALUE", // required
36
+ * },
37
+ * compatibleNamespaceVersion: Number("long"),
38
+ * };
32
39
  * const command = new CreateSystemTemplateCommand(input);
33
40
  * const response = await client.send(command);
34
41
  * ```
@@ -29,6 +29,9 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
29
29
  * import { IoTThingsGraphClient, DeleteFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, DeleteFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // DeleteFlowTemplateRequest
33
+ * id: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteFlowTemplateCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -29,6 +29,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
29
29
  * import { IoTThingsGraphClient, DeleteNamespaceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, DeleteNamespaceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = {};
32
33
  * const command = new DeleteNamespaceCommand(input);
33
34
  * const response = await client.send(command);
34
35
  * ```
@@ -30,6 +30,9 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
30
30
  * import { IoTThingsGraphClient, DeleteSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
31
31
  * // const { IoTThingsGraphClient, DeleteSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
32
32
  * const client = new IoTThingsGraphClient(config);
33
+ * const input = { // DeleteSystemInstanceRequest
34
+ * id: "STRING_VALUE",
35
+ * };
33
36
  * const command = new DeleteSystemInstanceCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -29,6 +29,9 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
29
29
  * import { IoTThingsGraphClient, DeleteSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, DeleteSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // DeleteSystemTemplateRequest
33
+ * id: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteSystemTemplateCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -39,6 +39,9 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
39
39
  * import { IoTThingsGraphClient, DeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
40
40
  * // const { IoTThingsGraphClient, DeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
41
41
  * const client = new IoTThingsGraphClient(config);
42
+ * const input = { // DeploySystemInstanceRequest
43
+ * id: "STRING_VALUE",
44
+ * };
42
45
  * const command = new DeploySystemInstanceCommand(input);
43
46
  * const response = await client.send(command);
44
47
  * ```
@@ -28,6 +28,9 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
28
28
  * import { IoTThingsGraphClient, DeprecateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, DeprecateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // DeprecateFlowTemplateRequest
32
+ * id: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeprecateFlowTemplateCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
28
28
  * import { IoTThingsGraphClient, DeprecateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, DeprecateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // DeprecateSystemTemplateRequest
32
+ * id: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeprecateSystemTemplateCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
28
28
  * import { IoTThingsGraphClient, DescribeNamespaceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, DescribeNamespaceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // DescribeNamespaceRequest
32
+ * namespaceName: "STRING_VALUE",
33
+ * };
31
34
  * const command = new DescribeNamespaceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -29,6 +29,10 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
29
29
  * import { IoTThingsGraphClient, DissociateEntityFromThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, DissociateEntityFromThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // DissociateEntityFromThingRequest
33
+ * thingName: "STRING_VALUE", // required
34
+ * entityType: "STRING_VALUE", // required
35
+ * };
32
36
  * const command = new DissociateEntityFromThingCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -59,6 +59,12 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
59
59
  * import { IoTThingsGraphClient, GetEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
60
60
  * // const { IoTThingsGraphClient, GetEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
61
61
  * const client = new IoTThingsGraphClient(config);
62
+ * const input = { // GetEntitiesRequest
63
+ * ids: [ // Urns // required
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * namespaceVersion: Number("long"),
67
+ * };
62
68
  * const command = new GetEntitiesCommand(input);
63
69
  * const response = await client.send(command);
64
70
  * ```
@@ -28,6 +28,10 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
28
28
  * import { IoTThingsGraphClient, GetFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // GetFlowTemplateRequest
32
+ * id: "STRING_VALUE", // required
33
+ * revisionNumber: Number("long"),
34
+ * };
31
35
  * const command = new GetFlowTemplateCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -29,6 +29,11 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
29
29
  * import { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // GetFlowTemplateRevisionsRequest
33
+ * id: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new GetFlowTemplateRevisionsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -28,6 +28,7 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel
28
28
  * import { IoTThingsGraphClient, GetNamespaceDeletionStatusCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetNamespaceDeletionStatusCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = {};
31
32
  * const command = new GetNamespaceDeletionStatusCommand(input);
32
33
  * const response = await client.send(command);
33
34
  * ```
@@ -28,6 +28,9 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
28
28
  * import { IoTThingsGraphClient, GetSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // GetSystemInstanceRequest
32
+ * id: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetSystemInstanceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,10 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
28
28
  * import { IoTThingsGraphClient, GetSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // GetSystemTemplateRequest
32
+ * id: "STRING_VALUE", // required
33
+ * revisionNumber: Number("long"),
34
+ * };
31
35
  * const command = new GetSystemTemplateCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -29,6 +29,11 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
29
29
  * import { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // GetSystemTemplateRevisionsRequest
33
+ * id: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new GetSystemTemplateRevisionsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -28,6 +28,9 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
28
28
  * import { IoTThingsGraphClient, GetUploadStatusCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetUploadStatusCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // GetUploadStatusRequest
32
+ * uploadId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetUploadStatusCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,11 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
28
28
  * import { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // ListFlowExecutionMessagesRequest
32
+ * flowExecutionId: "STRING_VALUE", // required
33
+ * nextToken: "STRING_VALUE",
34
+ * maxResults: Number("int"),
35
+ * };
31
36
  * const command = new ListFlowExecutionMessagesCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -28,6 +28,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
28
28
  * import { IoTThingsGraphClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // ListTagsForResourceRequest
32
+ * maxResults: Number("int"),
33
+ * resourceArn: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * };
31
36
  * const command = new ListTagsForResourceCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -28,6 +28,22 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
28
28
  * import { IoTThingsGraphClient, SearchEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // SearchEntitiesRequest
32
+ * entityTypes: [ // EntityTypes // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * filters: [ // EntityFilters
36
+ * { // EntityFilter
37
+ * name: "STRING_VALUE",
38
+ * value: [ // EntityFilterValues
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * },
42
+ * ],
43
+ * nextToken: "STRING_VALUE",
44
+ * maxResults: Number("int"),
45
+ * namespaceVersion: Number("long"),
46
+ * };
31
47
  * const command = new SearchEntitiesCommand(input);
32
48
  * const response = await client.send(command);
33
49
  * ```
@@ -28,6 +28,14 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
28
28
  * import { IoTThingsGraphClient, SearchFlowExecutionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchFlowExecutionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // SearchFlowExecutionsRequest
32
+ * systemInstanceId: "STRING_VALUE", // required
33
+ * flowExecutionId: "STRING_VALUE",
34
+ * startTime: new Date("TIMESTAMP"),
35
+ * endTime: new Date("TIMESTAMP"),
36
+ * nextToken: "STRING_VALUE",
37
+ * maxResults: Number("int"),
38
+ * };
31
39
  * const command = new SearchFlowExecutionsCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -28,6 +28,18 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
28
28
  * import { IoTThingsGraphClient, SearchFlowTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchFlowTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // SearchFlowTemplatesRequest
32
+ * filters: [ // FlowTemplateFilters
33
+ * { // FlowTemplateFilter
34
+ * name: "STRING_VALUE", // required
35
+ * value: [ // FlowTemplateFilterValues // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ],
40
+ * nextToken: "STRING_VALUE",
41
+ * maxResults: Number("int"),
42
+ * };
31
43
  * const command = new SearchFlowTemplatesCommand(input);
32
44
  * const response = await client.send(command);
33
45
  * ```
@@ -28,6 +28,18 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
28
28
  * import { IoTThingsGraphClient, SearchSystemInstancesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchSystemInstancesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // SearchSystemInstancesRequest
32
+ * filters: [ // SystemInstanceFilters
33
+ * { // SystemInstanceFilter
34
+ * name: "STRING_VALUE",
35
+ * value: [ // SystemInstanceFilterValues
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ],
40
+ * nextToken: "STRING_VALUE",
41
+ * maxResults: Number("int"),
42
+ * };
31
43
  * const command = new SearchSystemInstancesCommand(input);
32
44
  * const response = await client.send(command);
33
45
  * ```
@@ -28,6 +28,18 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
28
28
  * import { IoTThingsGraphClient, SearchSystemTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchSystemTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // SearchSystemTemplatesRequest
32
+ * filters: [ // SystemTemplateFilters
33
+ * { // SystemTemplateFilter
34
+ * name: "STRING_VALUE", // required
35
+ * value: [ // SystemTemplateFilterValues // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ],
40
+ * nextToken: "STRING_VALUE",
41
+ * maxResults: Number("int"),
42
+ * };
31
43
  * const command = new SearchSystemTemplatesCommand(input);
32
44
  * const response = await client.send(command);
33
45
  * ```
@@ -31,6 +31,12 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
31
31
  * import { IoTThingsGraphClient, SearchThingsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
32
32
  * // const { IoTThingsGraphClient, SearchThingsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
33
33
  * const client = new IoTThingsGraphClient(config);
34
+ * const input = { // SearchThingsRequest
35
+ * entityId: "STRING_VALUE", // required
36
+ * nextToken: "STRING_VALUE",
37
+ * maxResults: Number("int"),
38
+ * namespaceVersion: Number("long"),
39
+ * };
34
40
  * const command = new SearchThingsCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -28,6 +28,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
28
  * import { IoTThingsGraphClient, TagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, TagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // TagResourceRequest
32
+ * resourceArn: "STRING_VALUE", // required
33
+ * tags: [ // TagList // required
34
+ * { // Tag
35
+ * key: "STRING_VALUE", // required
36
+ * value: "STRING_VALUE", // required
37
+ * },
38
+ * ],
39
+ * };
31
40
  * const command = new TagResourceCommand(input);
32
41
  * const response = await client.send(command);
33
42
  * ```
@@ -28,6 +28,9 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
28
28
  * import { IoTThingsGraphClient, UndeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UndeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // UndeploySystemInstanceRequest
32
+ * id: "STRING_VALUE",
33
+ * };
31
34
  * const command = new UndeploySystemInstanceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
28
  * import { IoTThingsGraphClient, UntagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UntagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // UntagResourceRequest
32
+ * resourceArn: "STRING_VALUE", // required
33
+ * tagKeys: [ // TagKeyList // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
31
37
  * const command = new UntagResourceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -29,6 +29,14 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
29
29
  * import { IoTThingsGraphClient, UpdateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, UpdateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
+ * const input = { // UpdateFlowTemplateRequest
33
+ * id: "STRING_VALUE", // required
34
+ * definition: { // DefinitionDocument
35
+ * language: "STRING_VALUE", // required
36
+ * text: "STRING_VALUE", // required
37
+ * },
38
+ * compatibleNamespaceVersion: Number("long"),
39
+ * };
32
40
  * const command = new UpdateFlowTemplateCommand(input);
33
41
  * const response = await client.send(command);
34
42
  * ```
@@ -28,6 +28,14 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
28
28
  * import { IoTThingsGraphClient, UpdateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UpdateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
+ * const input = { // UpdateSystemTemplateRequest
32
+ * id: "STRING_VALUE", // required
33
+ * definition: { // DefinitionDocument
34
+ * language: "STRING_VALUE", // required
35
+ * text: "STRING_VALUE", // required
36
+ * },
37
+ * compatibleNamespaceVersion: Number("long"),
38
+ * };
31
39
  * const command = new UpdateSystemTemplateCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -38,6 +38,14 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
38
38
  * import { IoTThingsGraphClient, UploadEntityDefinitionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
39
39
  * // const { IoTThingsGraphClient, UploadEntityDefinitionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
40
40
  * const client = new IoTThingsGraphClient(config);
41
+ * const input = { // UploadEntityDefinitionsRequest
42
+ * document: { // DefinitionDocument
43
+ * language: "STRING_VALUE", // required
44
+ * text: "STRING_VALUE", // required
45
+ * },
46
+ * syncWithPublicNamespace: true || false,
47
+ * deprecateExistingEntities: true || false,
48
+ * };
41
49
  * const command = new UploadEntityDefinitionsCommand(input);
42
50
  * const response = await client.send(command);
43
51
  * ```
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.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },