aws-sdk-resourceexplorer2 1.29.0 → 1.31.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: 2be126af9ca67bf7e679d80fe17d184452a3aeeef5d7e23c33859545e6ad7daf
4
- data.tar.gz: 3ebd436b607147d529f114c7d723bfe039f56d4460ddc99c9c21e18600da3ec7
3
+ metadata.gz: 02b133a4cee981f0fd8a6992112ea8146f34d23dae92f537c8b4eda4a55a1acd
4
+ data.tar.gz: 54e90ae84fca321c0bde2b56ad151568043179e1646bb8c0225de84f36d6ed8d
5
5
  SHA512:
6
- metadata.gz: 2c87fbe404dd8b89474845ddb64e78571dbe9e987c9a42f8f9e1459eecfd59aef7708fd22a5ed44dbde1b3bf69dd9be8a0e2d7e4a1c9e8a9846032122ac3ad26
7
- data.tar.gz: 8bb8c478ae7a9828ef9313d04c40b007473c56df783ee29a843d7b4068850e4f11610cab4ce6b75747c2625b58c0d2fffb56dbff6d94db86ff38fdcf0c098da9
6
+ metadata.gz: df6d659fbe9d22dd4eead5b9304b871af2e8e7ad96dd6708a50b238ae0a05360eec52bd62b6832a61531e825b42006b8750e5415bae91e4f53cae937f65d1788
7
+ data.tar.gz: cbdf9918ffd1ec09a33a5a6d00e5dfab1c055c4e091e9ced26d9f84f303124bedaa83e0cbc2596c43280795136db31218c768f57004944f22df66f89b0b56ccb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.30.0 (2024-11-07)
10
+ ------------------
11
+
12
+ * Feature - Add GetManagedView, ListManagedViews APIs.
13
+
4
14
  1.29.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.31.0
@@ -257,11 +257,34 @@ module Aws::ResourceExplorer2
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -951,6 +974,49 @@ module Aws::ResourceExplorer2
951
974
  req.send_request(options)
952
975
  end
953
976
 
977
+ # Retrieves details of the specified [Amazon Web Services-managed
978
+ # view][1].
979
+ #
980
+ #
981
+ #
982
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html
983
+ #
984
+ # @option params [required, String] :managed_view_arn
985
+ # The Amazon resource name (ARN) of the managed view.
986
+ #
987
+ # @return [Types::GetManagedViewOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
988
+ #
989
+ # * {Types::GetManagedViewOutput#managed_view #managed_view} => Types::ManagedView
990
+ #
991
+ # @example Request syntax with placeholder values
992
+ #
993
+ # resp = client.get_managed_view({
994
+ # managed_view_arn: "GetManagedViewInputManagedViewArnString", # required
995
+ # })
996
+ #
997
+ # @example Response structure
998
+ #
999
+ # resp.managed_view.filters.filter_string #=> String
1000
+ # resp.managed_view.included_properties #=> Array
1001
+ # resp.managed_view.included_properties[0].name #=> String
1002
+ # resp.managed_view.last_updated_at #=> Time
1003
+ # resp.managed_view.managed_view_arn #=> String
1004
+ # resp.managed_view.managed_view_name #=> String
1005
+ # resp.managed_view.owner #=> String
1006
+ # resp.managed_view.resource_policy #=> String
1007
+ # resp.managed_view.scope #=> String
1008
+ # resp.managed_view.trusted_service #=> String
1009
+ # resp.managed_view.version #=> String
1010
+ #
1011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/GetManagedView AWS API Documentation
1012
+ #
1013
+ # @overload get_managed_view(params = {})
1014
+ # @param [Hash] params ({})
1015
+ def get_managed_view(params = {}, options = {})
1016
+ req = build_request(:get_managed_view, params)
1017
+ req.send_request(options)
1018
+ end
1019
+
954
1020
  # Retrieves details of the specified view.
955
1021
  #
956
1022
  # @option params [required, String] :view_arn
@@ -1129,6 +1195,71 @@ module Aws::ResourceExplorer2
1129
1195
  req.send_request(options)
1130
1196
  end
1131
1197
 
1198
+ # Lists the Amazon resource names (ARNs) of the [Amazon Web
1199
+ # Services-managed views][1] available in the Amazon Web Services Region
1200
+ # in which you call this operation.
1201
+ #
1202
+ #
1203
+ #
1204
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html
1205
+ #
1206
+ # @option params [Integer] :max_results
1207
+ # The maximum number of results that you want included on each page of
1208
+ # the response. If you do not include this parameter, it defaults to a
1209
+ # value appropriate to the operation. If additional items exist beyond
1210
+ # those included in the current response, the `NextToken` response
1211
+ # element is present and has a value (is not null). Include that value
1212
+ # as the `NextToken` request parameter in the next call to the operation
1213
+ # to get the next part of the results.
1214
+ #
1215
+ # <note markdown="1"> An API operation can return fewer results than the maximum even when
1216
+ # there are more results available. You should check `NextToken` after
1217
+ # every operation to ensure that you receive all of the results.
1218
+ #
1219
+ # </note>
1220
+ #
1221
+ # @option params [String] :next_token
1222
+ # The parameter for receiving additional results if you receive a
1223
+ # `NextToken` response in a previous request. A `NextToken` response
1224
+ # indicates that more output is available. Set this parameter to the
1225
+ # value of the previous call's `NextToken` response to indicate where
1226
+ # the output should continue from. The pagination tokens expire after 24
1227
+ # hours.
1228
+ #
1229
+ # @option params [String] :service_principal
1230
+ # Specifies a service principal name. If specified, then the operation
1231
+ # only returns the managed views that are managed by the input service.
1232
+ #
1233
+ # @return [Types::ListManagedViewsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1234
+ #
1235
+ # * {Types::ListManagedViewsOutput#managed_views #managed_views} => Array&lt;String&gt;
1236
+ # * {Types::ListManagedViewsOutput#next_token #next_token} => String
1237
+ #
1238
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1239
+ #
1240
+ # @example Request syntax with placeholder values
1241
+ #
1242
+ # resp = client.list_managed_views({
1243
+ # max_results: 1,
1244
+ # next_token: "ListManagedViewsInputNextTokenString",
1245
+ # service_principal: "ListManagedViewsInputServicePrincipalString",
1246
+ # })
1247
+ #
1248
+ # @example Response structure
1249
+ #
1250
+ # resp.managed_views #=> Array
1251
+ # resp.managed_views[0] #=> String
1252
+ # resp.next_token #=> String
1253
+ #
1254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ListManagedViews AWS API Documentation
1255
+ #
1256
+ # @overload list_managed_views(params = {})
1257
+ # @param [Hash] params ({})
1258
+ def list_managed_views(params = {}, options = {})
1259
+ req = build_request(:list_managed_views, params)
1260
+ req.send_request(options)
1261
+ end
1262
+
1132
1263
  # Returns a list of resources and their details that match the specified
1133
1264
  # criteria. This query must use a view. If you don’t explicitly specify
1134
1265
  # a view, then Resource Explorer uses the default view for the Amazon
@@ -1758,7 +1889,7 @@ module Aws::ResourceExplorer2
1758
1889
  tracer: tracer
1759
1890
  )
1760
1891
  context[:gem_name] = 'aws-sdk-resourceexplorer2'
1761
- context[:gem_version] = '1.29.0'
1892
+ context[:gem_version] = '1.31.0'
1762
1893
  Seahorse::Client::Request.new(handlers, context)
1763
1894
  end
1764
1895
 
@@ -42,6 +42,9 @@ module Aws::ResourceExplorer2
42
42
  GetAccountLevelServiceConfigurationOutput = Shapes::StructureShape.new(name: 'GetAccountLevelServiceConfigurationOutput')
43
43
  GetDefaultViewOutput = Shapes::StructureShape.new(name: 'GetDefaultViewOutput')
44
44
  GetIndexOutput = Shapes::StructureShape.new(name: 'GetIndexOutput')
45
+ GetManagedViewInput = Shapes::StructureShape.new(name: 'GetManagedViewInput')
46
+ GetManagedViewInputManagedViewArnString = Shapes::StringShape.new(name: 'GetManagedViewInputManagedViewArnString')
47
+ GetManagedViewOutput = Shapes::StructureShape.new(name: 'GetManagedViewOutput')
45
48
  GetViewInput = Shapes::StructureShape.new(name: 'GetViewInput')
46
49
  GetViewInputViewArnString = Shapes::StringShape.new(name: 'GetViewInputViewArnString')
47
50
  GetViewOutput = Shapes::StructureShape.new(name: 'GetViewOutput')
@@ -63,6 +66,11 @@ module Aws::ResourceExplorer2
63
66
  ListIndexesInputNextTokenString = Shapes::StringShape.new(name: 'ListIndexesInputNextTokenString')
64
67
  ListIndexesInputRegionsList = Shapes::ListShape.new(name: 'ListIndexesInputRegionsList')
65
68
  ListIndexesOutput = Shapes::StructureShape.new(name: 'ListIndexesOutput')
69
+ ListManagedViewsInput = Shapes::StructureShape.new(name: 'ListManagedViewsInput')
70
+ ListManagedViewsInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListManagedViewsInputMaxResultsInteger')
71
+ ListManagedViewsInputNextTokenString = Shapes::StringShape.new(name: 'ListManagedViewsInputNextTokenString')
72
+ ListManagedViewsInputServicePrincipalString = Shapes::StringShape.new(name: 'ListManagedViewsInputServicePrincipalString')
73
+ ListManagedViewsOutput = Shapes::StructureShape.new(name: 'ListManagedViewsOutput')
66
74
  ListResourcesInput = Shapes::StructureShape.new(name: 'ListResourcesInput')
67
75
  ListResourcesInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListResourcesInputMaxResultsInteger')
68
76
  ListResourcesInputNextTokenString = Shapes::StringShape.new(name: 'ListResourcesInputNextTokenString')
@@ -79,6 +87,8 @@ module Aws::ResourceExplorer2
79
87
  ListViewsInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListViewsInputMaxResultsInteger')
80
88
  ListViewsOutput = Shapes::StructureShape.new(name: 'ListViewsOutput')
81
89
  Long = Shapes::IntegerShape.new(name: 'Long')
90
+ ManagedView = Shapes::StructureShape.new(name: 'ManagedView')
91
+ ManagedViewArnList = Shapes::ListShape.new(name: 'ManagedViewArnList')
82
92
  MemberIndex = Shapes::StructureShape.new(name: 'MemberIndex')
83
93
  MemberIndexList = Shapes::ListShape.new(name: 'MemberIndexList')
84
94
  OrgConfiguration = Shapes::StructureShape.new(name: 'OrgConfiguration')
@@ -202,6 +212,12 @@ module Aws::ResourceExplorer2
202
212
  GetIndexOutput.add_member(:type, Shapes::ShapeRef.new(shape: IndexType, location_name: "Type"))
203
213
  GetIndexOutput.struct_class = Types::GetIndexOutput
204
214
 
215
+ GetManagedViewInput.add_member(:managed_view_arn, Shapes::ShapeRef.new(shape: GetManagedViewInputManagedViewArnString, required: true, location_name: "ManagedViewArn"))
216
+ GetManagedViewInput.struct_class = Types::GetManagedViewInput
217
+
218
+ GetManagedViewOutput.add_member(:managed_view, Shapes::ShapeRef.new(shape: ManagedView, location_name: "ManagedView"))
219
+ GetManagedViewOutput.struct_class = Types::GetManagedViewOutput
220
+
205
221
  GetViewInput.add_member(:view_arn, Shapes::ShapeRef.new(shape: GetViewInputViewArnString, required: true, location_name: "ViewArn"))
206
222
  GetViewInput.struct_class = Types::GetViewInput
207
223
 
@@ -247,6 +263,15 @@ module Aws::ResourceExplorer2
247
263
  ListIndexesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
248
264
  ListIndexesOutput.struct_class = Types::ListIndexesOutput
249
265
 
266
+ ListManagedViewsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListManagedViewsInputMaxResultsInteger, location_name: "MaxResults"))
267
+ ListManagedViewsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ListManagedViewsInputNextTokenString, location_name: "NextToken"))
268
+ ListManagedViewsInput.add_member(:service_principal, Shapes::ShapeRef.new(shape: ListManagedViewsInputServicePrincipalString, location_name: "ServicePrincipal"))
269
+ ListManagedViewsInput.struct_class = Types::ListManagedViewsInput
270
+
271
+ ListManagedViewsOutput.add_member(:managed_views, Shapes::ShapeRef.new(shape: ManagedViewArnList, location_name: "ManagedViews"))
272
+ ListManagedViewsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
273
+ ListManagedViewsOutput.struct_class = Types::ListManagedViewsOutput
274
+
250
275
  ListResourcesInput.add_member(:filters, Shapes::ShapeRef.new(shape: SearchFilter, location_name: "Filters"))
251
276
  ListResourcesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListResourcesInputMaxResultsInteger, location_name: "MaxResults"))
252
277
  ListResourcesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ListResourcesInputNextTokenString, location_name: "NextToken"))
@@ -280,6 +305,20 @@ module Aws::ResourceExplorer2
280
305
  ListViewsOutput.add_member(:views, Shapes::ShapeRef.new(shape: ViewArnList, location_name: "Views"))
281
306
  ListViewsOutput.struct_class = Types::ListViewsOutput
282
307
 
308
+ ManagedView.add_member(:filters, Shapes::ShapeRef.new(shape: SearchFilter, location_name: "Filters"))
309
+ ManagedView.add_member(:included_properties, Shapes::ShapeRef.new(shape: IncludedPropertyList, location_name: "IncludedProperties"))
310
+ ManagedView.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "LastUpdatedAt"))
311
+ ManagedView.add_member(:managed_view_arn, Shapes::ShapeRef.new(shape: String, location_name: "ManagedViewArn"))
312
+ ManagedView.add_member(:managed_view_name, Shapes::ShapeRef.new(shape: String, location_name: "ManagedViewName"))
313
+ ManagedView.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "Owner"))
314
+ ManagedView.add_member(:resource_policy, Shapes::ShapeRef.new(shape: String, location_name: "ResourcePolicy"))
315
+ ManagedView.add_member(:scope, Shapes::ShapeRef.new(shape: String, location_name: "Scope"))
316
+ ManagedView.add_member(:trusted_service, Shapes::ShapeRef.new(shape: String, location_name: "TrustedService"))
317
+ ManagedView.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
318
+ ManagedView.struct_class = Types::ManagedView
319
+
320
+ ManagedViewArnList.member = Shapes::ShapeRef.new(shape: String)
321
+
283
322
  MemberIndex.add_member(:account_id, Shapes::ShapeRef.new(shape: String, location_name: "AccountId"))
284
323
  MemberIndex.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "Arn"))
285
324
  MemberIndex.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
@@ -560,6 +599,20 @@ module Aws::ResourceExplorer2
560
599
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
561
600
  end)
562
601
 
602
+ api.add_operation(:get_managed_view, Seahorse::Model::Operation.new.tap do |o|
603
+ o.name = "GetManagedView"
604
+ o.http_method = "POST"
605
+ o.http_request_uri = "/GetManagedView"
606
+ o.input = Shapes::ShapeRef.new(shape: GetManagedViewInput)
607
+ o.output = Shapes::ShapeRef.new(shape: GetManagedViewOutput)
608
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
609
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
610
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
611
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
612
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
613
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
614
+ end)
615
+
563
616
  api.add_operation(:get_view, Seahorse::Model::Operation.new.tap do |o|
564
617
  o.name = "GetView"
565
618
  o.http_method = "POST"
@@ -610,6 +663,25 @@ module Aws::ResourceExplorer2
610
663
  )
611
664
  end)
612
665
 
666
+ api.add_operation(:list_managed_views, Seahorse::Model::Operation.new.tap do |o|
667
+ o.name = "ListManagedViews"
668
+ o.http_method = "POST"
669
+ o.http_request_uri = "/ListManagedViews"
670
+ o.input = Shapes::ShapeRef.new(shape: ListManagedViewsInput)
671
+ o.output = Shapes::ShapeRef.new(shape: ListManagedViewsOutput)
672
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
673
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
674
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
675
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
676
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
677
+ o[:pager] = Aws::Pager.new(
678
+ limit_key: "max_results",
679
+ tokens: {
680
+ "next_token" => "next_token"
681
+ }
682
+ )
683
+ end)
684
+
613
685
  api.add_operation(:list_resources, Seahorse::Model::Operation.new.tap do |o|
614
686
  o.name = "ListResources"
615
687
  o.http_method = "POST"
@@ -479,6 +479,30 @@ module Aws::ResourceExplorer2
479
479
  include Aws::Structure
480
480
  end
481
481
 
482
+ # @!attribute [rw] managed_view_arn
483
+ # The Amazon resource name (ARN) of the managed view.
484
+ # @return [String]
485
+ #
486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/GetManagedViewInput AWS API Documentation
487
+ #
488
+ class GetManagedViewInput < Struct.new(
489
+ :managed_view_arn)
490
+ SENSITIVE = []
491
+ include Aws::Structure
492
+ end
493
+
494
+ # @!attribute [rw] managed_view
495
+ # Details about the specified managed view.
496
+ # @return [Types::ManagedView]
497
+ #
498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/GetManagedViewOutput AWS API Documentation
499
+ #
500
+ class GetManagedViewOutput < Struct.new(
501
+ :managed_view)
502
+ SENSITIVE = []
503
+ include Aws::Structure
504
+ end
505
+
482
506
  # @!attribute [rw] view_arn
483
507
  # The [Amazon resource name (ARN)][1] of the view that you want
484
508
  # information about.
@@ -732,6 +756,70 @@ module Aws::ResourceExplorer2
732
756
  include Aws::Structure
733
757
  end
734
758
 
759
+ # @!attribute [rw] max_results
760
+ # The maximum number of results that you want included on each page of
761
+ # the response. If you do not include this parameter, it defaults to a
762
+ # value appropriate to the operation. If additional items exist beyond
763
+ # those included in the current response, the `NextToken` response
764
+ # element is present and has a value (is not null). Include that value
765
+ # as the `NextToken` request parameter in the next call to the
766
+ # operation to get the next part of the results.
767
+ #
768
+ # <note markdown="1"> An API operation can return fewer results than the maximum even when
769
+ # there are more results available. You should check `NextToken` after
770
+ # every operation to ensure that you receive all of the results.
771
+ #
772
+ # </note>
773
+ # @return [Integer]
774
+ #
775
+ # @!attribute [rw] next_token
776
+ # The parameter for receiving additional results if you receive a
777
+ # `NextToken` response in a previous request. A `NextToken` response
778
+ # indicates that more output is available. Set this parameter to the
779
+ # value of the previous call's `NextToken` response to indicate where
780
+ # the output should continue from. The pagination tokens expire after
781
+ # 24 hours.
782
+ # @return [String]
783
+ #
784
+ # @!attribute [rw] service_principal
785
+ # Specifies a service principal name. If specified, then the operation
786
+ # only returns the managed views that are managed by the input
787
+ # service.
788
+ # @return [String]
789
+ #
790
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ListManagedViewsInput AWS API Documentation
791
+ #
792
+ class ListManagedViewsInput < Struct.new(
793
+ :max_results,
794
+ :next_token,
795
+ :service_principal)
796
+ SENSITIVE = []
797
+ include Aws::Structure
798
+ end
799
+
800
+ # @!attribute [rw] managed_views
801
+ # The list of managed views available in the Amazon Web Services
802
+ # Region in which you called this operation.
803
+ # @return [Array<String>]
804
+ #
805
+ # @!attribute [rw] next_token
806
+ # If present, indicates that more output is available than is included
807
+ # in the current response. Use this value in the `NextToken` request
808
+ # parameter in a subsequent call to the operation to get the next part
809
+ # of the output. You should repeat this until the `NextToken` response
810
+ # element comes back as `null`. The pagination tokens expire after 24
811
+ # hours.
812
+ # @return [String]
813
+ #
814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ListManagedViewsOutput AWS API Documentation
815
+ #
816
+ class ListManagedViewsOutput < Struct.new(
817
+ :managed_views,
818
+ :next_token)
819
+ SENSITIVE = []
820
+ include Aws::Structure
821
+ end
822
+
735
823
  # @!attribute [rw] filters
736
824
  # A search filter defines which resources can be part of a search
737
825
  # query result set.
@@ -955,6 +1043,91 @@ module Aws::ResourceExplorer2
955
1043
  include Aws::Structure
956
1044
  end
957
1045
 
1046
+ # An Amazon Web Services-managed view is how other Amazon Web Services
1047
+ # services can access resource information indexed by Resource Explorer
1048
+ # for your Amazon Web Services account or organization with your
1049
+ # consent. For more information, see [Managed views][1].
1050
+ #
1051
+ #
1052
+ #
1053
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html
1054
+ #
1055
+ # @!attribute [rw] filters
1056
+ # A search filter defines which resources can be part of a search
1057
+ # query result set.
1058
+ # @return [Types::SearchFilter]
1059
+ #
1060
+ # @!attribute [rw] included_properties
1061
+ # A structure that contains additional information about the managed
1062
+ # view.
1063
+ # @return [Array<Types::IncludedProperty>]
1064
+ #
1065
+ # @!attribute [rw] last_updated_at
1066
+ # The date and time when this managed view was last modified.
1067
+ # @return [Time]
1068
+ #
1069
+ # @!attribute [rw] managed_view_arn
1070
+ # The [Amazon resource name (ARN)][1] of the managed view.
1071
+ #
1072
+ #
1073
+ #
1074
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1075
+ # @return [String]
1076
+ #
1077
+ # @!attribute [rw] managed_view_name
1078
+ # The name of the managed view.
1079
+ # @return [String]
1080
+ #
1081
+ # @!attribute [rw] owner
1082
+ # The Amazon Web Services account that owns this managed view.
1083
+ # @return [String]
1084
+ #
1085
+ # @!attribute [rw] resource_policy
1086
+ # The resource policy that defines access to the managed view. To
1087
+ # learn more about this policy, review [Managed views][1].
1088
+ #
1089
+ #
1090
+ #
1091
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html
1092
+ # @return [String]
1093
+ #
1094
+ # @!attribute [rw] scope
1095
+ # An [Amazon resource name (ARN)][1] of an Amazon Web Services account
1096
+ # or organization that specifies whether this managed view includes
1097
+ # resources from only the specified Amazon Web Services account or all
1098
+ # accounts in the specified organization.
1099
+ #
1100
+ #
1101
+ #
1102
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1103
+ # @return [String]
1104
+ #
1105
+ # @!attribute [rw] trusted_service
1106
+ # The service principal of the Amazon Web Services service that
1107
+ # created and manages the managed view.
1108
+ # @return [String]
1109
+ #
1110
+ # @!attribute [rw] version
1111
+ # The version of the managed view.
1112
+ # @return [String]
1113
+ #
1114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ManagedView AWS API Documentation
1115
+ #
1116
+ class ManagedView < Struct.new(
1117
+ :filters,
1118
+ :included_properties,
1119
+ :last_updated_at,
1120
+ :managed_view_arn,
1121
+ :managed_view_name,
1122
+ :owner,
1123
+ :resource_policy,
1124
+ :scope,
1125
+ :trusted_service,
1126
+ :version)
1127
+ SENSITIVE = [:filters]
1128
+ include Aws::Structure
1129
+ end
1130
+
958
1131
  # An index is the data store used by Amazon Web Services Resource
959
1132
  # Explorer to hold information about your Amazon Web Services resources
960
1133
  # that the service discovers.
@@ -1061,7 +1234,7 @@ module Aws::ResourceExplorer2
1061
1234
  # @return [String]
1062
1235
  #
1063
1236
  # @!attribute [rw] service
1064
- # The Amazon Web Servicesservice that owns the resource and is
1237
+ # The Amazon Web Services service that owns the resource and is
1065
1238
  # responsible for creating and updating it.
1066
1239
  # @return [String]
1067
1240
  #
@@ -1315,7 +1488,7 @@ module Aws::ResourceExplorer2
1315
1488
  # @return [String]
1316
1489
  #
1317
1490
  # @!attribute [rw] service
1318
- # The Amazon Web Servicesservice that is associated with the resource
1491
+ # The Amazon Web Services service that is associated with the resource
1319
1492
  # type. This is the primary service that lets you create and interact
1320
1493
  # with resources of this type.
1321
1494
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::ResourceExplorer2
54
54
  autoload :EndpointProvider, 'aws-sdk-resourceexplorer2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-resourceexplorer2/endpoints'
56
56
 
57
- GEM_VERSION = '1.29.0'
57
+ GEM_VERSION = '1.31.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -187,6 +189,16 @@ module Aws
187
189
  def get_index: () -> _GetIndexResponseSuccess
188
190
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIndexResponseSuccess
189
191
 
192
+ interface _GetManagedViewResponseSuccess
193
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedViewOutput]
194
+ def managed_view: () -> Types::ManagedView
195
+ end
196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_managed_view-instance_method
197
+ def get_managed_view: (
198
+ managed_view_arn: ::String
199
+ ) -> _GetManagedViewResponseSuccess
200
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedViewResponseSuccess
201
+
190
202
  interface _GetViewResponseSuccess
191
203
  include ::Seahorse::Client::_ResponseSuccess[Types::GetViewOutput]
192
204
  def tags: () -> ::Hash[::String, ::String]
@@ -225,6 +237,19 @@ module Aws
225
237
  ) -> _ListIndexesForMembersResponseSuccess
226
238
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexesForMembersResponseSuccess
227
239
 
240
+ interface _ListManagedViewsResponseSuccess
241
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedViewsOutput]
242
+ def managed_views: () -> ::Array[::String]
243
+ def next_token: () -> ::String
244
+ end
245
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_managed_views-instance_method
246
+ def list_managed_views: (
247
+ ?max_results: ::Integer,
248
+ ?next_token: ::String,
249
+ ?service_principal: ::String
250
+ ) -> _ListManagedViewsResponseSuccess
251
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedViewsResponseSuccess
252
+
228
253
  interface _ListResourcesResponseSuccess
229
254
  include ::Seahorse::Client::_ResponseSuccess[Types::ListResourcesOutput]
230
255
  def next_token: () -> ::String
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -117,6 +117,16 @@ module Aws::ResourceExplorer2
117
117
  SENSITIVE: [:tags]
118
118
  end
119
119
 
120
+ class GetManagedViewInput
121
+ attr_accessor managed_view_arn: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class GetManagedViewOutput
126
+ attr_accessor managed_view: Types::ManagedView
127
+ SENSITIVE: []
128
+ end
129
+
120
130
  class GetViewInput
121
131
  attr_accessor view_arn: ::String
122
132
  SENSITIVE: []
@@ -172,6 +182,19 @@ module Aws::ResourceExplorer2
172
182
  SENSITIVE: []
173
183
  end
174
184
 
185
+ class ListManagedViewsInput
186
+ attr_accessor max_results: ::Integer
187
+ attr_accessor next_token: ::String
188
+ attr_accessor service_principal: ::String
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class ListManagedViewsOutput
193
+ attr_accessor managed_views: ::Array[::String]
194
+ attr_accessor next_token: ::String
195
+ SENSITIVE: []
196
+ end
197
+
175
198
  class ListResourcesInput
176
199
  attr_accessor filters: Types::SearchFilter
177
200
  attr_accessor max_results: ::Integer
@@ -221,6 +244,20 @@ module Aws::ResourceExplorer2
221
244
  SENSITIVE: []
222
245
  end
223
246
 
247
+ class ManagedView
248
+ attr_accessor filters: Types::SearchFilter
249
+ attr_accessor included_properties: ::Array[Types::IncludedProperty]
250
+ attr_accessor last_updated_at: ::Time
251
+ attr_accessor managed_view_arn: ::String
252
+ attr_accessor managed_view_name: ::String
253
+ attr_accessor owner: ::String
254
+ attr_accessor resource_policy: ::String
255
+ attr_accessor scope: ::String
256
+ attr_accessor trusted_service: ::String
257
+ attr_accessor version: ::String
258
+ SENSITIVE: [:filters]
259
+ end
260
+
224
261
  class MemberIndex
225
262
  attr_accessor account_id: ::String
226
263
  attr_accessor arn: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resourceexplorer2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement