@aws-sdk/client-iottwinmaker 3.296.0 → 3.297.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 (57) hide show
  1. package/README.md +7 -5
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/protocols/Aws_restJson1.js +39 -0
  4. package/dist-es/endpoint/ruleset.js +3 -3
  5. package/dist-es/protocols/Aws_restJson1.js +39 -0
  6. package/dist-types/IoTTwinMaker.d.ts +51 -10
  7. package/dist-types/IoTTwinMakerClient.d.ts +31 -9
  8. package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateComponentTypeCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateEntityCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateSceneCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateSyncJobCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateWorkspaceCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteComponentTypeCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteEntityCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteSceneCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteSyncJobCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +16 -0
  19. package/dist-types/commands/ExecuteQueryCommand.d.ts +18 -1
  20. package/dist-types/commands/GetComponentTypeCommand.d.ts +16 -0
  21. package/dist-types/commands/GetEntityCommand.d.ts +16 -0
  22. package/dist-types/commands/GetPricingPlanCommand.d.ts +16 -0
  23. package/dist-types/commands/GetPropertyValueCommand.d.ts +18 -1
  24. package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +21 -3
  25. package/dist-types/commands/GetSceneCommand.d.ts +16 -0
  26. package/dist-types/commands/GetSyncJobCommand.d.ts +16 -0
  27. package/dist-types/commands/GetWorkspaceCommand.d.ts +16 -0
  28. package/dist-types/commands/ListComponentTypesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListEntitiesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListScenesCommand.d.ts +16 -0
  31. package/dist-types/commands/ListSyncJobsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListSyncResourcesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/ListWorkspacesCommand.d.ts +16 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateComponentTypeCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateEntityCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateSceneCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateWorkspaceCommand.d.ts +16 -0
  42. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  43. package/dist-types/models/IoTTwinMakerServiceException.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +463 -82
  45. package/dist-types/pagination/ExecuteQueryPaginator.d.ts +3 -0
  46. package/dist-types/pagination/GetPropertyValueHistoryPaginator.d.ts +3 -0
  47. package/dist-types/pagination/GetPropertyValuePaginator.d.ts +3 -0
  48. package/dist-types/pagination/Interfaces.d.ts +3 -0
  49. package/dist-types/pagination/ListComponentTypesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListEntitiesPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListScenesPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListSyncJobsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListSyncResourcesPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListWorkspacesPaginator.d.ts +3 -0
  55. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  56. package/dist-types/ts3.4/models/models_0.d.ts +4 -0
  57. package/package.json +3 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateExecuteQuery(config: IoTTwinMakerPaginationConfiguration, input: ExecuteQueryCommandInput, ...additionalArguments: any): Paginator<ExecuteQueryCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetPropertyValueHistory(config: IoTTwinMakerPaginationConfiguration, input: GetPropertyValueHistoryCommandInput, ...additionalArguments: any): Paginator<GetPropertyValueHistoryCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetPropertyValue(config: IoTTwinMakerPaginationConfiguration, input: GetPropertyValueCommandInput, ...additionalArguments: any): Paginator<GetPropertyValueCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { IoTTwinMakerClient } from "../IoTTwinMakerClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface IoTTwinMakerPaginationConfiguration extends PaginationConfiguration {
4
7
  client: IoTTwinMakerClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "../commands/ListComponentTypesCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListComponentTypes(config: IoTTwinMakerPaginationConfiguration, input: ListComponentTypesCommandInput, ...additionalArguments: any): Paginator<ListComponentTypesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "../commands/ListEntitiesCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEntities(config: IoTTwinMakerPaginationConfiguration, input: ListEntitiesCommandInput, ...additionalArguments: any): Paginator<ListEntitiesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListScenes(config: IoTTwinMakerPaginationConfiguration, input: ListScenesCommandInput, ...additionalArguments: any): Paginator<ListScenesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "../commands/ListSyncJobsCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSyncJobs(config: IoTTwinMakerPaginationConfiguration, input: ListSyncJobsCommandInput, ...additionalArguments: any): Paginator<ListSyncJobsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "../commands/ListSyncResourcesCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSyncResources(config: IoTTwinMakerPaginationConfiguration, input: ListSyncResourcesCommandInput, ...additionalArguments: any): Paginator<ListSyncResourcesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
3
3
  import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListWorkspaces(config: IoTTwinMakerPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
26
26
  defaultSigningName: string;
27
27
  };
28
28
  export interface EndpointParameters extends __EndpointParameters {
29
- Region: string;
29
+ Region?: string;
30
30
  UseDualStack?: boolean;
31
31
  UseFIPS?: boolean;
32
32
  Endpoint?: string;
@@ -135,6 +135,7 @@ export interface CreateSceneRequest {
135
135
  description?: string;
136
136
  capabilities?: string[];
137
137
  tags?: Record<string, string>;
138
+ sceneMetadata?: Record<string, string>;
138
139
  }
139
140
  export interface CreateSceneResponse {
140
141
  arn: string | undefined;
@@ -351,6 +352,8 @@ export interface GetSceneResponse {
351
352
  updateDateTime: Date | undefined;
352
353
  description?: string;
353
354
  capabilities?: string[];
355
+ sceneMetadata?: Record<string, string>;
356
+ generatedSceneMetadata?: Record<string, string>;
354
357
  }
355
358
  export interface GetSyncJobRequest {
356
359
  syncSource: string | undefined;
@@ -695,6 +698,7 @@ export interface UpdateSceneRequest {
695
698
  contentLocation?: string;
696
699
  description?: string;
697
700
  capabilities?: string[];
701
+ sceneMetadata?: Record<string, string>;
698
702
  }
699
703
  export interface UpdateSceneResponse {
700
704
  updateDateTime: Date | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",