aws-sdk-iottwinmaker 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6b1c5055dec8695aea07f71ab3ad8678d833fe2fc25b4b7eb9b07b43c1248db
4
- data.tar.gz: c0b92e3d4125e525223a2aeee59a7586cbf4c89ac37ac280f532244a8866da09
3
+ metadata.gz: 4c4f6298dea0eea0185b56ae761eba7b5ed01600e6c02267a6d9f051a8542f74
4
+ data.tar.gz: b1cadc2f8821cf3ea58a8db6dada8388b9e9e6b9caaaf84f4bf17883692931fa
5
5
  SHA512:
6
- metadata.gz: b0d0b0b6777e54b936ad27d361504ad388084cbfac44c11408203153100f66070ed78d6f02e5d156800fd45f7e183af6d8634e133ab5827de3f7227a83fbd23e
7
- data.tar.gz: 4f0358612da3e63039fe45acfb25834e11df4e7f9feee0b2bb5784ab0c61ecf568f7da3164b8c292777acff0a8e037421e8b9499c5b8536536db8bafdbc55ee6
6
+ metadata.gz: 341f52000f03b0d75c040901d240541d7d11061e261e7eebcac8707aa64d5dc52d1057d96bd620a9d627c641abc6b26ca28be9dafd80383f073d2accfdd79836
7
+ data.tar.gz: b8e4e75e0e29d00d00cc9c7aa2129ca07ec70b1c1865baae7cb53f812aadf192c446644e18f74add77160c9e230c2630f800dba24bb7109feda0326b10a06c61
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2023-03-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds support of adding metadata when creating a new scene or updating an existing scene.
8
+
4
9
  1.9.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -798,6 +798,9 @@ module Aws::IoTTwinMaker
798
798
  # @option params [Hash<String,String>] :tags
799
799
  # Metadata that you can use to manage the scene.
800
800
  #
801
+ # @option params [Hash<String,String>] :scene_metadata
802
+ # The request metadata.
803
+ #
801
804
  # @return [Types::CreateSceneResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
802
805
  #
803
806
  # * {Types::CreateSceneResponse#arn #arn} => String
@@ -814,6 +817,9 @@ module Aws::IoTTwinMaker
814
817
  # tags: {
815
818
  # "TagKey" => "TagValue",
816
819
  # },
820
+ # scene_metadata: {
821
+ # "Name" => "SceneMetadataValue",
822
+ # },
817
823
  # })
818
824
  #
819
825
  # @example Response structure
@@ -831,18 +837,18 @@ module Aws::IoTTwinMaker
831
837
  # This action creates a SyncJob.
832
838
  #
833
839
  # @option params [required, String] :workspace_id
834
- # The workspace Id.
840
+ # The workspace ID.
835
841
  #
836
842
  # @option params [required, String] :sync_source
837
843
  # The sync source.
838
844
  #
839
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
845
+ # <note markdown="1"> Currently the only supported syncSoource is `SITEWISE `.
840
846
  #
841
847
  # </note>
842
848
  #
843
849
  # @option params [required, String] :sync_role
844
- # The SyncJob IAM role. This IAM role is used by the sync job to read
845
- # from the syncSource, and create, update or delete the corresponding
850
+ # The SyncJob IAM role. This IAM role is used by the SyncJob to read
851
+ # from the syncSource, and create, update, or delete the corresponding
846
852
  # resources.
847
853
  #
848
854
  # @option params [Hash<String,String>] :tags
@@ -1017,12 +1023,12 @@ module Aws::IoTTwinMaker
1017
1023
  # Delete the SyncJob.
1018
1024
  #
1019
1025
  # @option params [required, String] :workspace_id
1020
- # The workspace Id.
1026
+ # The workspace ID.
1021
1027
  #
1022
1028
  # @option params [required, String] :sync_source
1023
1029
  # The sync source.
1024
1030
  #
1025
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1031
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
1026
1032
  #
1027
1033
  # </note>
1028
1034
  #
@@ -1694,6 +1700,8 @@ module Aws::IoTTwinMaker
1694
1700
  # * {Types::GetSceneResponse#update_date_time #update_date_time} => Time
1695
1701
  # * {Types::GetSceneResponse#description #description} => String
1696
1702
  # * {Types::GetSceneResponse#capabilities #capabilities} => Array&lt;String&gt;
1703
+ # * {Types::GetSceneResponse#scene_metadata #scene_metadata} => Hash&lt;String,String&gt;
1704
+ # * {Types::GetSceneResponse#generated_scene_metadata #generated_scene_metadata} => Hash&lt;String,String&gt;
1697
1705
  #
1698
1706
  # @example Request syntax with placeholder values
1699
1707
  #
@@ -1713,6 +1721,10 @@ module Aws::IoTTwinMaker
1713
1721
  # resp.description #=> String
1714
1722
  # resp.capabilities #=> Array
1715
1723
  # resp.capabilities[0] #=> String
1724
+ # resp.scene_metadata #=> Hash
1725
+ # resp.scene_metadata["Name"] #=> String
1726
+ # resp.generated_scene_metadata #=> Hash
1727
+ # resp.generated_scene_metadata["Name"] #=> String
1716
1728
  #
1717
1729
  # @overload get_scene(params = {})
1718
1730
  # @param [Hash] params ({})
@@ -1724,14 +1736,14 @@ module Aws::IoTTwinMaker
1724
1736
  # Gets the SyncJob.
1725
1737
  #
1726
1738
  # @option params [required, String] :sync_source
1727
- # The sync soucre.
1739
+ # The sync source.
1728
1740
  #
1729
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1741
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
1730
1742
  #
1731
1743
  # </note>
1732
1744
  #
1733
1745
  # @option params [String] :workspace_id
1734
- # The workspace Id.
1746
+ # The workspace ID.
1735
1747
  #
1736
1748
  # @return [Types::GetSyncJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1737
1749
  #
@@ -2036,15 +2048,23 @@ module Aws::IoTTwinMaker
2036
2048
  # The ID of the workspace that contains the sync job.
2037
2049
  #
2038
2050
  # @option params [required, String] :sync_source
2039
- # The sync soucre.
2051
+ # The sync source.
2040
2052
  #
2041
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
2053
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
2042
2054
  #
2043
2055
  # </note>
2044
2056
  #
2045
2057
  # @option params [Array<Types::SyncResourceFilter>] :filters
2046
2058
  # A list of objects that filter the request.
2047
2059
  #
2060
+ # The following filter combinations are supported:
2061
+ #
2062
+ # * Filter with state
2063
+ #
2064
+ # * Filter with ResourceType and ResourceId
2065
+ #
2066
+ # * Filter with ResourceType and ExternalId
2067
+ #
2048
2068
  # @option params [Integer] :max_results
2049
2069
  # The maximum number of results to return at one time. The default is
2050
2070
  # 50.
@@ -2258,7 +2278,7 @@ module Aws::IoTTwinMaker
2258
2278
  # Each string in the mapping must be unique to this object.
2259
2279
  #
2260
2280
  # @option params [Hash<String,Types::PropertyGroupRequest>] :property_groups
2261
- # The property groups
2281
+ # The property groups.
2262
2282
  #
2263
2283
  # @option params [String] :component_type_name
2264
2284
  # The component type name.
@@ -2601,6 +2621,9 @@ module Aws::IoTTwinMaker
2601
2621
  # @option params [Array<String>] :capabilities
2602
2622
  # A list of capabilities that the scene uses to render.
2603
2623
  #
2624
+ # @option params [Hash<String,String>] :scene_metadata
2625
+ # The scene metadata.
2626
+ #
2604
2627
  # @return [Types::UpdateSceneResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2605
2628
  #
2606
2629
  # * {Types::UpdateSceneResponse#update_date_time #update_date_time} => Time
@@ -2613,6 +2636,9 @@ module Aws::IoTTwinMaker
2613
2636
  # content_location: "S3Url",
2614
2637
  # description: "Description",
2615
2638
  # capabilities: ["SceneCapability"],
2639
+ # scene_metadata: {
2640
+ # "Name" => "SceneMetadataValue",
2641
+ # },
2616
2642
  # })
2617
2643
  #
2618
2644
  # @example Response structure
@@ -2673,7 +2699,7 @@ module Aws::IoTTwinMaker
2673
2699
  params: params,
2674
2700
  config: config)
2675
2701
  context[:gem_name] = 'aws-sdk-iottwinmaker'
2676
- context[:gem_version] = '1.9.0'
2702
+ context[:gem_version] = '1.10.0'
2677
2703
  Seahorse::Client::Request.new(handlers, context)
2678
2704
  end
2679
2705
 
@@ -92,6 +92,7 @@ module Aws::IoTTwinMaker
92
92
  FunctionResponse = Shapes::StructureShape.new(name: 'FunctionResponse')
93
93
  FunctionsRequest = Shapes::MapShape.new(name: 'FunctionsRequest')
94
94
  FunctionsResponse = Shapes::MapShape.new(name: 'FunctionsResponse')
95
+ GeneratedSceneMetadataMap = Shapes::MapShape.new(name: 'GeneratedSceneMetadataMap')
95
96
  GetComponentTypeRequest = Shapes::StructureShape.new(name: 'GetComponentTypeRequest')
96
97
  GetComponentTypeResponse = Shapes::StructureShape.new(name: 'GetComponentTypeResponse')
97
98
  GetEntityRequest = Shapes::StructureShape.new(name: 'GetEntityRequest')
@@ -193,6 +194,8 @@ module Aws::IoTTwinMaker
193
194
  S3Url = Shapes::StringShape.new(name: 'S3Url')
194
195
  SceneCapabilities = Shapes::ListShape.new(name: 'SceneCapabilities')
195
196
  SceneCapability = Shapes::StringShape.new(name: 'SceneCapability')
197
+ SceneMetadataMap = Shapes::MapShape.new(name: 'SceneMetadataMap')
198
+ SceneMetadataValue = Shapes::StringShape.new(name: 'SceneMetadataValue')
196
199
  SceneSummaries = Shapes::ListShape.new(name: 'SceneSummaries')
197
200
  SceneSummary = Shapes::StructureShape.new(name: 'SceneSummary')
198
201
  Scope = Shapes::StringShape.new(name: 'Scope')
@@ -384,6 +387,7 @@ module Aws::IoTTwinMaker
384
387
  CreateSceneRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
385
388
  CreateSceneRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: SceneCapabilities, location_name: "capabilities"))
386
389
  CreateSceneRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
390
+ CreateSceneRequest.add_member(:scene_metadata, Shapes::ShapeRef.new(shape: SceneMetadataMap, location_name: "sceneMetadata"))
387
391
  CreateSceneRequest.struct_class = Types::CreateSceneRequest
388
392
 
389
393
  CreateSceneResponse.add_member(:arn, Shapes::ShapeRef.new(shape: TwinMakerArn, required: true, location_name: "arn"))
@@ -534,6 +538,9 @@ module Aws::IoTTwinMaker
534
538
  FunctionsResponse.key = Shapes::ShapeRef.new(shape: Name)
535
539
  FunctionsResponse.value = Shapes::ShapeRef.new(shape: FunctionResponse)
536
540
 
541
+ GeneratedSceneMetadataMap.key = Shapes::ShapeRef.new(shape: Name)
542
+ GeneratedSceneMetadataMap.value = Shapes::ShapeRef.new(shape: SceneMetadataValue)
543
+
537
544
  GetComponentTypeRequest.add_member(:workspace_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "workspaceId"))
538
545
  GetComponentTypeRequest.add_member(:component_type_id, Shapes::ShapeRef.new(shape: ComponentTypeId, required: true, location: "uri", location_name: "componentTypeId"))
539
546
  GetComponentTypeRequest.struct_class = Types::GetComponentTypeRequest
@@ -628,6 +635,8 @@ module Aws::IoTTwinMaker
628
635
  GetSceneResponse.add_member(:update_date_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateDateTime"))
629
636
  GetSceneResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
630
637
  GetSceneResponse.add_member(:capabilities, Shapes::ShapeRef.new(shape: SceneCapabilities, location_name: "capabilities"))
638
+ GetSceneResponse.add_member(:scene_metadata, Shapes::ShapeRef.new(shape: SceneMetadataMap, location_name: "sceneMetadata"))
639
+ GetSceneResponse.add_member(:generated_scene_metadata, Shapes::ShapeRef.new(shape: GeneratedSceneMetadataMap, location_name: "generatedSceneMetadata"))
631
640
  GetSceneResponse.struct_class = Types::GetSceneResponse
632
641
 
633
642
  GetSyncJobRequest.add_member(:sync_source, Shapes::ShapeRef.new(shape: SyncSource, required: true, location: "uri", location_name: "syncSource"))
@@ -897,6 +906,9 @@ module Aws::IoTTwinMaker
897
906
 
898
907
  SceneCapabilities.member = Shapes::ShapeRef.new(shape: SceneCapability)
899
908
 
909
+ SceneMetadataMap.key = Shapes::ShapeRef.new(shape: Name)
910
+ SceneMetadataMap.value = Shapes::ShapeRef.new(shape: SceneMetadataValue)
911
+
900
912
  SceneSummaries.member = Shapes::ShapeRef.new(shape: SceneSummary)
901
913
 
902
914
  SceneSummary.add_member(:scene_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "sceneId"))
@@ -1030,6 +1042,7 @@ module Aws::IoTTwinMaker
1030
1042
  UpdateSceneRequest.add_member(:content_location, Shapes::ShapeRef.new(shape: S3Url, location_name: "contentLocation"))
1031
1043
  UpdateSceneRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1032
1044
  UpdateSceneRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: SceneCapabilities, location_name: "capabilities"))
1045
+ UpdateSceneRequest.add_member(:scene_metadata, Shapes::ShapeRef.new(shape: SceneMetadataMap, location_name: "sceneMetadata"))
1033
1046
  UpdateSceneRequest.struct_class = Types::UpdateSceneRequest
1034
1047
 
1035
1048
  UpdateSceneResponse.add_member(:update_date_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateDateTime"))
@@ -50,9 +50,6 @@ module Aws::IoTTwinMaker
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,36 +14,39 @@ module Aws::IoTTwinMaker
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint)
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://iottwinmaker.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -84,7 +84,7 @@ module Aws::IoTTwinMaker
84
84
  include Aws::Structure
85
85
  end
86
86
 
87
- # Information about pricing bundle.
87
+ # Information about the pricing bundle.
88
88
  #
89
89
  # @!attribute [rw] bundle_names
90
90
  # The bundle names.
@@ -118,6 +118,8 @@ module Aws::IoTTwinMaker
118
118
  include Aws::Structure
119
119
  end
120
120
 
121
+ # The component property group request.
122
+ #
121
123
  # @!attribute [rw] group_type
122
124
  # The group type.
123
125
  # @return [String]
@@ -520,13 +522,18 @@ module Aws::IoTTwinMaker
520
522
  # Metadata that you can use to manage the scene.
521
523
  # @return [Hash<String,String>]
522
524
  #
525
+ # @!attribute [rw] scene_metadata
526
+ # The request metadata.
527
+ # @return [Hash<String,String>]
528
+ #
523
529
  class CreateSceneRequest < Struct.new(
524
530
  :workspace_id,
525
531
  :scene_id,
526
532
  :content_location,
527
533
  :description,
528
534
  :capabilities,
529
- :tags)
535
+ :tags,
536
+ :scene_metadata)
530
537
  SENSITIVE = []
531
538
  include Aws::Structure
532
539
  end
@@ -547,20 +554,20 @@ module Aws::IoTTwinMaker
547
554
  end
548
555
 
549
556
  # @!attribute [rw] workspace_id
550
- # The workspace Id.
557
+ # The workspace ID.
551
558
  # @return [String]
552
559
  #
553
560
  # @!attribute [rw] sync_source
554
561
  # The sync source.
555
562
  #
556
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
563
+ # <note markdown="1"> Currently the only supported syncSoource is `SITEWISE `.
557
564
  #
558
565
  # </note>
559
566
  # @return [String]
560
567
  #
561
568
  # @!attribute [rw] sync_role
562
- # The SyncJob IAM role. This IAM role is used by the sync job to read
563
- # from the syncSource, and create, update or delete the corresponding
569
+ # The SyncJob IAM role. This IAM role is used by the SyncJob to read
570
+ # from the syncSource, and create, update, or delete the corresponding
564
571
  # resources.
565
572
  # @return [String]
566
573
  #
@@ -819,13 +826,13 @@ module Aws::IoTTwinMaker
819
826
  class DeleteSceneResponse < Aws::EmptyStructure; end
820
827
 
821
828
  # @!attribute [rw] workspace_id
822
- # The workspace Id.
829
+ # The workspace ID.
823
830
  # @return [String]
824
831
  #
825
832
  # @!attribute [rw] sync_source
826
833
  # The sync source.
827
834
  #
828
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
835
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
829
836
  #
830
837
  # </note>
831
838
  # @return [String]
@@ -1136,8 +1143,8 @@ module Aws::IoTTwinMaker
1136
1143
  # @return [Hash<String,Types::PropertyGroupResponse>]
1137
1144
  #
1138
1145
  # @!attribute [rw] sync_source
1139
- # The syncSource of the sync job, if this entity was created by a sync
1140
- # job.
1146
+ # The syncSource of the SyncJob, if this entity was created by a
1147
+ # SyncJob.
1141
1148
  # @return [String]
1142
1149
  #
1143
1150
  # @!attribute [rw] component_type_name
@@ -1502,6 +1509,14 @@ module Aws::IoTTwinMaker
1502
1509
  # A list of capabilities that the scene uses to render.
1503
1510
  # @return [Array<String>]
1504
1511
  #
1512
+ # @!attribute [rw] scene_metadata
1513
+ # The response metadata.
1514
+ # @return [Hash<String,String>]
1515
+ #
1516
+ # @!attribute [rw] generated_scene_metadata
1517
+ # The generated scene metadata.
1518
+ # @return [Hash<String,String>]
1519
+ #
1505
1520
  class GetSceneResponse < Struct.new(
1506
1521
  :workspace_id,
1507
1522
  :scene_id,
@@ -1510,21 +1525,23 @@ module Aws::IoTTwinMaker
1510
1525
  :creation_date_time,
1511
1526
  :update_date_time,
1512
1527
  :description,
1513
- :capabilities)
1528
+ :capabilities,
1529
+ :scene_metadata,
1530
+ :generated_scene_metadata)
1514
1531
  SENSITIVE = []
1515
1532
  include Aws::Structure
1516
1533
  end
1517
1534
 
1518
1535
  # @!attribute [rw] sync_source
1519
- # The sync soucre.
1536
+ # The sync source.
1520
1537
  #
1521
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1538
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
1522
1539
  #
1523
1540
  # </note>
1524
1541
  # @return [String]
1525
1542
  #
1526
1543
  # @!attribute [rw] workspace_id
1527
- # The workspace Id.
1544
+ # The workspace ID.
1528
1545
  # @return [String]
1529
1546
  #
1530
1547
  class GetSyncJobRequest < Struct.new(
@@ -1545,7 +1562,7 @@ module Aws::IoTTwinMaker
1545
1562
  # @!attribute [rw] sync_source
1546
1563
  # The sync soucre.
1547
1564
  #
1548
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1565
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
1549
1566
  #
1550
1567
  # </note>
1551
1568
  # @return [String]
@@ -1916,15 +1933,23 @@ module Aws::IoTTwinMaker
1916
1933
  # @return [String]
1917
1934
  #
1918
1935
  # @!attribute [rw] sync_source
1919
- # The sync soucre.
1936
+ # The sync source.
1920
1937
  #
1921
- # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1938
+ # <note markdown="1"> Currently the only supported syncSource is `SITEWISE `.
1922
1939
  #
1923
1940
  # </note>
1924
1941
  # @return [String]
1925
1942
  #
1926
1943
  # @!attribute [rw] filters
1927
1944
  # A list of objects that filter the request.
1945
+ #
1946
+ # The following filter combinations are supported:
1947
+ #
1948
+ # * Filter with state
1949
+ #
1950
+ # * Filter with ResourceType and ResourceId
1951
+ #
1952
+ # * Filter with ResourceType and ExternalId
1928
1953
  # @return [Array<Types::SyncResourceFilter>]
1929
1954
  #
1930
1955
  # @!attribute [rw] max_results
@@ -2092,7 +2117,7 @@ module Aws::IoTTwinMaker
2092
2117
  # @return [Time]
2093
2118
  #
2094
2119
  # @!attribute [rw] update_reason
2095
- # The update reason, for changing a pricing plan.
2120
+ # The update reason for changing a pricing plan.
2096
2121
  # @return [String]
2097
2122
  #
2098
2123
  class PricingPlan < Struct.new(
@@ -2292,7 +2317,7 @@ module Aws::IoTTwinMaker
2292
2317
  # The latest value of the property.
2293
2318
  #
2294
2319
  # @!attribute [rw] property_reference
2295
- # An object that specifies information about a property.&gt;
2320
+ # An object that specifies information about a property.
2296
2321
  # @return [Types::EntityPropertyReference]
2297
2322
  #
2298
2323
  # @!attribute [rw] property_value
@@ -2362,27 +2387,27 @@ module Aws::IoTTwinMaker
2362
2387
  # The time for when the property value was recorded in ISO 8601
2363
2388
  # format: *YYYY-MM-DDThh:mm:ss\[.SSSSSSSSS\]\[Z/±HH:mm\]*.
2364
2389
  #
2365
- # * *\[YYYY\]*\: year
2390
+ # * *\[YYYY\]*: year
2366
2391
  #
2367
- # * *\[MM\]*\: month
2392
+ # * *\[MM\]*: month
2368
2393
  #
2369
- # * *\[DD\]*\: day
2394
+ # * *\[DD\]*: day
2370
2395
  #
2371
- # * *\[hh\]*\: hour
2396
+ # * *\[hh\]*: hour
2372
2397
  #
2373
- # * *\[mm\]*\: minute
2398
+ # * *\[mm\]*: minute
2374
2399
  #
2375
- # * *\[ss\]*\: seconds
2400
+ # * *\[ss\]*: seconds
2376
2401
  #
2377
- # * *\[.SSSSSSSSS\]*\: additional precision, where precedence is
2402
+ # * *\[.SSSSSSSSS\]*: additional precision, where precedence is
2378
2403
  # maintained. For example: \[.573123\] is equal to 573123000
2379
2404
  # nanoseconds.
2380
2405
  #
2381
- # * *Z*\: default timezone UTC
2406
+ # * *Z*: default timezone UTC
2382
2407
  #
2383
- # * *± HH:mm*\: time zone offset in Hours and Minutes.
2408
+ # * *± HH:mm*: time zone offset in Hours and Minutes.
2384
2409
  #
2385
- # *Required sub-fields*\: YYYY-MM-DDThh:mm:ss and \[Z/±HH:mm\]
2410
+ # *Required sub-fields*: YYYY-MM-DDThh:mm:ss and \[Z/±HH:mm\]
2386
2411
  # @return [String]
2387
2412
  #
2388
2413
  class PropertyValue < Struct.new(
@@ -2636,15 +2661,15 @@ module Aws::IoTTwinMaker
2636
2661
  # @return [String]
2637
2662
  #
2638
2663
  # @!attribute [rw] resource_type
2639
- # The sync resource filter resoucre type
2664
+ # The sync resource filter resource type
2640
2665
  # @return [String]
2641
2666
  #
2642
2667
  # @!attribute [rw] resource_id
2643
- # The sync resource filter resource Id.
2668
+ # The sync resource filter resource ID.
2644
2669
  # @return [String]
2645
2670
  #
2646
2671
  # @!attribute [rw] external_id
2647
- # The external Id.
2672
+ # The external ID.
2648
2673
  # @return [String]
2649
2674
  #
2650
2675
  class SyncResourceFilter < Struct.new(
@@ -2688,11 +2713,11 @@ module Aws::IoTTwinMaker
2688
2713
  # @return [String]
2689
2714
  #
2690
2715
  # @!attribute [rw] external_id
2691
- # The external Id.
2716
+ # The external ID.
2692
2717
  # @return [String]
2693
2718
  #
2694
2719
  # @!attribute [rw] resource_id
2695
- # The resource Id.
2720
+ # The resource ID.
2696
2721
  # @return [String]
2697
2722
  #
2698
2723
  # @!attribute [rw] status
@@ -2825,7 +2850,7 @@ module Aws::IoTTwinMaker
2825
2850
  # @return [Hash<String,Types::FunctionRequest>]
2826
2851
  #
2827
2852
  # @!attribute [rw] property_groups
2828
- # The property groups
2853
+ # The property groups.
2829
2854
  # @return [Hash<String,Types::PropertyGroupRequest>]
2830
2855
  #
2831
2856
  # @!attribute [rw] component_type_name
@@ -2973,12 +2998,17 @@ module Aws::IoTTwinMaker
2973
2998
  # A list of capabilities that the scene uses to render.
2974
2999
  # @return [Array<String>]
2975
3000
  #
3001
+ # @!attribute [rw] scene_metadata
3002
+ # The scene metadata.
3003
+ # @return [Hash<String,String>]
3004
+ #
2976
3005
  class UpdateSceneRequest < Struct.new(
2977
3006
  :workspace_id,
2978
3007
  :scene_id,
2979
3008
  :content_location,
2980
3009
  :description,
2981
- :capabilities)
3010
+ :capabilities,
3011
+ :scene_metadata)
2982
3012
  SENSITIVE = []
2983
3013
  include Aws::Structure
2984
3014
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iottwinmaker/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTTwinMaker
55
55
 
56
- GEM_VERSION = '1.9.0'
56
+ GEM_VERSION = '1.10.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iottwinmaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core