aws-sdk-iotsitewise 1.38.0 → 1.41.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: 5cd91087e4b617d884ca980bddfc5d2b8a2da3ce38cfd7a5895cf88f658afb21
4
- data.tar.gz: ad05e6f7ea9d0920c2ec79e45f447b32a700556ecfe7a979f4c52384f16b9954
3
+ metadata.gz: f6afa0a452deb9c4bfde5615b47def5a60c2b174a0562a6f0b9af209931d99bf
4
+ data.tar.gz: a322656a746fbe2a654d8333d43fb9697bd49e02c9dbb0a84d7e929f6046f3ae
5
5
  SHA512:
6
- metadata.gz: 4cc2b5c95f1f42918e18b8119b46b9eeed8f11fe7ab66a96848701c1d80a7dafe804f1d3581e7ce19d571e05766b0cc6954ba09332231d4a72c923f8d272e195
7
- data.tar.gz: 2d816578fd257adfd4334f14397494032fc3db4c6094347bf0ffc893eec4dbad2bda68b944ef99f7b9cbfa8c4891c2c387f3e4603e068f66767099b6dfe74f3b
6
+ metadata.gz: 5b2184114c2a717a1cfa7054e22100844a291a32d035c54740d57c47196846f965e4594d53d9a8e5da45db6d4535b0e39bcd335a0ff43d5e3e1132509a766849
7
+ data.tar.gz: 5505ff7f6df8e193ea2b438440c764451c322e4f4b94d2d008435b025f865fb0c8e1564db75e380eab0bfa042bf3eafc422795d9aeb30871f2b3d6a94628a498
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2022-04-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds 3 new batch data query APIs : BatchGetAssetPropertyValue, BatchGetAssetPropertyValueHistory and BatchGetAssetPropertyAggregates
8
+
9
+ 1.40.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.39.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.38.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.41.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::IoTSiteWise
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -520,6 +524,240 @@ module Aws::IoTSiteWise
520
524
  req.send_request(options)
521
525
  end
522
526
 
527
+ # Gets aggregated values (for example, average, minimum, and maximum)
528
+ # for one or more asset properties. For more information, see [Querying
529
+ # aggregates][1] in the *IoT SiteWise User Guide*.
530
+ #
531
+ #
532
+ #
533
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#aggregates
534
+ #
535
+ # @option params [required, Array<Types::BatchGetAssetPropertyAggregatesEntry>] :entries
536
+ # The list of asset property aggregate entries for the batch get
537
+ # request. You can specify up to 16 entries per request.
538
+ #
539
+ # @option params [String] :next_token
540
+ # The token to be used for the next set of paginated results.
541
+ #
542
+ # @option params [Integer] :max_results
543
+ # The maximum number of results to return for each paginated request. A
544
+ # result set is returned in the two cases, whichever occurs first.
545
+ #
546
+ # * The size of the result set is less than 1 MB.
547
+ #
548
+ # * The number of data points in the result set is less than the value
549
+ # of `maxResults`. The maximum value of `maxResults` is 4000.
550
+ #
551
+ # @return [Types::BatchGetAssetPropertyAggregatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
552
+ #
553
+ # * {Types::BatchGetAssetPropertyAggregatesResponse#error_entries #error_entries} => Array&lt;Types::BatchGetAssetPropertyAggregatesErrorEntry&gt;
554
+ # * {Types::BatchGetAssetPropertyAggregatesResponse#success_entries #success_entries} => Array&lt;Types::BatchGetAssetPropertyAggregatesSuccessEntry&gt;
555
+ # * {Types::BatchGetAssetPropertyAggregatesResponse#skipped_entries #skipped_entries} => Array&lt;Types::BatchGetAssetPropertyAggregatesSkippedEntry&gt;
556
+ # * {Types::BatchGetAssetPropertyAggregatesResponse#next_token #next_token} => String
557
+ #
558
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
559
+ #
560
+ # @example Request syntax with placeholder values
561
+ #
562
+ # resp = client.batch_get_asset_property_aggregates({
563
+ # entries: [ # required
564
+ # {
565
+ # entry_id: "EntryId", # required
566
+ # asset_id: "ID",
567
+ # property_id: "ID",
568
+ # property_alias: "AssetPropertyAlias",
569
+ # aggregate_types: ["AVERAGE"], # required, accepts AVERAGE, COUNT, MAXIMUM, MINIMUM, SUM, STANDARD_DEVIATION
570
+ # resolution: "Resolution", # required
571
+ # start_date: Time.now, # required
572
+ # end_date: Time.now, # required
573
+ # qualities: ["GOOD"], # accepts GOOD, BAD, UNCERTAIN
574
+ # time_ordering: "ASCENDING", # accepts ASCENDING, DESCENDING
575
+ # },
576
+ # ],
577
+ # next_token: "NextToken",
578
+ # max_results: 1,
579
+ # })
580
+ #
581
+ # @example Response structure
582
+ #
583
+ # resp.error_entries #=> Array
584
+ # resp.error_entries[0].error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
585
+ # resp.error_entries[0].error_message #=> String
586
+ # resp.error_entries[0].entry_id #=> String
587
+ # resp.success_entries #=> Array
588
+ # resp.success_entries[0].entry_id #=> String
589
+ # resp.success_entries[0].aggregated_values #=> Array
590
+ # resp.success_entries[0].aggregated_values[0].timestamp #=> Time
591
+ # resp.success_entries[0].aggregated_values[0].quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
592
+ # resp.success_entries[0].aggregated_values[0].value.average #=> Float
593
+ # resp.success_entries[0].aggregated_values[0].value.count #=> Float
594
+ # resp.success_entries[0].aggregated_values[0].value.maximum #=> Float
595
+ # resp.success_entries[0].aggregated_values[0].value.minimum #=> Float
596
+ # resp.success_entries[0].aggregated_values[0].value.sum #=> Float
597
+ # resp.success_entries[0].aggregated_values[0].value.standard_deviation #=> Float
598
+ # resp.skipped_entries #=> Array
599
+ # resp.skipped_entries[0].entry_id #=> String
600
+ # resp.skipped_entries[0].completion_status #=> String, one of "SUCCESS", "ERROR"
601
+ # resp.skipped_entries[0].error_info.error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
602
+ # resp.skipped_entries[0].error_info.error_timestamp #=> Time
603
+ # resp.next_token #=> String
604
+ #
605
+ # @overload batch_get_asset_property_aggregates(params = {})
606
+ # @param [Hash] params ({})
607
+ def batch_get_asset_property_aggregates(params = {}, options = {})
608
+ req = build_request(:batch_get_asset_property_aggregates, params)
609
+ req.send_request(options)
610
+ end
611
+
612
+ # Gets the current value for one or more asset properties. For more
613
+ # information, see [Querying current values][1] in the *IoT SiteWise
614
+ # User Guide*.
615
+ #
616
+ #
617
+ #
618
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#current-values
619
+ #
620
+ # @option params [required, Array<Types::BatchGetAssetPropertyValueEntry>] :entries
621
+ # The list of asset property value entries for the batch get request.
622
+ # You can specify up to 16 entries per request.
623
+ #
624
+ # @option params [String] :next_token
625
+ # The token to be used for the next set of paginated results.
626
+ #
627
+ # @return [Types::BatchGetAssetPropertyValueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
628
+ #
629
+ # * {Types::BatchGetAssetPropertyValueResponse#error_entries #error_entries} => Array&lt;Types::BatchGetAssetPropertyValueErrorEntry&gt;
630
+ # * {Types::BatchGetAssetPropertyValueResponse#success_entries #success_entries} => Array&lt;Types::BatchGetAssetPropertyValueSuccessEntry&gt;
631
+ # * {Types::BatchGetAssetPropertyValueResponse#skipped_entries #skipped_entries} => Array&lt;Types::BatchGetAssetPropertyValueSkippedEntry&gt;
632
+ # * {Types::BatchGetAssetPropertyValueResponse#next_token #next_token} => String
633
+ #
634
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
635
+ #
636
+ # @example Request syntax with placeholder values
637
+ #
638
+ # resp = client.batch_get_asset_property_value({
639
+ # entries: [ # required
640
+ # {
641
+ # entry_id: "EntryId", # required
642
+ # asset_id: "ID",
643
+ # property_id: "ID",
644
+ # property_alias: "AssetPropertyAlias",
645
+ # },
646
+ # ],
647
+ # next_token: "NextToken",
648
+ # })
649
+ #
650
+ # @example Response structure
651
+ #
652
+ # resp.error_entries #=> Array
653
+ # resp.error_entries[0].error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
654
+ # resp.error_entries[0].error_message #=> String
655
+ # resp.error_entries[0].entry_id #=> String
656
+ # resp.success_entries #=> Array
657
+ # resp.success_entries[0].entry_id #=> String
658
+ # resp.success_entries[0].asset_property_value.value.string_value #=> String
659
+ # resp.success_entries[0].asset_property_value.value.integer_value #=> Integer
660
+ # resp.success_entries[0].asset_property_value.value.double_value #=> Float
661
+ # resp.success_entries[0].asset_property_value.value.boolean_value #=> Boolean
662
+ # resp.success_entries[0].asset_property_value.timestamp.time_in_seconds #=> Integer
663
+ # resp.success_entries[0].asset_property_value.timestamp.offset_in_nanos #=> Integer
664
+ # resp.success_entries[0].asset_property_value.quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
665
+ # resp.skipped_entries #=> Array
666
+ # resp.skipped_entries[0].entry_id #=> String
667
+ # resp.skipped_entries[0].completion_status #=> String, one of "SUCCESS", "ERROR"
668
+ # resp.skipped_entries[0].error_info.error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
669
+ # resp.skipped_entries[0].error_info.error_timestamp #=> Time
670
+ # resp.next_token #=> String
671
+ #
672
+ # @overload batch_get_asset_property_value(params = {})
673
+ # @param [Hash] params ({})
674
+ def batch_get_asset_property_value(params = {}, options = {})
675
+ req = build_request(:batch_get_asset_property_value, params)
676
+ req.send_request(options)
677
+ end
678
+
679
+ # Gets the historical values for one or more asset properties. For more
680
+ # information, see [Querying historical values][1] in the *IoT SiteWise
681
+ # User Guide*.
682
+ #
683
+ #
684
+ #
685
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/query-industrial-data.html#historical-values
686
+ #
687
+ # @option params [required, Array<Types::BatchGetAssetPropertyValueHistoryEntry>] :entries
688
+ # The list of asset property historical value entries for the batch get
689
+ # request. You can specify up to 16 entries per request.
690
+ #
691
+ # @option params [String] :next_token
692
+ # The token to be used for the next set of paginated results.
693
+ #
694
+ # @option params [Integer] :max_results
695
+ # The maximum number of results to return for each paginated request. A
696
+ # result set is returned in the two cases, whichever occurs first.
697
+ #
698
+ # * The size of the result set is less than 1 MB.
699
+ #
700
+ # * The number of data points in the result set is less than the value
701
+ # of `maxResults`. The maximum value of `maxResults` is 4000.
702
+ #
703
+ # @return [Types::BatchGetAssetPropertyValueHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
704
+ #
705
+ # * {Types::BatchGetAssetPropertyValueHistoryResponse#error_entries #error_entries} => Array&lt;Types::BatchGetAssetPropertyValueHistoryErrorEntry&gt;
706
+ # * {Types::BatchGetAssetPropertyValueHistoryResponse#success_entries #success_entries} => Array&lt;Types::BatchGetAssetPropertyValueHistorySuccessEntry&gt;
707
+ # * {Types::BatchGetAssetPropertyValueHistoryResponse#skipped_entries #skipped_entries} => Array&lt;Types::BatchGetAssetPropertyValueHistorySkippedEntry&gt;
708
+ # * {Types::BatchGetAssetPropertyValueHistoryResponse#next_token #next_token} => String
709
+ #
710
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
711
+ #
712
+ # @example Request syntax with placeholder values
713
+ #
714
+ # resp = client.batch_get_asset_property_value_history({
715
+ # entries: [ # required
716
+ # {
717
+ # entry_id: "EntryId", # required
718
+ # asset_id: "ID",
719
+ # property_id: "ID",
720
+ # property_alias: "AssetPropertyAlias",
721
+ # start_date: Time.now,
722
+ # end_date: Time.now,
723
+ # qualities: ["GOOD"], # accepts GOOD, BAD, UNCERTAIN
724
+ # time_ordering: "ASCENDING", # accepts ASCENDING, DESCENDING
725
+ # },
726
+ # ],
727
+ # next_token: "NextToken",
728
+ # max_results: 1,
729
+ # })
730
+ #
731
+ # @example Response structure
732
+ #
733
+ # resp.error_entries #=> Array
734
+ # resp.error_entries[0].error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
735
+ # resp.error_entries[0].error_message #=> String
736
+ # resp.error_entries[0].entry_id #=> String
737
+ # resp.success_entries #=> Array
738
+ # resp.success_entries[0].entry_id #=> String
739
+ # resp.success_entries[0].asset_property_value_history #=> Array
740
+ # resp.success_entries[0].asset_property_value_history[0].value.string_value #=> String
741
+ # resp.success_entries[0].asset_property_value_history[0].value.integer_value #=> Integer
742
+ # resp.success_entries[0].asset_property_value_history[0].value.double_value #=> Float
743
+ # resp.success_entries[0].asset_property_value_history[0].value.boolean_value #=> Boolean
744
+ # resp.success_entries[0].asset_property_value_history[0].timestamp.time_in_seconds #=> Integer
745
+ # resp.success_entries[0].asset_property_value_history[0].timestamp.offset_in_nanos #=> Integer
746
+ # resp.success_entries[0].asset_property_value_history[0].quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
747
+ # resp.skipped_entries #=> Array
748
+ # resp.skipped_entries[0].entry_id #=> String
749
+ # resp.skipped_entries[0].completion_status #=> String, one of "SUCCESS", "ERROR"
750
+ # resp.skipped_entries[0].error_info.error_code #=> String, one of "ResourceNotFoundException", "InvalidRequestException", "AccessDeniedException"
751
+ # resp.skipped_entries[0].error_info.error_timestamp #=> Time
752
+ # resp.next_token #=> String
753
+ #
754
+ # @overload batch_get_asset_property_value_history(params = {})
755
+ # @param [Hash] params ({})
756
+ def batch_get_asset_property_value_history(params = {}, options = {})
757
+ req = build_request(:batch_get_asset_property_value_history, params)
758
+ req.send_request(options)
759
+ end
760
+
523
761
  # Sends a list of asset property values to IoT SiteWise. Each value is a
524
762
  # timestamp-quality-value (TQV) data point. For more information, see
525
763
  # [Ingesting data using the API][1] in the *IoT SiteWise User Guide*.
@@ -4425,7 +4663,7 @@ module Aws::IoTSiteWise
4425
4663
  params: params,
4426
4664
  config: config)
4427
4665
  context[:gem_name] = 'aws-sdk-iotsitewise'
4428
- context[:gem_version] = '1.38.0'
4666
+ context[:gem_version] = '1.41.0'
4429
4667
  Seahorse::Client::Request.new(handlers, context)
4430
4668
  end
4431
4669
 
@@ -74,6 +74,45 @@ module Aws::IoTSiteWise
74
74
  BatchDisassociateProjectAssetsErrors = Shapes::ListShape.new(name: 'BatchDisassociateProjectAssetsErrors')
75
75
  BatchDisassociateProjectAssetsRequest = Shapes::StructureShape.new(name: 'BatchDisassociateProjectAssetsRequest')
76
76
  BatchDisassociateProjectAssetsResponse = Shapes::StructureShape.new(name: 'BatchDisassociateProjectAssetsResponse')
77
+ BatchEntryCompletionStatus = Shapes::StringShape.new(name: 'BatchEntryCompletionStatus')
78
+ BatchGetAssetPropertyAggregatesEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyAggregatesEntries')
79
+ BatchGetAssetPropertyAggregatesEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesEntry')
80
+ BatchGetAssetPropertyAggregatesErrorCode = Shapes::StringShape.new(name: 'BatchGetAssetPropertyAggregatesErrorCode')
81
+ BatchGetAssetPropertyAggregatesErrorEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyAggregatesErrorEntries')
82
+ BatchGetAssetPropertyAggregatesErrorEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesErrorEntry')
83
+ BatchGetAssetPropertyAggregatesErrorInfo = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesErrorInfo')
84
+ BatchGetAssetPropertyAggregatesMaxResults = Shapes::IntegerShape.new(name: 'BatchGetAssetPropertyAggregatesMaxResults')
85
+ BatchGetAssetPropertyAggregatesRequest = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesRequest')
86
+ BatchGetAssetPropertyAggregatesResponse = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesResponse')
87
+ BatchGetAssetPropertyAggregatesSkippedEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyAggregatesSkippedEntries')
88
+ BatchGetAssetPropertyAggregatesSkippedEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesSkippedEntry')
89
+ BatchGetAssetPropertyAggregatesSuccessEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyAggregatesSuccessEntries')
90
+ BatchGetAssetPropertyAggregatesSuccessEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyAggregatesSuccessEntry')
91
+ BatchGetAssetPropertyValueEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueEntries')
92
+ BatchGetAssetPropertyValueEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueEntry')
93
+ BatchGetAssetPropertyValueErrorCode = Shapes::StringShape.new(name: 'BatchGetAssetPropertyValueErrorCode')
94
+ BatchGetAssetPropertyValueErrorEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueErrorEntries')
95
+ BatchGetAssetPropertyValueErrorEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueErrorEntry')
96
+ BatchGetAssetPropertyValueErrorInfo = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueErrorInfo')
97
+ BatchGetAssetPropertyValueHistoryEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueHistoryEntries')
98
+ BatchGetAssetPropertyValueHistoryEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistoryEntry')
99
+ BatchGetAssetPropertyValueHistoryErrorCode = Shapes::StringShape.new(name: 'BatchGetAssetPropertyValueHistoryErrorCode')
100
+ BatchGetAssetPropertyValueHistoryErrorEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueHistoryErrorEntries')
101
+ BatchGetAssetPropertyValueHistoryErrorEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistoryErrorEntry')
102
+ BatchGetAssetPropertyValueHistoryErrorInfo = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistoryErrorInfo')
103
+ BatchGetAssetPropertyValueHistoryMaxResults = Shapes::IntegerShape.new(name: 'BatchGetAssetPropertyValueHistoryMaxResults')
104
+ BatchGetAssetPropertyValueHistoryRequest = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistoryRequest')
105
+ BatchGetAssetPropertyValueHistoryResponse = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistoryResponse')
106
+ BatchGetAssetPropertyValueHistorySkippedEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueHistorySkippedEntries')
107
+ BatchGetAssetPropertyValueHistorySkippedEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistorySkippedEntry')
108
+ BatchGetAssetPropertyValueHistorySuccessEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueHistorySuccessEntries')
109
+ BatchGetAssetPropertyValueHistorySuccessEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueHistorySuccessEntry')
110
+ BatchGetAssetPropertyValueRequest = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueRequest')
111
+ BatchGetAssetPropertyValueResponse = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueResponse')
112
+ BatchGetAssetPropertyValueSkippedEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueSkippedEntries')
113
+ BatchGetAssetPropertyValueSkippedEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueSkippedEntry')
114
+ BatchGetAssetPropertyValueSuccessEntries = Shapes::ListShape.new(name: 'BatchGetAssetPropertyValueSuccessEntries')
115
+ BatchGetAssetPropertyValueSuccessEntry = Shapes::StructureShape.new(name: 'BatchGetAssetPropertyValueSuccessEntry')
77
116
  BatchPutAssetPropertyError = Shapes::StructureShape.new(name: 'BatchPutAssetPropertyError')
78
117
  BatchPutAssetPropertyErrorEntries = Shapes::ListShape.new(name: 'BatchPutAssetPropertyErrorEntries')
79
118
  BatchPutAssetPropertyErrorEntry = Shapes::StructureShape.new(name: 'BatchPutAssetPropertyErrorEntry')
@@ -552,6 +591,144 @@ module Aws::IoTSiteWise
552
591
  BatchDisassociateProjectAssetsResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchDisassociateProjectAssetsErrors, location_name: "errors"))
553
592
  BatchDisassociateProjectAssetsResponse.struct_class = Types::BatchDisassociateProjectAssetsResponse
554
593
 
594
+ BatchGetAssetPropertyAggregatesEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesEntry)
595
+
596
+ BatchGetAssetPropertyAggregatesEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
597
+ BatchGetAssetPropertyAggregatesEntry.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location_name: "assetId"))
598
+ BatchGetAssetPropertyAggregatesEntry.add_member(:property_id, Shapes::ShapeRef.new(shape: ID, location_name: "propertyId"))
599
+ BatchGetAssetPropertyAggregatesEntry.add_member(:property_alias, Shapes::ShapeRef.new(shape: AssetPropertyAlias, location_name: "propertyAlias"))
600
+ BatchGetAssetPropertyAggregatesEntry.add_member(:aggregate_types, Shapes::ShapeRef.new(shape: AggregateTypes, required: true, location_name: "aggregateTypes"))
601
+ BatchGetAssetPropertyAggregatesEntry.add_member(:resolution, Shapes::ShapeRef.new(shape: Resolution, required: true, location_name: "resolution"))
602
+ BatchGetAssetPropertyAggregatesEntry.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startDate"))
603
+ BatchGetAssetPropertyAggregatesEntry.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endDate"))
604
+ BatchGetAssetPropertyAggregatesEntry.add_member(:qualities, Shapes::ShapeRef.new(shape: Qualities, location_name: "qualities"))
605
+ BatchGetAssetPropertyAggregatesEntry.add_member(:time_ordering, Shapes::ShapeRef.new(shape: TimeOrdering, location_name: "timeOrdering"))
606
+ BatchGetAssetPropertyAggregatesEntry.struct_class = Types::BatchGetAssetPropertyAggregatesEntry
607
+
608
+ BatchGetAssetPropertyAggregatesErrorEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesErrorEntry)
609
+
610
+ BatchGetAssetPropertyAggregatesErrorEntry.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesErrorCode, required: true, location_name: "errorCode"))
611
+ BatchGetAssetPropertyAggregatesErrorEntry.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
612
+ BatchGetAssetPropertyAggregatesErrorEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
613
+ BatchGetAssetPropertyAggregatesErrorEntry.struct_class = Types::BatchGetAssetPropertyAggregatesErrorEntry
614
+
615
+ BatchGetAssetPropertyAggregatesErrorInfo.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesErrorCode, required: true, location_name: "errorCode"))
616
+ BatchGetAssetPropertyAggregatesErrorInfo.add_member(:error_timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "errorTimestamp"))
617
+ BatchGetAssetPropertyAggregatesErrorInfo.struct_class = Types::BatchGetAssetPropertyAggregatesErrorInfo
618
+
619
+ BatchGetAssetPropertyAggregatesRequest.add_member(:entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesEntries, required: true, location_name: "entries"))
620
+ BatchGetAssetPropertyAggregatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
621
+ BatchGetAssetPropertyAggregatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesMaxResults, location_name: "maxResults"))
622
+ BatchGetAssetPropertyAggregatesRequest.struct_class = Types::BatchGetAssetPropertyAggregatesRequest
623
+
624
+ BatchGetAssetPropertyAggregatesResponse.add_member(:error_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesErrorEntries, required: true, location_name: "errorEntries"))
625
+ BatchGetAssetPropertyAggregatesResponse.add_member(:success_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesSuccessEntries, required: true, location_name: "successEntries"))
626
+ BatchGetAssetPropertyAggregatesResponse.add_member(:skipped_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesSkippedEntries, required: true, location_name: "skippedEntries"))
627
+ BatchGetAssetPropertyAggregatesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
628
+ BatchGetAssetPropertyAggregatesResponse.struct_class = Types::BatchGetAssetPropertyAggregatesResponse
629
+
630
+ BatchGetAssetPropertyAggregatesSkippedEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesSkippedEntry)
631
+
632
+ BatchGetAssetPropertyAggregatesSkippedEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
633
+ BatchGetAssetPropertyAggregatesSkippedEntry.add_member(:completion_status, Shapes::ShapeRef.new(shape: BatchEntryCompletionStatus, required: true, location_name: "completionStatus"))
634
+ BatchGetAssetPropertyAggregatesSkippedEntry.add_member(:error_info, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesErrorInfo, location_name: "errorInfo"))
635
+ BatchGetAssetPropertyAggregatesSkippedEntry.struct_class = Types::BatchGetAssetPropertyAggregatesSkippedEntry
636
+
637
+ BatchGetAssetPropertyAggregatesSuccessEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesSuccessEntry)
638
+
639
+ BatchGetAssetPropertyAggregatesSuccessEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
640
+ BatchGetAssetPropertyAggregatesSuccessEntry.add_member(:aggregated_values, Shapes::ShapeRef.new(shape: AggregatedValues, required: true, location_name: "aggregatedValues"))
641
+ BatchGetAssetPropertyAggregatesSuccessEntry.struct_class = Types::BatchGetAssetPropertyAggregatesSuccessEntry
642
+
643
+ BatchGetAssetPropertyValueEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueEntry)
644
+
645
+ BatchGetAssetPropertyValueEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
646
+ BatchGetAssetPropertyValueEntry.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location_name: "assetId"))
647
+ BatchGetAssetPropertyValueEntry.add_member(:property_id, Shapes::ShapeRef.new(shape: ID, location_name: "propertyId"))
648
+ BatchGetAssetPropertyValueEntry.add_member(:property_alias, Shapes::ShapeRef.new(shape: AssetPropertyAlias, location_name: "propertyAlias"))
649
+ BatchGetAssetPropertyValueEntry.struct_class = Types::BatchGetAssetPropertyValueEntry
650
+
651
+ BatchGetAssetPropertyValueErrorEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueErrorEntry)
652
+
653
+ BatchGetAssetPropertyValueErrorEntry.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueErrorCode, required: true, location_name: "errorCode"))
654
+ BatchGetAssetPropertyValueErrorEntry.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
655
+ BatchGetAssetPropertyValueErrorEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
656
+ BatchGetAssetPropertyValueErrorEntry.struct_class = Types::BatchGetAssetPropertyValueErrorEntry
657
+
658
+ BatchGetAssetPropertyValueErrorInfo.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueErrorCode, required: true, location_name: "errorCode"))
659
+ BatchGetAssetPropertyValueErrorInfo.add_member(:error_timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "errorTimestamp"))
660
+ BatchGetAssetPropertyValueErrorInfo.struct_class = Types::BatchGetAssetPropertyValueErrorInfo
661
+
662
+ BatchGetAssetPropertyValueHistoryEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryEntry)
663
+
664
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
665
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location_name: "assetId"))
666
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:property_id, Shapes::ShapeRef.new(shape: ID, location_name: "propertyId"))
667
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:property_alias, Shapes::ShapeRef.new(shape: AssetPropertyAlias, location_name: "propertyAlias"))
668
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startDate"))
669
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endDate"))
670
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:qualities, Shapes::ShapeRef.new(shape: Qualities, location_name: "qualities"))
671
+ BatchGetAssetPropertyValueHistoryEntry.add_member(:time_ordering, Shapes::ShapeRef.new(shape: TimeOrdering, location_name: "timeOrdering"))
672
+ BatchGetAssetPropertyValueHistoryEntry.struct_class = Types::BatchGetAssetPropertyValueHistoryEntry
673
+
674
+ BatchGetAssetPropertyValueHistoryErrorEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryErrorEntry)
675
+
676
+ BatchGetAssetPropertyValueHistoryErrorEntry.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryErrorCode, required: true, location_name: "errorCode"))
677
+ BatchGetAssetPropertyValueHistoryErrorEntry.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
678
+ BatchGetAssetPropertyValueHistoryErrorEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
679
+ BatchGetAssetPropertyValueHistoryErrorEntry.struct_class = Types::BatchGetAssetPropertyValueHistoryErrorEntry
680
+
681
+ BatchGetAssetPropertyValueHistoryErrorInfo.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryErrorCode, required: true, location_name: "errorCode"))
682
+ BatchGetAssetPropertyValueHistoryErrorInfo.add_member(:error_timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "errorTimestamp"))
683
+ BatchGetAssetPropertyValueHistoryErrorInfo.struct_class = Types::BatchGetAssetPropertyValueHistoryErrorInfo
684
+
685
+ BatchGetAssetPropertyValueHistoryRequest.add_member(:entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryEntries, required: true, location_name: "entries"))
686
+ BatchGetAssetPropertyValueHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
687
+ BatchGetAssetPropertyValueHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryMaxResults, location_name: "maxResults"))
688
+ BatchGetAssetPropertyValueHistoryRequest.struct_class = Types::BatchGetAssetPropertyValueHistoryRequest
689
+
690
+ BatchGetAssetPropertyValueHistoryResponse.add_member(:error_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryErrorEntries, required: true, location_name: "errorEntries"))
691
+ BatchGetAssetPropertyValueHistoryResponse.add_member(:success_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistorySuccessEntries, required: true, location_name: "successEntries"))
692
+ BatchGetAssetPropertyValueHistoryResponse.add_member(:skipped_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistorySkippedEntries, required: true, location_name: "skippedEntries"))
693
+ BatchGetAssetPropertyValueHistoryResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
694
+ BatchGetAssetPropertyValueHistoryResponse.struct_class = Types::BatchGetAssetPropertyValueHistoryResponse
695
+
696
+ BatchGetAssetPropertyValueHistorySkippedEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistorySkippedEntry)
697
+
698
+ BatchGetAssetPropertyValueHistorySkippedEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
699
+ BatchGetAssetPropertyValueHistorySkippedEntry.add_member(:completion_status, Shapes::ShapeRef.new(shape: BatchEntryCompletionStatus, required: true, location_name: "completionStatus"))
700
+ BatchGetAssetPropertyValueHistorySkippedEntry.add_member(:error_info, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryErrorInfo, location_name: "errorInfo"))
701
+ BatchGetAssetPropertyValueHistorySkippedEntry.struct_class = Types::BatchGetAssetPropertyValueHistorySkippedEntry
702
+
703
+ BatchGetAssetPropertyValueHistorySuccessEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistorySuccessEntry)
704
+
705
+ BatchGetAssetPropertyValueHistorySuccessEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
706
+ BatchGetAssetPropertyValueHistorySuccessEntry.add_member(:asset_property_value_history, Shapes::ShapeRef.new(shape: AssetPropertyValueHistory, required: true, location_name: "assetPropertyValueHistory"))
707
+ BatchGetAssetPropertyValueHistorySuccessEntry.struct_class = Types::BatchGetAssetPropertyValueHistorySuccessEntry
708
+
709
+ BatchGetAssetPropertyValueRequest.add_member(:entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueEntries, required: true, location_name: "entries"))
710
+ BatchGetAssetPropertyValueRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
711
+ BatchGetAssetPropertyValueRequest.struct_class = Types::BatchGetAssetPropertyValueRequest
712
+
713
+ BatchGetAssetPropertyValueResponse.add_member(:error_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueErrorEntries, required: true, location_name: "errorEntries"))
714
+ BatchGetAssetPropertyValueResponse.add_member(:success_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueSuccessEntries, required: true, location_name: "successEntries"))
715
+ BatchGetAssetPropertyValueResponse.add_member(:skipped_entries, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueSkippedEntries, required: true, location_name: "skippedEntries"))
716
+ BatchGetAssetPropertyValueResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
717
+ BatchGetAssetPropertyValueResponse.struct_class = Types::BatchGetAssetPropertyValueResponse
718
+
719
+ BatchGetAssetPropertyValueSkippedEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueSkippedEntry)
720
+
721
+ BatchGetAssetPropertyValueSkippedEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
722
+ BatchGetAssetPropertyValueSkippedEntry.add_member(:completion_status, Shapes::ShapeRef.new(shape: BatchEntryCompletionStatus, required: true, location_name: "completionStatus"))
723
+ BatchGetAssetPropertyValueSkippedEntry.add_member(:error_info, Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueErrorInfo, location_name: "errorInfo"))
724
+ BatchGetAssetPropertyValueSkippedEntry.struct_class = Types::BatchGetAssetPropertyValueSkippedEntry
725
+
726
+ BatchGetAssetPropertyValueSuccessEntries.member = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueSuccessEntry)
727
+
728
+ BatchGetAssetPropertyValueSuccessEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
729
+ BatchGetAssetPropertyValueSuccessEntry.add_member(:asset_property_value, Shapes::ShapeRef.new(shape: AssetPropertyValue, location_name: "assetPropertyValue"))
730
+ BatchGetAssetPropertyValueSuccessEntry.struct_class = Types::BatchGetAssetPropertyValueSuccessEntry
731
+
555
732
  BatchPutAssetPropertyError.add_member(:error_code, Shapes::ShapeRef.new(shape: BatchPutAssetPropertyValueErrorCode, required: true, location_name: "errorCode"))
556
733
  BatchPutAssetPropertyError.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
557
734
  BatchPutAssetPropertyError.add_member(:timestamps, Shapes::ShapeRef.new(shape: Timestamps, required: true, location_name: "timestamps"))
@@ -1535,6 +1712,68 @@ module Aws::IoTSiteWise
1535
1712
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1536
1713
  end)
1537
1714
 
1715
+ api.add_operation(:batch_get_asset_property_aggregates, Seahorse::Model::Operation.new.tap do |o|
1716
+ o.name = "BatchGetAssetPropertyAggregates"
1717
+ o.http_method = "POST"
1718
+ o.http_request_uri = "/properties/batch/aggregates"
1719
+ o.endpoint_pattern = {
1720
+ "hostPrefix" => "data.",
1721
+ }
1722
+ o.input = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesRequest)
1723
+ o.output = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyAggregatesResponse)
1724
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1725
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
1726
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1727
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1728
+ o[:pager] = Aws::Pager.new(
1729
+ limit_key: "max_results",
1730
+ tokens: {
1731
+ "next_token" => "next_token"
1732
+ }
1733
+ )
1734
+ end)
1735
+
1736
+ api.add_operation(:batch_get_asset_property_value, Seahorse::Model::Operation.new.tap do |o|
1737
+ o.name = "BatchGetAssetPropertyValue"
1738
+ o.http_method = "POST"
1739
+ o.http_request_uri = "/properties/batch/latest"
1740
+ o.endpoint_pattern = {
1741
+ "hostPrefix" => "data.",
1742
+ }
1743
+ o.input = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueRequest)
1744
+ o.output = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueResponse)
1745
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1746
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
1747
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1748
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1749
+ o[:pager] = Aws::Pager.new(
1750
+ tokens: {
1751
+ "next_token" => "next_token"
1752
+ }
1753
+ )
1754
+ end)
1755
+
1756
+ api.add_operation(:batch_get_asset_property_value_history, Seahorse::Model::Operation.new.tap do |o|
1757
+ o.name = "BatchGetAssetPropertyValueHistory"
1758
+ o.http_method = "POST"
1759
+ o.http_request_uri = "/properties/batch/history"
1760
+ o.endpoint_pattern = {
1761
+ "hostPrefix" => "data.",
1762
+ }
1763
+ o.input = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryRequest)
1764
+ o.output = Shapes::ShapeRef.new(shape: BatchGetAssetPropertyValueHistoryResponse)
1765
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1766
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
1767
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1768
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1769
+ o[:pager] = Aws::Pager.new(
1770
+ limit_key: "max_results",
1771
+ tokens: {
1772
+ "next_token" => "next_token"
1773
+ }
1774
+ )
1775
+ end)
1776
+
1538
1777
  api.add_operation(:batch_put_asset_property_value, Seahorse::Model::Operation.new.tap do |o|
1539
1778
  o.name = "BatchPutAssetPropertyValue"
1540
1779
  o.http_method = "POST"