aws-sdk-resourceexplorer2 1.1.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a99aa487e69de778a7e409a2914b4a9064a0ccf8024e597deade7ea21885a00c
4
- data.tar.gz: dd16447a63892844f167dfa42276872f6b2841f7a3792eba11d3ed14325ddddd
3
+ metadata.gz: ba6c3ab43f86d910c9d6eb433793c25db88ea04b164d9cd57687f7a813359854
4
+ data.tar.gz: 2b6b7a6a36f1f284d1d1382122b8ee4d6148b57ea6f56b588071f6fe43d2fe5a
5
5
  SHA512:
6
- metadata.gz: e3b0124907ebef9699526aaeb7c535cd8f4cc7417d92f0dc9dc78086ede3e70c6e46446e2c9afedd5965414e1dee57b2424b8adbfabe2269e18a1ec1c5d759eb
7
- data.tar.gz: b37970f0518f968217457cefb3fb40e1b0bb9cb2f736db063605a8ed09ac053d41087701c00f516eff3719d2d42e7fb21a68182dc205b467cceb7bf857491ded
6
+ metadata.gz: 4b11f3cfff1bd4f72f6d588f38674c897ce5eba94fbf2c475f974422b2ad63a9fe5d83c7b145f3cf81e80b33f6fa62cab781ef358011c7f6b9c0cce0264e8ba7
7
+ data.tar.gz: 29e1eeaffe2aea4c59cf58aabbe070523df814592e65501800e6e10bbb9eb63e05258dd07c152c1d6f8847e74b36175002e84f9543500965bc1872be450f2b80
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
11
+ 1.2.0 (2022-12-20)
12
+ ------------------
13
+
14
+ * Feature - Documentation updates for AWS Resource Explorer.
15
+
4
16
  1.1.0 (2022-11-10)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.3.0
@@ -505,7 +505,7 @@ module Aws::ResourceExplorer2
505
505
  # This permission is required only the first time you create an index
506
506
  # to turn on Resource Explorer in the account. Resource Explorer uses
507
507
  # this to create the [service-linked role needed to index the
508
- # resources in your account][4]. Resource Explorer uses the same
508
+ # resources in your account][3]. Resource Explorer uses the same
509
509
  # service-linked role for all additional indexes you create
510
510
  # afterwards.
511
511
  #
@@ -513,8 +513,7 @@ module Aws::ResourceExplorer2
513
513
  #
514
514
  # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html
515
515
  # [2]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-service-activate.html
516
- # [3]: https://docs.aws.amazon.com/arexug/mainline/security_iam_service-linked-roles.html
517
- # [4]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/security_iam_service-linked-roles.html
516
+ # [3]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/security_iam_service-linked-roles.html
518
517
  #
519
518
  # @option params [String] :client_token
520
519
  # This value helps ensure idempotency. Resource Explorer uses this value
@@ -577,7 +576,7 @@ module Aws::ResourceExplorer2
577
576
  #
578
577
  #
579
578
  #
580
- # [1]: https://docs.aws.amazon.com/arexug/mainline/manage-views.html
579
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-views.html
581
580
  # [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
582
581
  #
583
582
  # @option params [String] :client_token
@@ -684,6 +683,14 @@ module Aws::ResourceExplorer2
684
683
  # check to see when the actions are complete by using the GetIndex
685
684
  # operation and checking the `Status` response value.
686
685
  #
686
+ # <note markdown="1"> If the index you delete is the aggregator index for the Amazon Web
687
+ # Services account, you must wait 24 hours before you can promote
688
+ # another local index to be the aggregator index for the account. Users
689
+ # can't perform account-wide searches using Resource Explorer until
690
+ # another aggregator index is configured.
691
+ #
692
+ # </note>
693
+ #
687
694
  # @option params [required, String] :arn
688
695
  # The [Amazon resource name (ARN)][1] of the index that you want to
689
696
  # delete.
@@ -1343,7 +1350,7 @@ module Aws::ResourceExplorer2
1343
1350
  #
1344
1351
  #
1345
1352
  #
1346
- # [1]: https://docs.aws.amazon.com/arexug/mainline/manage-aggregator-region.html
1353
+ # [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html
1347
1354
  #
1348
1355
  # @option params [required, String] :arn
1349
1356
  # The [Amazon resource name (ARN)][1] of the index that you want to
@@ -1485,7 +1492,7 @@ module Aws::ResourceExplorer2
1485
1492
  params: params,
1486
1493
  config: config)
1487
1494
  context[:gem_name] = 'aws-sdk-resourceexplorer2'
1488
- context[:gem_version] = '1.1.0'
1495
+ context[:gem_version] = '1.3.0'
1489
1496
  Seahorse::Client::Request.new(handlers, context)
1490
1497
  end
1491
1498
 
@@ -43,6 +43,9 @@ module Aws::ResourceExplorer2
43
43
 
44
44
  def initialize(options = {})
45
45
  self[:region] = options[:region]
46
+ if self[:region].nil?
47
+ raise ArgumentError, "Missing required EndpointParameter: :region"
48
+ end
46
49
  self[:use_fips] = options[:use_fips]
47
50
  self[:use_fips] = false if self[:use_fips].nil?
48
51
  if self[:use_fips].nil?
@@ -9,86 +9,36 @@
9
9
 
10
10
  module Aws::ResourceExplorer2
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_fips = parameters.use_fips
15
+ endpoint = parameters.endpoint
16
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
+ end
21
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
22
+ end
23
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
24
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
25
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
26
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
27
+ end
28
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
29
+ end
30
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
33
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
34
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
35
+ end
36
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
37
+ end
38
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
39
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
40
+ raise ArgumentError, 'No endpoint could be resolved'
24
41
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
42
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUZJUFMiOnsiYnVpbHRJ
35
- biI6IkFXUzo6VXNlRklQUyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0Ijpm
36
- YWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJl
37
- cXVlc3QgdG8gdGhlIEZJUFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50
38
- LiBJZiB0aGUgY29uZmlndXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEg
39
- RklQUyBjb21wbGlhbnQgZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1
40
- ZXN0IHdpbGwgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0s
41
- IkVuZHBvaW50Ijp7ImJ1aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWly
42
- ZWQiOmZhbHNlLCJkb2N1bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBv
43
- aW50IHVzZWQgdG8gc2VuZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5n
44
- In19LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0
45
- aW9uIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0
46
- aXRpb25SZXN1bHQifV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
47
- dGlvbnMiOlt7ImZuIjoiaXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2lu
48
- dCJ9XX0seyJmbiI6InBhcnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9p
49
- bnQifV0sImFzc2lnbiI6InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
50
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
51
- W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBD
52
- b25maWd1cmF0aW9uOiBGSVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5v
53
- dCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltd
54
- LCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoiRW5kcG9pbnQifSwicHJvcGVy
55
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
56
- ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
57
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
58
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
59
- dCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJy
60
- dWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
61
- YXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVl
62
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFs
63
- cyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVm
64
- IjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlw
65
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
66
- Ijp7InVybCI6Imh0dHBzOi8vcmVzb3VyY2UtZXhwbG9yZXItMi1maXBzLntS
67
- ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
68
- InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
69
- dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJs
70
- ZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIs
71
- InR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQi
72
- OnsidXJsIjoiaHR0cHM6Ly9yZXNvdXJjZS1leHBsb3Jlci0yLntSZWdpb259
73
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
74
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
75
- eyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
76
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
77
- IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
78
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
79
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
80
- UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
81
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
82
- dHBzOi8vcmVzb3VyY2UtZXhwbG9yZXItMi1maXBzLntSZWdpb259LntQYXJ0
83
- aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
84
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
85
- XSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9u
86
- IGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJj
87
- b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yZXNv
88
- dXJjZS1leHBsb3Jlci0yLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5z
89
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
90
- OiJlbmRwb2ludCJ9XX1dfV19XX0=
91
-
92
- JSON
93
43
  end
94
44
  end
@@ -24,13 +24,6 @@ module Aws::ResourceExplorer2
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
- # @note When making an API call, you may pass AssociateDefaultViewInput
28
- # data as a hash:
29
- #
30
- # {
31
- # view_arn: "AssociateDefaultViewInputViewArnString", # required
32
- # }
33
- #
34
27
  # @!attribute [rw] view_arn
35
28
  # The [Amazon resource name (ARN)][1] of the view to set as the
36
29
  # default for the Amazon Web Services Region and Amazon Web Services
@@ -94,13 +87,6 @@ module Aws::ResourceExplorer2
94
87
  include Aws::Structure
95
88
  end
96
89
 
97
- # @note When making an API call, you may pass BatchGetViewInput
98
- # data as a hash:
99
- #
100
- # {
101
- # view_arns: ["String"],
102
- # }
103
- #
104
90
  # @!attribute [rw] view_arns
105
91
  # A list of [Amazon resource names (ARNs)][1] that identify the views
106
92
  # you want details for.
@@ -152,16 +138,6 @@ module Aws::ResourceExplorer2
152
138
  include Aws::Structure
153
139
  end
154
140
 
155
- # @note When making an API call, you may pass CreateIndexInput
156
- # data as a hash:
157
- #
158
- # {
159
- # client_token: "String",
160
- # tags: {
161
- # "String" => "String",
162
- # },
163
- # }
164
- #
165
141
  # @!attribute [rw] client_token
166
142
  # This value helps ensure idempotency. Resource Explorer uses this
167
143
  # value to prevent the accidental creation of duplicate versions. We
@@ -223,25 +199,6 @@ module Aws::ResourceExplorer2
223
199
  include Aws::Structure
224
200
  end
225
201
 
226
- # @note When making an API call, you may pass CreateViewInput
227
- # data as a hash:
228
- #
229
- # {
230
- # client_token: "CreateViewInputClientTokenString",
231
- # filters: {
232
- # filter_string: "SearchFilterFilterStringString", # required
233
- # },
234
- # included_properties: [
235
- # {
236
- # name: "IncludedPropertyNameString", # required
237
- # },
238
- # ],
239
- # tags: {
240
- # "String" => "String",
241
- # },
242
- # view_name: "ViewName", # required
243
- # }
244
- #
245
202
  # @!attribute [rw] client_token
246
203
  # This value helps ensure idempotency. Resource Explorer uses this
247
204
  # value to prevent the accidental creation of duplicate versions. We
@@ -326,13 +283,6 @@ module Aws::ResourceExplorer2
326
283
  include Aws::Structure
327
284
  end
328
285
 
329
- # @note When making an API call, you may pass DeleteIndexInput
330
- # data as a hash:
331
- #
332
- # {
333
- # arn: "String", # required
334
- # }
335
- #
336
286
  # @!attribute [rw] arn
337
287
  # The [Amazon resource name (ARN)][1] of the index that you want to
338
288
  # delete.
@@ -382,13 +332,6 @@ module Aws::ResourceExplorer2
382
332
  include Aws::Structure
383
333
  end
384
334
 
385
- # @note When making an API call, you may pass DeleteViewInput
386
- # data as a hash:
387
- #
388
- # {
389
- # view_arn: "DeleteViewInputViewArnString", # required
390
- # }
391
- #
392
335
  # @!attribute [rw] view_arn
393
336
  # The [Amazon resource name (ARN)][1] of the view that you want to
394
337
  # delete.
@@ -458,23 +401,24 @@ module Aws::ResourceExplorer2
458
401
  # @return [Time]
459
402
  #
460
403
  # @!attribute [rw] replicating_from
461
- # If this index is `Type=AGGREGATOR`, then this response value
462
- # contains a list of the Amazon Web Services Regions that replicate
463
- # their content to the index in this Region. Not present for a local
464
- # index.
404
+ # This response value is present only if this index is
405
+ # `Type=AGGREGATOR`.
406
+ #
407
+ # A list of the Amazon Web Services Regions that replicate their
408
+ # content to the index in this Region.
465
409
  # @return [Array<String>]
466
410
  #
467
411
  # @!attribute [rw] replicating_to
468
- # Identifies the Amazon Web Services Region that has an index set to
469
- # `Type=AGGREGATOR`, if one exists. If it does, then the Region you
470
- # called this operation in replicates its index information to the
471
- # Region specified in this response value. Not present if there isn't
472
- # an aggregator index in the account.
412
+ # This response value is present only if this index is `Type=LOCAL`.
413
+ #
414
+ # The Amazon Web Services Region that contains the aggregator index,
415
+ # if one exists. If an aggregator index does exist then the Region in
416
+ # which you called this operation replicates its index information to
417
+ # the Region specified in this response value.
473
418
  # @return [Array<String>]
474
419
  #
475
420
  # @!attribute [rw] state
476
- # Indicates the current state of the index in this Amazon Web Services
477
- # Region.
421
+ # The current state of the index in this Amazon Web Services Region.
478
422
  # @return [String]
479
423
  #
480
424
  # @!attribute [rw] tags
@@ -482,10 +426,9 @@ module Aws::ResourceExplorer2
482
426
  # @return [Hash<String,String>]
483
427
  #
484
428
  # @!attribute [rw] type
485
- # Specifies the type of the index in this Region. For information
486
- # about the aggregator index and how it differs from a local index,
487
- # see [Turning on cross-Region search by creating an aggregator
488
- # index][1].
429
+ # The type of the index in this Region. For information about the
430
+ # aggregator index and how it differs from a local index, see [Turning
431
+ # on cross-Region search by creating an aggregator index][1].
489
432
  #
490
433
  #
491
434
  #
@@ -507,13 +450,6 @@ module Aws::ResourceExplorer2
507
450
  include Aws::Structure
508
451
  end
509
452
 
510
- # @note When making an API call, you may pass GetViewInput
511
- # data as a hash:
512
- #
513
- # {
514
- # view_arn: "GetViewInputViewArnString", # required
515
- # }
516
- #
517
453
  # @!attribute [rw] view_arn
518
454
  # The [Amazon resource name (ARN)][1] of the view that you want
519
455
  # information about.
@@ -553,13 +489,6 @@ module Aws::ResourceExplorer2
553
489
  # property in search results, and filter your search results based on
554
490
  # the value of the property.
555
491
  #
556
- # @note When making an API call, you may pass IncludedProperty
557
- # data as a hash:
558
- #
559
- # {
560
- # name: "IncludedPropertyNameString", # required
561
- # }
562
- #
563
492
  # @!attribute [rw] name
564
493
  # The name of the property that is included in this view.
565
494
  #
@@ -642,16 +571,6 @@ module Aws::ResourceExplorer2
642
571
  include Aws::Structure
643
572
  end
644
573
 
645
- # @note When making an API call, you may pass ListIndexesInput
646
- # data as a hash:
647
- #
648
- # {
649
- # max_results: 1,
650
- # next_token: "ListIndexesInputNextTokenString",
651
- # regions: ["String"],
652
- # type: "LOCAL", # accepts LOCAL, AGGREGATOR
653
- # }
654
- #
655
574
  # @!attribute [rw] max_results
656
575
  # The maximum number of results that you want included on each page of
657
576
  # the response. If you do not include this parameter, it defaults to a
@@ -720,14 +639,6 @@ module Aws::ResourceExplorer2
720
639
  include Aws::Structure
721
640
  end
722
641
 
723
- # @note When making an API call, you may pass ListSupportedResourceTypesInput
724
- # data as a hash:
725
- #
726
- # {
727
- # max_results: 1,
728
- # next_token: "String",
729
- # }
730
- #
731
642
  # @!attribute [rw] max_results
732
643
  # The maximum number of results that you want included on each page of
733
644
  # the response. If you do not include this parameter, it defaults to a
@@ -782,13 +693,6 @@ module Aws::ResourceExplorer2
782
693
  include Aws::Structure
783
694
  end
784
695
 
785
- # @note When making an API call, you may pass ListTagsForResourceInput
786
- # data as a hash:
787
- #
788
- # {
789
- # resource_arn: "String", # required
790
- # }
791
- #
792
696
  # @!attribute [rw] resource_arn
793
697
  # The [Amazon resource name (ARN)][1] of the view or index that you
794
698
  # want to attach tags to.
@@ -819,14 +723,6 @@ module Aws::ResourceExplorer2
819
723
  include Aws::Structure
820
724
  end
821
725
 
822
- # @note When making an API call, you may pass ListViewsInput
823
- # data as a hash:
824
- #
825
- # {
826
- # max_results: 1,
827
- # next_token: "String",
828
- # }
829
- #
830
726
  # @!attribute [rw] max_results
831
727
  # The maximum number of results that you want included on each page of
832
728
  # the response. If you do not include this parameter, it defaults to a
@@ -1017,13 +913,6 @@ module Aws::ResourceExplorer2
1017
913
  # A search filter defines which resources can be part of a search query
1018
914
  # result set.
1019
915
  #
1020
- # @note When making an API call, you may pass SearchFilter
1021
- # data as a hash:
1022
- #
1023
- # {
1024
- # filter_string: "SearchFilterFilterStringString", # required
1025
- # }
1026
- #
1027
916
  # @!attribute [rw] filter_string
1028
917
  # The string that contains the search keywords, prefixes, and
1029
918
  # operators to control the results that can be returned by a Search
@@ -1042,16 +931,6 @@ module Aws::ResourceExplorer2
1042
931
  include Aws::Structure
1043
932
  end
1044
933
 
1045
- # @note When making an API call, you may pass SearchInput
1046
- # data as a hash:
1047
- #
1048
- # {
1049
- # max_results: 1,
1050
- # next_token: "SearchInputNextTokenString",
1051
- # query_string: "QueryString", # required
1052
- # view_arn: "SearchInputViewArnString",
1053
- # }
1054
- #
1055
934
  # @!attribute [rw] max_results
1056
935
  # The maximum number of results that you want included on each page of
1057
936
  # the response. If you do not include this parameter, it defaults to a
@@ -1204,16 +1083,6 @@ module Aws::ResourceExplorer2
1204
1083
  include Aws::Structure
1205
1084
  end
1206
1085
 
1207
- # @note When making an API call, you may pass TagResourceInput
1208
- # data as a hash:
1209
- #
1210
- # {
1211
- # tags: {
1212
- # "String" => "String",
1213
- # },
1214
- # resource_arn: "String", # required
1215
- # }
1216
- #
1217
1086
  # @!attribute [rw] tags
1218
1087
  # A list of tag key and value pairs that you want to attach to the
1219
1088
  # specified view or index.
@@ -1270,14 +1139,6 @@ module Aws::ResourceExplorer2
1270
1139
  include Aws::Structure
1271
1140
  end
1272
1141
 
1273
- # @note When making an API call, you may pass UntagResourceInput
1274
- # data as a hash:
1275
- #
1276
- # {
1277
- # resource_arn: "String", # required
1278
- # tag_keys: ["String"], # required
1279
- # }
1280
- #
1281
1142
  # @!attribute [rw] resource_arn
1282
1143
  # The Amazon Resource Name (ARN) of the view or index that you want to
1283
1144
  # remove tags from.
@@ -1301,14 +1162,6 @@ module Aws::ResourceExplorer2
1301
1162
  #
1302
1163
  class UntagResourceOutput < Aws::EmptyStructure; end
1303
1164
 
1304
- # @note When making an API call, you may pass UpdateIndexTypeInput
1305
- # data as a hash:
1306
- #
1307
- # {
1308
- # arn: "String", # required
1309
- # type: "LOCAL", # required, accepts LOCAL, AGGREGATOR
1310
- # }
1311
- #
1312
1165
  # @!attribute [rw] arn
1313
1166
  # The [Amazon resource name (ARN)][1] of the index that you want to
1314
1167
  # update.
@@ -1371,21 +1224,6 @@ module Aws::ResourceExplorer2
1371
1224
  include Aws::Structure
1372
1225
  end
1373
1226
 
1374
- # @note When making an API call, you may pass UpdateViewInput
1375
- # data as a hash:
1376
- #
1377
- # {
1378
- # filters: {
1379
- # filter_string: "SearchFilterFilterStringString", # required
1380
- # },
1381
- # included_properties: [
1382
- # {
1383
- # name: "IncludedPropertyNameString", # required
1384
- # },
1385
- # ],
1386
- # view_arn: "UpdateViewInputViewArnString", # required
1387
- # }
1388
- #
1389
1227
  # @!attribute [rw] filters
1390
1228
  # An array of strings that specify which resources are included in the
1391
1229
  # results of queries made using this view. When you use this view in a
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-resourceexplorer2/customizations'
52
52
  # @!group service
53
53
  module Aws::ResourceExplorer2
54
54
 
55
- GEM_VERSION = '1.1.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
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.1.0
4
+ version: 1.3.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: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core