@aws-sdk/client-iotthingsgraph 3.300.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 (34) hide show
  1. package/dist-types/commands/AssociateEntityToThingCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +5 -5
  4. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -2
  5. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +1 -1
  8. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +1 -1
  9. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +1 -1
  10. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
  12. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +1 -1
  13. package/dist-types/commands/GetEntitiesCommand.d.ts +2 -2
  14. package/dist-types/commands/GetFlowTemplateCommand.d.ts +1 -1
  15. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +1 -1
  16. package/dist-types/commands/GetSystemInstanceCommand.d.ts +1 -1
  17. package/dist-types/commands/GetSystemTemplateCommand.d.ts +1 -1
  18. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +1 -1
  19. package/dist-types/commands/GetUploadStatusCommand.d.ts +1 -1
  20. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/SearchEntitiesCommand.d.ts +5 -5
  23. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +1 -1
  24. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +4 -4
  25. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +4 -4
  26. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +4 -4
  27. package/dist-types/commands/SearchThingsCommand.d.ts +1 -1
  28. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  29. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +1 -1
  30. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  31. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -2
  33. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -2
  34. package/package.json +3 -3
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // AssociateEntityToThingRequest
33
33
  * thingName: "STRING_VALUE", // required
34
34
  * entityId: "STRING_VALUE", // required
35
35
  * namespaceVersion: Number("long"),
@@ -30,8 +30,8 @@ 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 = {
34
- * definition: {
33
+ * const input = { // CreateFlowTemplateRequest
34
+ * definition: { // DefinitionDocument
35
35
  * language: "STRING_VALUE", // required
36
36
  * text: "STRING_VALUE", // required
37
37
  * },
@@ -36,21 +36,21 @@ 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 = {
40
- * tags: [
41
- * {
39
+ * const input = { // CreateSystemInstanceRequest
40
+ * tags: [ // TagList
41
+ * { // Tag
42
42
  * key: "STRING_VALUE", // required
43
43
  * value: "STRING_VALUE", // required
44
44
  * },
45
45
  * ],
46
- * definition: {
46
+ * definition: { // DefinitionDocument
47
47
  * language: "STRING_VALUE", // required
48
48
  * text: "STRING_VALUE", // required
49
49
  * },
50
50
  * target: "STRING_VALUE", // required
51
51
  * greengrassGroupName: "STRING_VALUE",
52
52
  * s3BucketName: "STRING_VALUE",
53
- * metricsConfiguration: {
53
+ * metricsConfiguration: { // MetricsConfiguration
54
54
  * cloudMetricEnabled: true || false,
55
55
  * metricRuleRoleArn: "STRING_VALUE",
56
56
  * },
@@ -29,8 +29,8 @@ 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 = {
33
- * definition: {
32
+ * const input = { // CreateSystemTemplateRequest
33
+ * definition: { // DefinitionDocument
34
34
  * language: "STRING_VALUE", // required
35
35
  * text: "STRING_VALUE", // required
36
36
  * },
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // DeleteFlowTemplateRequest
33
33
  * id: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DeleteFlowTemplateCommand(input);
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // DeleteSystemInstanceRequest
34
34
  * id: "STRING_VALUE",
35
35
  * };
36
36
  * const command = new DeleteSystemInstanceCommand(input);
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // DeleteSystemTemplateRequest
33
33
  * id: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DeleteSystemTemplateCommand(input);
@@ -39,7 +39,7 @@ 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 = {
42
+ * const input = { // DeploySystemInstanceRequest
43
43
  * id: "STRING_VALUE",
44
44
  * };
45
45
  * const command = new DeploySystemInstanceCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DeprecateFlowTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeprecateFlowTemplateCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DeprecateSystemTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeprecateSystemTemplateCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DescribeNamespaceRequest
32
32
  * namespaceName: "STRING_VALUE",
33
33
  * };
34
34
  * const command = new DescribeNamespaceCommand(input);
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // DissociateEntityFromThingRequest
33
33
  * thingName: "STRING_VALUE", // required
34
34
  * entityType: "STRING_VALUE", // required
35
35
  * };
@@ -59,8 +59,8 @@ 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 = {
63
- * ids: [ // required
62
+ * const input = { // GetEntitiesRequest
63
+ * ids: [ // Urns // required
64
64
  * "STRING_VALUE",
65
65
  * ],
66
66
  * namespaceVersion: Number("long"),
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // GetFlowTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
33
  * revisionNumber: Number("long"),
34
34
  * };
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // GetFlowTemplateRevisionsRequest
33
33
  * id: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
35
35
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // GetSystemInstanceRequest
32
32
  * id: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetSystemInstanceCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // GetSystemTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
33
  * revisionNumber: Number("long"),
34
34
  * };
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // GetSystemTemplateRevisionsRequest
33
33
  * id: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
35
35
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // GetUploadStatusRequest
32
32
  * uploadId: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetUploadStatusCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // ListFlowExecutionMessagesRequest
32
32
  * flowExecutionId: "STRING_VALUE", // required
33
33
  * nextToken: "STRING_VALUE",
34
34
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // ListTagsForResourceRequest
32
32
  * maxResults: Number("int"),
33
33
  * resourceArn: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
@@ -28,14 +28,14 @@ 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 = {
32
- * entityTypes: [ // required
31
+ * const input = { // SearchEntitiesRequest
32
+ * entityTypes: [ // EntityTypes // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
- * filters: [
36
- * {
35
+ * filters: [ // EntityFilters
36
+ * { // EntityFilter
37
37
  * name: "STRING_VALUE",
38
- * value: [
38
+ * value: [ // EntityFilterValues
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // SearchFlowExecutionsRequest
32
32
  * systemInstanceId: "STRING_VALUE", // required
33
33
  * flowExecutionId: "STRING_VALUE",
34
34
  * startTime: new Date("TIMESTAMP"),
@@ -28,11 +28,11 @@ 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 = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchFlowTemplatesRequest
32
+ * filters: [ // FlowTemplateFilters
33
+ * { // FlowTemplateFilter
34
34
  * name: "STRING_VALUE", // required
35
- * value: [ // required
35
+ * value: [ // FlowTemplateFilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -28,11 +28,11 @@ 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 = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchSystemInstancesRequest
32
+ * filters: [ // SystemInstanceFilters
33
+ * { // SystemInstanceFilter
34
34
  * name: "STRING_VALUE",
35
- * value: [
35
+ * value: [ // SystemInstanceFilterValues
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -28,11 +28,11 @@ 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 = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchSystemTemplatesRequest
32
+ * filters: [ // SystemTemplateFilters
33
+ * { // SystemTemplateFilter
34
34
  * name: "STRING_VALUE", // required
35
- * value: [ // required
35
+ * value: [ // SystemTemplateFilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -31,7 +31,7 @@ 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 = {
34
+ * const input = { // SearchThingsRequest
35
35
  * entityId: "STRING_VALUE", // required
36
36
  * nextToken: "STRING_VALUE",
37
37
  * maxResults: Number("int"),
@@ -28,10 +28,10 @@ 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 = {
31
+ * const input = { // TagResourceRequest
32
32
  * resourceArn: "STRING_VALUE", // required
33
- * tags: [ // required
34
- * {
33
+ * tags: [ // TagList // required
34
+ * { // Tag
35
35
  * key: "STRING_VALUE", // required
36
36
  * value: "STRING_VALUE", // required
37
37
  * },
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // UndeploySystemInstanceRequest
32
32
  * id: "STRING_VALUE",
33
33
  * };
34
34
  * const command = new UndeploySystemInstanceCommand(input);
@@ -28,9 +28,9 @@ 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 = {
31
+ * const input = { // UntagResourceRequest
32
32
  * resourceArn: "STRING_VALUE", // required
33
- * tagKeys: [ // required
33
+ * tagKeys: [ // TagKeyList // required
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * };
@@ -29,9 +29,9 @@ 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 = {
32
+ * const input = { // UpdateFlowTemplateRequest
33
33
  * id: "STRING_VALUE", // required
34
- * definition: {
34
+ * definition: { // DefinitionDocument
35
35
  * language: "STRING_VALUE", // required
36
36
  * text: "STRING_VALUE", // required
37
37
  * },
@@ -28,9 +28,9 @@ 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 = {
31
+ * const input = { // UpdateSystemTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
- * definition: {
33
+ * definition: { // DefinitionDocument
34
34
  * language: "STRING_VALUE", // required
35
35
  * text: "STRING_VALUE", // required
36
36
  * },
@@ -38,8 +38,8 @@ 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 = {
42
- * document: {
41
+ * const input = { // UploadEntityDefinitionsRequest
42
+ * document: { // DefinitionDocument
43
43
  * language: "STRING_VALUE", // required
44
44
  * text: "STRING_VALUE", // required
45
45
  * },
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.300.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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "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",