aws-sdk-resourceexplorer2 1.0.0 → 1.2.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resourceexplorer2/client.rb +38 -5
- data/lib/aws-sdk-resourceexplorer2/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-resourceexplorer2/endpoint_provider.rb +56 -57
- data/lib/aws-sdk-resourceexplorer2/types.rb +15 -177
- data/lib/aws-sdk-resourceexplorer2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b67053ecc407e56a0fee76fdd124666618b7465cd4f8afc44f317b3dae0410d
|
4
|
+
data.tar.gz: 0471ecebe4bbe0f9fc3a5f754890699a9b41e3104121729468585bfc3cfa79c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a5a9b4da7370bfba739be9fc0370f5d4f83f819523d28da0800f6235dcdd5e27ef7191e20a5bcc22f8204b0d81903603346ab8938a3faca59860a756cdc2a2d
|
7
|
+
data.tar.gz: 99a56811d3feab67680d4b06f164de276d702a21578943e5025b683b6006d7456165da900c553663db5ba16d2711dedf181b9df310fcbc57186dc1f33d7b73db
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.2.0 (2022-12-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for AWS Resource Explorer.
|
8
|
+
|
9
|
+
1.1.0 (2022-11-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Text only updates to some Resource Explorer descriptions.
|
13
|
+
|
4
14
|
1.0.0 (2022-11-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.0
|
@@ -482,13 +482,38 @@ module Aws::ResourceExplorer2
|
|
482
482
|
# that allows Resource Explorer to enumerate your resources to populate
|
483
483
|
# the index.
|
484
484
|
#
|
485
|
-
#
|
485
|
+
# * **Action**\: `resource-explorer-2:CreateIndex`
|
486
|
+
#
|
487
|
+
# **Resource**\: The ARN of the index (as it will exist after the
|
488
|
+
# operation completes) in the Amazon Web Services Region and account
|
489
|
+
# in which you're trying to create the index. Use the wildcard
|
490
|
+
# character (`*`) at the end of the string to match the eventual UUID.
|
491
|
+
# For example, the following `Resource` element restricts the role or
|
492
|
+
# user to creating an index in only the `us-east-2` Region of the
|
493
|
+
# specified account.
|
494
|
+
#
|
495
|
+
# `"Resource":
|
496
|
+
# "arn:aws:resource-explorer-2:us-west-2:<account-id>:index/*"`
|
497
|
+
#
|
498
|
+
# Alternatively, you can use `"Resource": "*"` to allow the role or
|
499
|
+
# user to create an index in any Region.
|
500
|
+
#
|
501
|
+
# * **Action**\: `iam:CreateServiceLinkedRole`
|
502
|
+
#
|
503
|
+
# **Resource**\: No specific resource (*).
|
504
|
+
#
|
505
|
+
# This permission is required only the first time you create an index
|
506
|
+
# to turn on Resource Explorer in the account. Resource Explorer uses
|
507
|
+
# this to create the [service-linked role needed to index the
|
508
|
+
# resources in your account][3]. Resource Explorer uses the same
|
509
|
+
# service-linked role for all additional indexes you create
|
510
|
+
# afterwards.
|
486
511
|
#
|
487
512
|
#
|
488
513
|
#
|
489
514
|
# [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html
|
490
515
|
# [2]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-service-activate.html
|
491
|
-
# [3]: https://docs.aws.amazon.com/
|
516
|
+
# [3]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/security_iam_service-linked-roles.html
|
492
517
|
#
|
493
518
|
# @option params [String] :client_token
|
494
519
|
# This value helps ensure idempotency. Resource Explorer uses this value
|
@@ -551,7 +576,7 @@ module Aws::ResourceExplorer2
|
|
551
576
|
#
|
552
577
|
#
|
553
578
|
#
|
554
|
-
# [1]: https://docs.aws.amazon.com/
|
579
|
+
# [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-views.html
|
555
580
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
556
581
|
#
|
557
582
|
# @option params [String] :client_token
|
@@ -658,6 +683,14 @@ module Aws::ResourceExplorer2
|
|
658
683
|
# check to see when the actions are complete by using the GetIndex
|
659
684
|
# operation and checking the `Status` response value.
|
660
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
|
+
#
|
661
694
|
# @option params [required, String] :arn
|
662
695
|
# The [Amazon resource name (ARN)][1] of the index that you want to
|
663
696
|
# delete.
|
@@ -1317,7 +1350,7 @@ module Aws::ResourceExplorer2
|
|
1317
1350
|
#
|
1318
1351
|
#
|
1319
1352
|
#
|
1320
|
-
# [1]: https://docs.aws.amazon.com/
|
1353
|
+
# [1]: https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html
|
1321
1354
|
#
|
1322
1355
|
# @option params [required, String] :arn
|
1323
1356
|
# The [Amazon resource name (ARN)][1] of the index that you want to
|
@@ -1459,7 +1492,7 @@ module Aws::ResourceExplorer2
|
|
1459
1492
|
params: params,
|
1460
1493
|
config: config)
|
1461
1494
|
context[:gem_name] = 'aws-sdk-resourceexplorer2'
|
1462
|
-
context[:gem_version] = '1.
|
1495
|
+
context[:gem_version] = '1.2.0'
|
1463
1496
|
Seahorse::Client::Request.new(handlers, context)
|
1464
1497
|
end
|
1465
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?
|
@@ -29,65 +29,64 @@ module Aws::ResourceExplorer2
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRklQUyI6eyJidWlsdElu
|
35
|
+
IjoiQVdTOjpVc2VGSVBTIiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZh
|
36
|
+
bHNlLCJkb2N1bWVudGF0aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVx
|
37
|
+
dWVzdCB0byB0aGUgRklQUy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQu
|
38
|
+
IElmIHRoZSBjb25maWd1cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBG
|
39
|
+
SVBTIGNvbXBsaWFudCBlbmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVl
|
40
|
+
c3Qgd2lsbCByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwi
|
41
|
+
RW5kcG9pbnQiOnsiYnVpbHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJl
|
42
|
+
ZCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9p
|
43
|
+
bnQgdXNlZCB0byBzZW5kIHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmci
|
44
|
+
fX0sInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRp
|
45
|
+
b24iLCJhcmd2IjpbeyJyZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRp
|
46
|
+
dGlvblJlc3VsdCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
47
|
+
aW9ucyI6W3siZm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50
|
48
|
+
In1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
|
49
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMi
|
50
|
+
fSx0cnVlXX1dLCJlcnJvciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQ
|
51
|
+
UyBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlw
|
52
|
+
ZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
|
53
|
+
Ijp7InJlZiI6IkVuZHBvaW50In0sInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
|
54
|
+
Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwi
|
55
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
|
56
|
+
b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
|
57
|
+
cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFs
|
58
|
+
U3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
59
|
+
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
|
60
|
+
ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
|
57
61
|
aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
|
58
62
|
ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
IGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJj
|
87
|
-
b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yZXNv
|
88
|
-
dXJjZS1leHBsb3Jlci0yLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5z
|
89
|
-
U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
|
90
|
-
OiJlbmRwb2ludCJ9XX1dfV19XX0=
|
63
|
+
dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
64
|
+
Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
65
|
+
L3Jlc291cmNlLWV4cGxvcmVyLTItZmlwcy57UmVnaW9ufS57UGFydGl0aW9u
|
66
|
+
UmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwi
|
67
|
+
aGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9u
|
68
|
+
cyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRp
|
69
|
+
dGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19
|
70
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
71
|
+
cmVzb3VyY2UtZXhwbG9yZXItMi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
|
72
|
+
I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
73
|
+
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10s
|
74
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
75
|
+
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVl
|
76
|
+
XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJm
|
77
|
+
biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0
|
78
|
+
ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0
|
79
|
+
c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
80
|
+
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Jlc291cmNlLWV4
|
81
|
+
cGxvcmVyLTItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
|
82
|
+
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
83
|
+
ZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBp
|
84
|
+
cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
85
|
+
IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
|
86
|
+
ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcmVzb3VyY2UtZXhwbG9yZXItMi57
|
87
|
+
UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
88
|
+
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX1d
|
89
|
+
fV19
|
91
90
|
|
92
91
|
JSON
|
93
92
|
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
|
-
#
|
462
|
-
#
|
463
|
-
#
|
464
|
-
#
|
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
|
-
#
|
469
|
-
#
|
470
|
-
#
|
471
|
-
#
|
472
|
-
#
|
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
|
-
#
|
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
|
-
#
|
486
|
-
#
|
487
|
-
#
|
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
|
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.
|
4
|
+
version: 1.2.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
|
+
date: 2022-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|