aws-sdk-iotsitewise 1.83.0 → 1.85.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b96be05e85cade8dc44f4e77be13cf4158e093501becda09cb9b0671f29d2d3
4
- data.tar.gz: f1e4ca934a6dd25f668407334dd45bff4a06b682a3ea4ed9e1e53eefdaf61d9d
3
+ metadata.gz: 4f5d060e742e5afac3b3b230fc0ac02dff695d3f94821db8421f0e3174b8dfac
4
+ data.tar.gz: 240f13dfd19be51562064ab7fc6c044d6ecaa98a8ada49326df2ade473d12856
5
5
  SHA512:
6
- metadata.gz: 9e2281f7d0e3b195e9ee5d38868f5cea5928d1275808206b0b62b25b7f30cd1a6eb2137dbde7741020e4d920a5308c0fd93724d2949bd92cc8cce9f427146e1e
7
- data.tar.gz: adf11fc07ac987eff94add8754b868e3bd8d63f2e7f51ca76c0380ecaec0ac62804f8e9ae1df0f6ae6dc46eedf120e2567ad729a732e0ef97372f0871c542d69
6
+ metadata.gz: 004441bdd62ab1febaa4cafaa7a74f8327fd059e63d3c2c4d69c211f78e3bd59e3d560db812cd218cb93ef3d532b27571150c8b4cde3207ba5aff699d4645c97
7
+ data.tar.gz: 2462b409bc7782703a67d35efc0bdc7af188b97ed3278f3d392ebf67a51891ba34838c7725f20eb522252faaf6a169de126360ca092c0face8efc2ec7c0a42cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2025-05-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.84.0 (2025-04-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.83.0 (2025-03-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
1
+ 1.85.0
@@ -4675,158 +4675,164 @@ module Aws::IoTSiteWise
4675
4675
  #
4676
4676
  # @example EventStream Operation Example
4677
4677
  #
4678
- # You can process the event once it arrives immediately, or wait until the
4679
- # full response is complete and iterate through the eventstream enumerator.
4680
- #
4681
- # To interact with event immediately, you need to register #invoke_assistant
4682
- # with callbacks. Callbacks can be registered for specific events or for all
4683
- # events, including error events.
4684
- #
4685
- # Callbacks can be passed into the `:event_stream_handler` option or within a
4686
- # block statement attached to the #invoke_assistant call directly. Hybrid
4687
- # pattern of both is also supported.
4688
- #
4689
- # `:event_stream_handler` option takes in either a Proc object or
4690
- # Aws::IoTSiteWise::EventStreams::ResponseStream object.
4691
- #
4692
- # Usage pattern a): Callbacks with a block attached to #invoke_assistant
4693
- # Example for registering callbacks for all event types and an error event
4694
- #
4695
- # client.invoke_assistant( # params input# ) do |stream|
4696
- # stream.on_error_event do |event|
4697
- # # catch unmodeled error event in the stream
4698
- # raise event
4699
- # # => Aws::Errors::EventError
4700
- # # event.event_type => :error
4701
- # # event.error_code => String
4702
- # # event.error_message => String
4703
- # end
4704
- #
4705
- # stream.on_event do |event|
4706
- # # process all events arrive
4707
- # puts event.event_type
4708
- # ...
4709
- # end
4710
- #
4678
+ # # You can process the event once it arrives immediately, or wait until the
4679
+ # # full response is complete and iterate through the eventstream enumerator.
4680
+ #
4681
+ # # To interact with event immediately, you need to register invoke_assistant
4682
+ # # with callbacks. Callbacks can be registered for specific events or for all
4683
+ # # events, including error events.
4684
+ #
4685
+ # # Callbacks can be passed into the `:event_stream_handler` option or within a
4686
+ # # block statement attached to the #invoke_assistant call directly. Hybrid
4687
+ # # pattern of both is also supported.
4688
+ #
4689
+ # # `:event_stream_handler` option takes in either a Proc object or
4690
+ # # Aws::IoTSiteWise::EventStreams::ResponseStream object.
4691
+ #
4692
+ # # Usage pattern a): Callbacks with a block attached to #invoke_assistant
4693
+ # # Example for registering callbacks for all event types and an error event
4694
+ # client.invoke_assistant(
4695
+ # # params input
4696
+ # ) do |stream|
4697
+ # stream.on_error_event do |event|
4698
+ # # catch unmodeled error event in the stream
4699
+ # raise event
4700
+ # # => Aws::Errors::EventError
4701
+ # # event.event_type => :error
4702
+ # # event.error_code => String
4703
+ # # event.error_message => String
4711
4704
  # end
4712
4705
  #
4713
- # Usage pattern b): Pass in `:event_stream_handler` for #invoke_assistant
4714
- #
4715
- # 1) Create a Aws::IoTSiteWise::EventStreams::ResponseStream object
4716
- # Example for registering callbacks with specific events
4717
- #
4718
- # handler = Aws::IoTSiteWise::EventStreams::ResponseStream.new
4719
- # handler.on_trace_event do |event|
4720
- # event # => Aws::IoTSiteWise::Types::trace
4721
- # end
4722
- # handler.on_output_event do |event|
4723
- # event # => Aws::IoTSiteWise::Types::output
4724
- # end
4725
- # handler.on_access_denied_exception_event do |event|
4726
- # event # => Aws::IoTSiteWise::Types::accessDeniedException
4727
- # end
4728
- # handler.on_conflicting_operation_exception_event do |event|
4729
- # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4730
- # end
4731
- # handler.on_internal_failure_exception_event do |event|
4732
- # event # => Aws::IoTSiteWise::Types::internalFailureException
4733
- # end
4734
- # handler.on_invalid_request_exception_event do |event|
4735
- # event # => Aws::IoTSiteWise::Types::invalidRequestException
4736
- # end
4737
- # handler.on_limit_exceeded_exception_event do |event|
4738
- # event # => Aws::IoTSiteWise::Types::limitExceededException
4739
- # end
4740
- # handler.on_resource_not_found_exception_event do |event|
4741
- # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4742
- # end
4743
- # handler.on_throttling_exception_event do |event|
4744
- # event # => Aws::IoTSiteWise::Types::throttlingException
4745
- # end
4746
- #
4747
- # client.invoke_assistant( # params input #, event_stream_handler: handler)
4748
- #
4749
- # 2) Use a Ruby Proc object
4750
- # Example for registering callbacks with specific events
4751
- #
4752
- # handler = Proc.new do |stream|
4753
- # stream.on_trace_event do |event|
4754
- # event # => Aws::IoTSiteWise::Types::trace
4755
- # end
4756
- # stream.on_output_event do |event|
4757
- # event # => Aws::IoTSiteWise::Types::output
4758
- # end
4759
- # stream.on_access_denied_exception_event do |event|
4760
- # event # => Aws::IoTSiteWise::Types::accessDeniedException
4761
- # end
4762
- # stream.on_conflicting_operation_exception_event do |event|
4763
- # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4764
- # end
4765
- # stream.on_internal_failure_exception_event do |event|
4766
- # event # => Aws::IoTSiteWise::Types::internalFailureException
4767
- # end
4768
- # stream.on_invalid_request_exception_event do |event|
4769
- # event # => Aws::IoTSiteWise::Types::invalidRequestException
4770
- # end
4771
- # stream.on_limit_exceeded_exception_event do |event|
4772
- # event # => Aws::IoTSiteWise::Types::limitExceededException
4773
- # end
4774
- # stream.on_resource_not_found_exception_event do |event|
4775
- # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4776
- # end
4777
- # stream.on_throttling_exception_event do |event|
4778
- # event # => Aws::IoTSiteWise::Types::throttlingException
4779
- # end
4706
+ # stream.on_event do |event|
4707
+ # # process all events arrive
4708
+ # puts event.event_type
4709
+ # # ...
4780
4710
  # end
4781
- #
4782
- # client.invoke_assistant( # params input #, event_stream_handler: handler)
4783
- #
4784
- # Usage pattern c): Hybrid pattern of a) and b)
4785
- #
4786
- # handler = Aws::IoTSiteWise::EventStreams::ResponseStream.new
4787
- # handler.on_trace_event do |event|
4788
- # event # => Aws::IoTSiteWise::Types::trace
4789
- # end
4790
- # handler.on_output_event do |event|
4791
- # event # => Aws::IoTSiteWise::Types::output
4792
- # end
4793
- # handler.on_access_denied_exception_event do |event|
4794
- # event # => Aws::IoTSiteWise::Types::accessDeniedException
4795
- # end
4796
- # handler.on_conflicting_operation_exception_event do |event|
4797
- # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4798
- # end
4799
- # handler.on_internal_failure_exception_event do |event|
4800
- # event # => Aws::IoTSiteWise::Types::internalFailureException
4801
- # end
4802
- # handler.on_invalid_request_exception_event do |event|
4803
- # event # => Aws::IoTSiteWise::Types::invalidRequestException
4804
- # end
4805
- # handler.on_limit_exceeded_exception_event do |event|
4806
- # event # => Aws::IoTSiteWise::Types::limitExceededException
4807
- # end
4808
- # handler.on_resource_not_found_exception_event do |event|
4809
- # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4810
- # end
4811
- # handler.on_throttling_exception_event do |event|
4812
- # event # => Aws::IoTSiteWise::Types::throttlingException
4813
- # end
4814
- #
4815
- # client.invoke_assistant( # params input #, event_stream_handler: handler) do |stream|
4816
- # stream.on_error_event do |event|
4817
- # # catch unmodeled error event in the stream
4818
- # raise event
4819
- # # => Aws::Errors::EventError
4820
- # # event.event_type => :error
4821
- # # event.error_code => String
4822
- # # event.error_message => String
4823
- # end
4711
+ # end
4712
+ #
4713
+ # # Usage pattern b): Pass in `:event_stream_handler` for #invoke_assistant
4714
+ # # 1) Create a Aws::IoTSiteWise::EventStreams::ResponseStream object
4715
+ # # Example for registering callbacks with specific events
4716
+ #
4717
+ # handler = Aws::IoTSiteWise::EventStreams::ResponseStream.new
4718
+ # handler.on_trace_event do |event|
4719
+ # event # => Aws::IoTSiteWise::Types::trace
4720
+ # end
4721
+ # handler.on_output_event do |event|
4722
+ # event # => Aws::IoTSiteWise::Types::output
4723
+ # end
4724
+ # handler.on_access_denied_exception_event do |event|
4725
+ # event # => Aws::IoTSiteWise::Types::accessDeniedException
4726
+ # end
4727
+ # handler.on_conflicting_operation_exception_event do |event|
4728
+ # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4729
+ # end
4730
+ # handler.on_internal_failure_exception_event do |event|
4731
+ # event # => Aws::IoTSiteWise::Types::internalFailureException
4732
+ # end
4733
+ # handler.on_invalid_request_exception_event do |event|
4734
+ # event # => Aws::IoTSiteWise::Types::invalidRequestException
4735
+ # end
4736
+ # handler.on_limit_exceeded_exception_event do |event|
4737
+ # event # => Aws::IoTSiteWise::Types::limitExceededException
4738
+ # end
4739
+ # handler.on_resource_not_found_exception_event do |event|
4740
+ # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4741
+ # end
4742
+ # handler.on_throttling_exception_event do |event|
4743
+ # event # => Aws::IoTSiteWise::Types::throttlingException
4744
+ # end
4745
+ #
4746
+ # client.invoke_assistant(
4747
+ # # params inputs
4748
+ # event_stream_handler: handler
4749
+ # )
4750
+ #
4751
+ # # 2) Use a Ruby Proc object
4752
+ # # Example for registering callbacks with specific events
4753
+ # handler = Proc.new do |stream|
4754
+ # stream.on_trace_event do |event|
4755
+ # event # => Aws::IoTSiteWise::Types::trace
4824
4756
  # end
4757
+ # stream.on_output_event do |event|
4758
+ # event # => Aws::IoTSiteWise::Types::output
4759
+ # end
4760
+ # stream.on_access_denied_exception_event do |event|
4761
+ # event # => Aws::IoTSiteWise::Types::accessDeniedException
4762
+ # end
4763
+ # stream.on_conflicting_operation_exception_event do |event|
4764
+ # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4765
+ # end
4766
+ # stream.on_internal_failure_exception_event do |event|
4767
+ # event # => Aws::IoTSiteWise::Types::internalFailureException
4768
+ # end
4769
+ # stream.on_invalid_request_exception_event do |event|
4770
+ # event # => Aws::IoTSiteWise::Types::invalidRequestException
4771
+ # end
4772
+ # stream.on_limit_exceeded_exception_event do |event|
4773
+ # event # => Aws::IoTSiteWise::Types::limitExceededException
4774
+ # end
4775
+ # stream.on_resource_not_found_exception_event do |event|
4776
+ # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4777
+ # end
4778
+ # stream.on_throttling_exception_event do |event|
4779
+ # event # => Aws::IoTSiteWise::Types::throttlingException
4780
+ # end
4781
+ # end
4782
+ #
4783
+ # client.invoke_assistant(
4784
+ # # params inputs
4785
+ # event_stream_handler: handler
4786
+ # )
4787
+ #
4788
+ # # Usage pattern c): Hybrid pattern of a) and b)
4789
+ # handler = Aws::IoTSiteWise::EventStreams::ResponseStream.new
4790
+ # handler.on_trace_event do |event|
4791
+ # event # => Aws::IoTSiteWise::Types::trace
4792
+ # end
4793
+ # handler.on_output_event do |event|
4794
+ # event # => Aws::IoTSiteWise::Types::output
4795
+ # end
4796
+ # handler.on_access_denied_exception_event do |event|
4797
+ # event # => Aws::IoTSiteWise::Types::accessDeniedException
4798
+ # end
4799
+ # handler.on_conflicting_operation_exception_event do |event|
4800
+ # event # => Aws::IoTSiteWise::Types::conflictingOperationException
4801
+ # end
4802
+ # handler.on_internal_failure_exception_event do |event|
4803
+ # event # => Aws::IoTSiteWise::Types::internalFailureException
4804
+ # end
4805
+ # handler.on_invalid_request_exception_event do |event|
4806
+ # event # => Aws::IoTSiteWise::Types::invalidRequestException
4807
+ # end
4808
+ # handler.on_limit_exceeded_exception_event do |event|
4809
+ # event # => Aws::IoTSiteWise::Types::limitExceededException
4810
+ # end
4811
+ # handler.on_resource_not_found_exception_event do |event|
4812
+ # event # => Aws::IoTSiteWise::Types::resourceNotFoundException
4813
+ # end
4814
+ # handler.on_throttling_exception_event do |event|
4815
+ # event # => Aws::IoTSiteWise::Types::throttlingException
4816
+ # end
4817
+ #
4818
+ # client.invoke_assistant(
4819
+ # # params input
4820
+ # event_stream_handler: handler
4821
+ # ) do |stream|
4822
+ # stream.on_error_event do |event|
4823
+ # # catch unmodeled error event in the stream
4824
+ # raise event
4825
+ # # => Aws::Errors::EventError
4826
+ # # event.event_type => :error
4827
+ # # event.error_code => String
4828
+ # # event.error_message => String
4829
+ # end
4830
+ # end
4825
4831
  #
4826
- # You can also iterate through events after the response complete.
4827
- #
4828
- # Events are available at resp.body # => Enumerator
4829
- # For parameter input example, please refer to following request syntax
4832
+ # # You can also iterate through events after the response complete.
4833
+ # # Events are available at
4834
+ # resp.body # => Enumerator
4835
+ # # For parameter input example, please refer to following request syntax.
4830
4836
  #
4831
4837
  # @example Request syntax with placeholder values
4832
4838
  #
@@ -4838,14 +4844,14 @@ module Aws::IoTSiteWise
4838
4844
  #
4839
4845
  # @example Response structure
4840
4846
  #
4841
- # All events are available at resp.body:
4847
+ # # All events are available at resp.body:
4842
4848
  # resp.body #=> Enumerator
4843
4849
  # resp.body.event_types #=> [:trace, :output, :access_denied_exception, :conflicting_operation_exception, :internal_failure_exception, :invalid_request_exception, :limit_exceeded_exception, :resource_not_found_exception, :throttling_exception]
4844
4850
  #
4845
- # For :trace event available at #on_trace_event callback and response eventstream enumerator:
4851
+ # # For :trace event available at #on_trace_event callback and response eventstream enumerator:
4846
4852
  # event.text #=> String
4847
4853
  #
4848
- # For :output event available at #on_output_event callback and response eventstream enumerator:
4854
+ # # For :output event available at #on_output_event callback and response eventstream enumerator:
4849
4855
  # event.message #=> String
4850
4856
  # event.citations #=> Array
4851
4857
  # event.citations[0].reference.dataset.dataset_arn #=> String
@@ -4853,27 +4859,27 @@ module Aws::IoTSiteWise
4853
4859
  # event.citations[0].reference.dataset.source.location.uri #=> String
4854
4860
  # event.citations[0].content.text #=> String
4855
4861
  #
4856
- # For :access_denied_exception event available at #on_access_denied_exception_event callback and response eventstream enumerator:
4862
+ # # For :access_denied_exception event available at #on_access_denied_exception_event callback and response eventstream enumerator:
4857
4863
  # event.message #=> String
4858
4864
  #
4859
- # For :conflicting_operation_exception event available at #on_conflicting_operation_exception_event callback and response eventstream enumerator:
4865
+ # # For :conflicting_operation_exception event available at #on_conflicting_operation_exception_event callback and response eventstream enumerator:
4860
4866
  # event.message #=> String
4861
4867
  # event.resource_id #=> String
4862
4868
  # event.resource_arn #=> String
4863
4869
  #
4864
- # For :internal_failure_exception event available at #on_internal_failure_exception_event callback and response eventstream enumerator:
4870
+ # # For :internal_failure_exception event available at #on_internal_failure_exception_event callback and response eventstream enumerator:
4865
4871
  # event.message #=> String
4866
4872
  #
4867
- # For :invalid_request_exception event available at #on_invalid_request_exception_event callback and response eventstream enumerator:
4873
+ # # For :invalid_request_exception event available at #on_invalid_request_exception_event callback and response eventstream enumerator:
4868
4874
  # event.message #=> String
4869
4875
  #
4870
- # For :limit_exceeded_exception event available at #on_limit_exceeded_exception_event callback and response eventstream enumerator:
4876
+ # # For :limit_exceeded_exception event available at #on_limit_exceeded_exception_event callback and response eventstream enumerator:
4871
4877
  # event.message #=> String
4872
4878
  #
4873
- # For :resource_not_found_exception event available at #on_resource_not_found_exception_event callback and response eventstream enumerator:
4879
+ # # For :resource_not_found_exception event available at #on_resource_not_found_exception_event callback and response eventstream enumerator:
4874
4880
  # event.message #=> String
4875
4881
  #
4876
- # For :throttling_exception event available at #on_throttling_exception_event callback and response eventstream enumerator:
4882
+ # # For :throttling_exception event available at #on_throttling_exception_event callback and response eventstream enumerator:
4877
4883
  # event.message #=> String
4878
4884
  #
4879
4885
  # resp.conversation_id #=> String
@@ -7453,7 +7459,7 @@ module Aws::IoTSiteWise
7453
7459
  tracer: tracer
7454
7460
  )
7455
7461
  context[:gem_name] = 'aws-sdk-iotsitewise'
7456
- context[:gem_version] = '1.83.0'
7462
+ context[:gem_version] = '1.85.0'
7457
7463
  Seahorse::Client::Request.new(handlers, context)
7458
7464
  end
7459
7465
 
@@ -819,13 +819,13 @@ module Aws::IoTSiteWise
819
819
  AssociateAssetsRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetId"))
820
820
  AssociateAssetsRequest.add_member(:hierarchy_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location_name: "hierarchyId"))
821
821
  AssociateAssetsRequest.add_member(:child_asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location_name: "childAssetId"))
822
- AssociateAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
822
+ AssociateAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
823
823
  AssociateAssetsRequest.struct_class = Types::AssociateAssetsRequest
824
824
 
825
825
  AssociateTimeSeriesToAssetPropertyRequest.add_member(:alias, Shapes::ShapeRef.new(shape: PropertyAlias, required: true, location: "querystring", location_name: "alias"))
826
826
  AssociateTimeSeriesToAssetPropertyRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "querystring", location_name: "assetId"))
827
827
  AssociateTimeSeriesToAssetPropertyRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "querystring", location_name: "propertyId"))
828
- AssociateTimeSeriesToAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
828
+ AssociateTimeSeriesToAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
829
829
  AssociateTimeSeriesToAssetPropertyRequest.struct_class = Types::AssociateTimeSeriesToAssetPropertyRequest
830
830
 
831
831
  AssociatedAssetsSummaries.member = Shapes::ShapeRef.new(shape: AssociatedAssetsSummary)
@@ -849,7 +849,7 @@ module Aws::IoTSiteWise
849
849
 
850
850
  BatchAssociateProjectAssetsRequest.add_member(:project_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "projectId"))
851
851
  BatchAssociateProjectAssetsRequest.add_member(:asset_ids, Shapes::ShapeRef.new(shape: IDs, required: true, location_name: "assetIds"))
852
- BatchAssociateProjectAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
852
+ BatchAssociateProjectAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
853
853
  BatchAssociateProjectAssetsRequest.struct_class = Types::BatchAssociateProjectAssetsRequest
854
854
 
855
855
  BatchAssociateProjectAssetsResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchAssociateProjectAssetsErrors, location_name: "errors"))
@@ -859,7 +859,7 @@ module Aws::IoTSiteWise
859
859
 
860
860
  BatchDisassociateProjectAssetsRequest.add_member(:project_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "projectId"))
861
861
  BatchDisassociateProjectAssetsRequest.add_member(:asset_ids, Shapes::ShapeRef.new(shape: IDs, required: true, location_name: "assetIds"))
862
- BatchDisassociateProjectAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
862
+ BatchDisassociateProjectAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
863
863
  BatchDisassociateProjectAssetsRequest.struct_class = Types::BatchDisassociateProjectAssetsRequest
864
864
 
865
865
  BatchDisassociateProjectAssetsResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchDisassociateProjectAssetsErrors, location_name: "errors"))
@@ -1081,7 +1081,7 @@ module Aws::IoTSiteWise
1081
1081
  CreateAccessPolicyRequest.add_member(:access_policy_identity, Shapes::ShapeRef.new(shape: Identity, required: true, location_name: "accessPolicyIdentity"))
1082
1082
  CreateAccessPolicyRequest.add_member(:access_policy_resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "accessPolicyResource"))
1083
1083
  CreateAccessPolicyRequest.add_member(:access_policy_permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "accessPolicyPermission"))
1084
- CreateAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1084
+ CreateAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1085
1085
  CreateAccessPolicyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1086
1086
  CreateAccessPolicyRequest.struct_class = Types::CreateAccessPolicyRequest
1087
1087
 
@@ -1096,7 +1096,7 @@ module Aws::IoTSiteWise
1096
1096
  CreateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_description, Shapes::ShapeRef.new(shape: Description, location_name: "assetModelCompositeModelDescription"))
1097
1097
  CreateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "assetModelCompositeModelName"))
1098
1098
  CreateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "assetModelCompositeModelType"))
1099
- CreateAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1099
+ CreateAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1100
1100
  CreateAssetModelCompositeModelRequest.add_member(:composed_asset_model_id, Shapes::ShapeRef.new(shape: CustomID, location_name: "composedAssetModelId"))
1101
1101
  CreateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_properties, Shapes::ShapeRef.new(shape: AssetModelPropertyDefinitions, location_name: "assetModelCompositeModelProperties"))
1102
1102
  CreateAssetModelCompositeModelRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "If-Match"))
@@ -1117,7 +1117,7 @@ module Aws::IoTSiteWise
1117
1117
  CreateAssetModelRequest.add_member(:asset_model_properties, Shapes::ShapeRef.new(shape: AssetModelPropertyDefinitions, location_name: "assetModelProperties"))
1118
1118
  CreateAssetModelRequest.add_member(:asset_model_hierarchies, Shapes::ShapeRef.new(shape: AssetModelHierarchyDefinitions, location_name: "assetModelHierarchies"))
1119
1119
  CreateAssetModelRequest.add_member(:asset_model_composite_models, Shapes::ShapeRef.new(shape: AssetModelCompositeModelDefinitions, location_name: "assetModelCompositeModels"))
1120
- CreateAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1120
+ CreateAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1121
1121
  CreateAssetModelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1122
1122
  CreateAssetModelRequest.struct_class = Types::CreateAssetModelRequest
1123
1123
 
@@ -1128,7 +1128,7 @@ module Aws::IoTSiteWise
1128
1128
 
1129
1129
  CreateAssetRequest.add_member(:asset_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "assetName"))
1130
1130
  CreateAssetRequest.add_member(:asset_model_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location_name: "assetModelId"))
1131
- CreateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1131
+ CreateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1132
1132
  CreateAssetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1133
1133
  CreateAssetRequest.add_member(:asset_description, Shapes::ShapeRef.new(shape: Description, location_name: "assetDescription"))
1134
1134
  CreateAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location_name: "assetId"))
@@ -1158,7 +1158,7 @@ module Aws::IoTSiteWise
1158
1158
  CreateDashboardRequest.add_member(:dashboard_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "dashboardName"))
1159
1159
  CreateDashboardRequest.add_member(:dashboard_description, Shapes::ShapeRef.new(shape: Description, location_name: "dashboardDescription"))
1160
1160
  CreateDashboardRequest.add_member(:dashboard_definition, Shapes::ShapeRef.new(shape: DashboardDefinition, required: true, location_name: "dashboardDefinition"))
1161
- CreateDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1161
+ CreateDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1162
1162
  CreateDashboardRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1163
1163
  CreateDashboardRequest.struct_class = Types::CreateDashboardRequest
1164
1164
 
@@ -1170,7 +1170,7 @@ module Aws::IoTSiteWise
1170
1170
  CreateDatasetRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: RestrictedName, required: true, location_name: "datasetName"))
1171
1171
  CreateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: RestrictedDescription, location_name: "datasetDescription"))
1172
1172
  CreateDatasetRequest.add_member(:dataset_source, Shapes::ShapeRef.new(shape: DatasetSource, required: true, location_name: "datasetSource"))
1173
- CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1173
+ CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1174
1174
  CreateDatasetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1175
1175
  CreateDatasetRequest.struct_class = Types::CreateDatasetRequest
1176
1176
 
@@ -1192,7 +1192,7 @@ module Aws::IoTSiteWise
1192
1192
  CreatePortalRequest.add_member(:portal_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "portalName"))
1193
1193
  CreatePortalRequest.add_member(:portal_description, Shapes::ShapeRef.new(shape: Description, location_name: "portalDescription"))
1194
1194
  CreatePortalRequest.add_member(:portal_contact_email, Shapes::ShapeRef.new(shape: Email, required: true, location_name: "portalContactEmail"))
1195
- CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1195
+ CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1196
1196
  CreatePortalRequest.add_member(:portal_logo_image_file, Shapes::ShapeRef.new(shape: ImageFile, location_name: "portalLogoImageFile"))
1197
1197
  CreatePortalRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamArn, required: true, location_name: "roleArn"))
1198
1198
  CreatePortalRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -1213,7 +1213,7 @@ module Aws::IoTSiteWise
1213
1213
  CreateProjectRequest.add_member(:portal_id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "portalId"))
1214
1214
  CreateProjectRequest.add_member(:project_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "projectName"))
1215
1215
  CreateProjectRequest.add_member(:project_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectDescription"))
1216
- CreateProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1216
+ CreateProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1217
1217
  CreateProjectRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1218
1218
  CreateProjectRequest.struct_class = Types::CreateProjectRequest
1219
1219
 
@@ -1270,14 +1270,14 @@ module Aws::IoTSiteWise
1270
1270
  DatumList.member = Shapes::ShapeRef.new(shape: Datum)
1271
1271
 
1272
1272
  DeleteAccessPolicyRequest.add_member(:access_policy_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "accessPolicyId"))
1273
- DeleteAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1273
+ DeleteAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1274
1274
  DeleteAccessPolicyRequest.struct_class = Types::DeleteAccessPolicyRequest
1275
1275
 
1276
1276
  DeleteAccessPolicyResponse.struct_class = Types::DeleteAccessPolicyResponse
1277
1277
 
1278
1278
  DeleteAssetModelCompositeModelRequest.add_member(:asset_model_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetModelId"))
1279
1279
  DeleteAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetModelCompositeModelId"))
1280
- DeleteAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1280
+ DeleteAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1281
1281
  DeleteAssetModelCompositeModelRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "If-Match"))
1282
1282
  DeleteAssetModelCompositeModelRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: SelectAll, location: "header", location_name: "If-None-Match"))
1283
1283
  DeleteAssetModelCompositeModelRequest.add_member(:match_for_version_type, Shapes::ShapeRef.new(shape: AssetModelVersionType, location: "header", location_name: "Match-For-Version-Type"))
@@ -1287,7 +1287,7 @@ module Aws::IoTSiteWise
1287
1287
  DeleteAssetModelCompositeModelResponse.struct_class = Types::DeleteAssetModelCompositeModelResponse
1288
1288
 
1289
1289
  DeleteAssetModelRequest.add_member(:asset_model_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetModelId"))
1290
- DeleteAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1290
+ DeleteAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1291
1291
  DeleteAssetModelRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "If-Match"))
1292
1292
  DeleteAssetModelRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: SelectAll, location: "header", location_name: "If-None-Match"))
1293
1293
  DeleteAssetModelRequest.add_member(:match_for_version_type, Shapes::ShapeRef.new(shape: AssetModelVersionType, location: "header", location_name: "Match-For-Version-Type"))
@@ -1297,20 +1297,20 @@ module Aws::IoTSiteWise
1297
1297
  DeleteAssetModelResponse.struct_class = Types::DeleteAssetModelResponse
1298
1298
 
1299
1299
  DeleteAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetId"))
1300
- DeleteAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1300
+ DeleteAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1301
1301
  DeleteAssetRequest.struct_class = Types::DeleteAssetRequest
1302
1302
 
1303
1303
  DeleteAssetResponse.add_member(:asset_status, Shapes::ShapeRef.new(shape: AssetStatus, required: true, location_name: "assetStatus"))
1304
1304
  DeleteAssetResponse.struct_class = Types::DeleteAssetResponse
1305
1305
 
1306
1306
  DeleteDashboardRequest.add_member(:dashboard_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "dashboardId"))
1307
- DeleteDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1307
+ DeleteDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1308
1308
  DeleteDashboardRequest.struct_class = Types::DeleteDashboardRequest
1309
1309
 
1310
1310
  DeleteDashboardResponse.struct_class = Types::DeleteDashboardResponse
1311
1311
 
1312
1312
  DeleteDatasetRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "datasetId"))
1313
- DeleteDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1313
+ DeleteDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1314
1314
  DeleteDatasetRequest.struct_class = Types::DeleteDatasetRequest
1315
1315
 
1316
1316
  DeleteDatasetResponse.add_member(:dataset_status, Shapes::ShapeRef.new(shape: DatasetStatus, required: true, location_name: "datasetStatus"))
@@ -1320,14 +1320,14 @@ module Aws::IoTSiteWise
1320
1320
  DeleteGatewayRequest.struct_class = Types::DeleteGatewayRequest
1321
1321
 
1322
1322
  DeletePortalRequest.add_member(:portal_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "portalId"))
1323
- DeletePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1323
+ DeletePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1324
1324
  DeletePortalRequest.struct_class = Types::DeletePortalRequest
1325
1325
 
1326
1326
  DeletePortalResponse.add_member(:portal_status, Shapes::ShapeRef.new(shape: PortalStatus, required: true, location_name: "portalStatus"))
1327
1327
  DeletePortalResponse.struct_class = Types::DeletePortalResponse
1328
1328
 
1329
1329
  DeleteProjectRequest.add_member(:project_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "projectId"))
1330
- DeleteProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1330
+ DeleteProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1331
1331
  DeleteProjectRequest.struct_class = Types::DeleteProjectRequest
1332
1332
 
1333
1333
  DeleteProjectResponse.struct_class = Types::DeleteProjectResponse
@@ -1335,7 +1335,7 @@ module Aws::IoTSiteWise
1335
1335
  DeleteTimeSeriesRequest.add_member(:alias, Shapes::ShapeRef.new(shape: PropertyAlias, location: "querystring", location_name: "alias"))
1336
1336
  DeleteTimeSeriesRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, location: "querystring", location_name: "assetId"))
1337
1337
  DeleteTimeSeriesRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: CustomID, location: "querystring", location_name: "propertyId"))
1338
- DeleteTimeSeriesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1338
+ DeleteTimeSeriesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1339
1339
  DeleteTimeSeriesRequest.struct_class = Types::DeleteTimeSeriesRequest
1340
1340
 
1341
1341
  DescribeAccessPolicyRequest.add_member(:access_policy_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "accessPolicyId"))
@@ -1597,13 +1597,13 @@ module Aws::IoTSiteWise
1597
1597
  DisassociateAssetsRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetId"))
1598
1598
  DisassociateAssetsRequest.add_member(:hierarchy_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location_name: "hierarchyId"))
1599
1599
  DisassociateAssetsRequest.add_member(:child_asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location_name: "childAssetId"))
1600
- DisassociateAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1600
+ DisassociateAssetsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1601
1601
  DisassociateAssetsRequest.struct_class = Types::DisassociateAssetsRequest
1602
1602
 
1603
1603
  DisassociateTimeSeriesFromAssetPropertyRequest.add_member(:alias, Shapes::ShapeRef.new(shape: PropertyAlias, required: true, location: "querystring", location_name: "alias"))
1604
1604
  DisassociateTimeSeriesFromAssetPropertyRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "querystring", location_name: "assetId"))
1605
1605
  DisassociateTimeSeriesFromAssetPropertyRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "querystring", location_name: "propertyId"))
1606
- DisassociateTimeSeriesFromAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1606
+ DisassociateTimeSeriesFromAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1607
1607
  DisassociateTimeSeriesFromAssetPropertyRequest.struct_class = Types::DisassociateTimeSeriesFromAssetPropertyRequest
1608
1608
 
1609
1609
  ErrorDetails.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "code"))
@@ -1627,7 +1627,7 @@ module Aws::IoTSiteWise
1627
1627
  ExecuteQueryRequest.add_member(:query_statement, Shapes::ShapeRef.new(shape: QueryStatement, required: true, location_name: "queryStatement"))
1628
1628
  ExecuteQueryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: ExecuteQueryNextToken, location_name: "nextToken"))
1629
1629
  ExecuteQueryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ExecuteQueryMaxResults, location_name: "maxResults"))
1630
- ExecuteQueryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1630
+ ExecuteQueryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1631
1631
  ExecuteQueryRequest.struct_class = Types::ExecuteQueryRequest
1632
1632
 
1633
1633
  ExecuteQueryResponse.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnsList, location_name: "columns"))
@@ -2266,7 +2266,7 @@ module Aws::IoTSiteWise
2266
2266
  UpdateAccessPolicyRequest.add_member(:access_policy_identity, Shapes::ShapeRef.new(shape: Identity, required: true, location_name: "accessPolicyIdentity"))
2267
2267
  UpdateAccessPolicyRequest.add_member(:access_policy_resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "accessPolicyResource"))
2268
2268
  UpdateAccessPolicyRequest.add_member(:access_policy_permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "accessPolicyPermission"))
2269
- UpdateAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2269
+ UpdateAccessPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2270
2270
  UpdateAccessPolicyRequest.struct_class = Types::UpdateAccessPolicyRequest
2271
2271
 
2272
2272
  UpdateAccessPolicyResponse.struct_class = Types::UpdateAccessPolicyResponse
@@ -2276,7 +2276,7 @@ module Aws::IoTSiteWise
2276
2276
  UpdateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_external_id, Shapes::ShapeRef.new(shape: ExternalId, location_name: "assetModelCompositeModelExternalId"))
2277
2277
  UpdateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_description, Shapes::ShapeRef.new(shape: Description, location_name: "assetModelCompositeModelDescription"))
2278
2278
  UpdateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "assetModelCompositeModelName"))
2279
- UpdateAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2279
+ UpdateAssetModelCompositeModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2280
2280
  UpdateAssetModelCompositeModelRequest.add_member(:asset_model_composite_model_properties, Shapes::ShapeRef.new(shape: AssetModelProperties, location_name: "assetModelCompositeModelProperties"))
2281
2281
  UpdateAssetModelCompositeModelRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "If-Match"))
2282
2282
  UpdateAssetModelCompositeModelRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: SelectAll, location: "header", location_name: "If-None-Match"))
@@ -2294,7 +2294,7 @@ module Aws::IoTSiteWise
2294
2294
  UpdateAssetModelRequest.add_member(:asset_model_properties, Shapes::ShapeRef.new(shape: AssetModelProperties, location_name: "assetModelProperties"))
2295
2295
  UpdateAssetModelRequest.add_member(:asset_model_hierarchies, Shapes::ShapeRef.new(shape: AssetModelHierarchies, location_name: "assetModelHierarchies"))
2296
2296
  UpdateAssetModelRequest.add_member(:asset_model_composite_models, Shapes::ShapeRef.new(shape: AssetModelCompositeModels, location_name: "assetModelCompositeModels"))
2297
- UpdateAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2297
+ UpdateAssetModelRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2298
2298
  UpdateAssetModelRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "If-Match"))
2299
2299
  UpdateAssetModelRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: SelectAll, location: "header", location_name: "If-None-Match"))
2300
2300
  UpdateAssetModelRequest.add_member(:match_for_version_type, Shapes::ShapeRef.new(shape: AssetModelVersionType, location: "header", location_name: "Match-For-Version-Type"))
@@ -2307,13 +2307,13 @@ module Aws::IoTSiteWise
2307
2307
  UpdateAssetPropertyRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "propertyId"))
2308
2308
  UpdateAssetPropertyRequest.add_member(:property_alias, Shapes::ShapeRef.new(shape: PropertyAlias, location_name: "propertyAlias"))
2309
2309
  UpdateAssetPropertyRequest.add_member(:property_notification_state, Shapes::ShapeRef.new(shape: PropertyNotificationState, location_name: "propertyNotificationState"))
2310
- UpdateAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2310
+ UpdateAssetPropertyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2311
2311
  UpdateAssetPropertyRequest.add_member(:property_unit, Shapes::ShapeRef.new(shape: PropertyUnit, location_name: "propertyUnit"))
2312
2312
  UpdateAssetPropertyRequest.struct_class = Types::UpdateAssetPropertyRequest
2313
2313
 
2314
2314
  UpdateAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: CustomID, required: true, location: "uri", location_name: "assetId"))
2315
2315
  UpdateAssetRequest.add_member(:asset_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "assetName"))
2316
- UpdateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2316
+ UpdateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2317
2317
  UpdateAssetRequest.add_member(:asset_description, Shapes::ShapeRef.new(shape: Description, location_name: "assetDescription"))
2318
2318
  UpdateAssetRequest.add_member(:asset_external_id, Shapes::ShapeRef.new(shape: ExternalId, location_name: "assetExternalId"))
2319
2319
  UpdateAssetRequest.struct_class = Types::UpdateAssetRequest
@@ -2325,7 +2325,7 @@ module Aws::IoTSiteWise
2325
2325
  UpdateDashboardRequest.add_member(:dashboard_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "dashboardName"))
2326
2326
  UpdateDashboardRequest.add_member(:dashboard_description, Shapes::ShapeRef.new(shape: Description, location_name: "dashboardDescription"))
2327
2327
  UpdateDashboardRequest.add_member(:dashboard_definition, Shapes::ShapeRef.new(shape: DashboardDefinition, required: true, location_name: "dashboardDefinition"))
2328
- UpdateDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2328
+ UpdateDashboardRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2329
2329
  UpdateDashboardRequest.struct_class = Types::UpdateDashboardRequest
2330
2330
 
2331
2331
  UpdateDashboardResponse.struct_class = Types::UpdateDashboardResponse
@@ -2334,7 +2334,7 @@ module Aws::IoTSiteWise
2334
2334
  UpdateDatasetRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: RestrictedName, required: true, location_name: "datasetName"))
2335
2335
  UpdateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: RestrictedDescription, location_name: "datasetDescription"))
2336
2336
  UpdateDatasetRequest.add_member(:dataset_source, Shapes::ShapeRef.new(shape: DatasetSource, required: true, location_name: "datasetSource"))
2337
- UpdateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2337
+ UpdateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2338
2338
  UpdateDatasetRequest.struct_class = Types::UpdateDatasetRequest
2339
2339
 
2340
2340
  UpdateDatasetResponse.add_member(:dataset_id, Shapes::ShapeRef.new(shape: CustomID, location_name: "datasetId"))
@@ -2361,7 +2361,7 @@ module Aws::IoTSiteWise
2361
2361
  UpdatePortalRequest.add_member(:portal_contact_email, Shapes::ShapeRef.new(shape: Email, required: true, location_name: "portalContactEmail"))
2362
2362
  UpdatePortalRequest.add_member(:portal_logo_image, Shapes::ShapeRef.new(shape: Image, location_name: "portalLogoImage"))
2363
2363
  UpdatePortalRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamArn, required: true, location_name: "roleArn"))
2364
- UpdatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2364
+ UpdatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2365
2365
  UpdatePortalRequest.add_member(:notification_sender_email, Shapes::ShapeRef.new(shape: Email, location_name: "notificationSenderEmail"))
2366
2366
  UpdatePortalRequest.add_member(:alarms, Shapes::ShapeRef.new(shape: Alarms, location_name: "alarms"))
2367
2367
  UpdatePortalRequest.add_member(:portal_type, Shapes::ShapeRef.new(shape: PortalType, location_name: "portalType"))
@@ -2374,7 +2374,7 @@ module Aws::IoTSiteWise
2374
2374
  UpdateProjectRequest.add_member(:project_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "projectId"))
2375
2375
  UpdateProjectRequest.add_member(:project_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "projectName"))
2376
2376
  UpdateProjectRequest.add_member(:project_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectDescription"))
2377
- UpdateProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
2377
+ UpdateProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2378
2378
  UpdateProjectRequest.struct_class = Types::UpdateProjectRequest
2379
2379
 
2380
2380
  UpdateProjectResponse.struct_class = Types::UpdateProjectResponse
@@ -56,7 +56,7 @@ module Aws::IoTSiteWise
56
56
  autoload :Endpoints, 'aws-sdk-iotsitewise/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-iotsitewise/event_streams'
58
58
 
59
- GEM_VERSION = '1.83.0'
59
+ GEM_VERSION = '1.85.0'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotsitewise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.83.0
4
+ version: 1.85.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -79,7 +78,6 @@ licenses:
79
78
  metadata:
80
79
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsitewise
81
80
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsitewise/CHANGELOG.md
82
- post_install_message:
83
81
  rdoc_options: []
84
82
  require_paths:
85
83
  - lib
@@ -94,8 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
92
  - !ruby/object:Gem::Version
95
93
  version: '0'
96
94
  requirements: []
97
- rubygems_version: 3.4.10
98
- signing_key:
95
+ rubygems_version: 3.6.7
99
96
  specification_version: 4
100
97
  summary: AWS SDK for Ruby - AWS IoT SiteWise
101
98
  test_files: []