aws-sdk-cloudsearch 1.41.0 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearch/client.rb +1 -1
- data/lib/aws-sdk-cloudsearch/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-cloudsearch/types.rb +0 -601
- data/lib/aws-sdk-cloudsearch.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: 81f5ce9ae94106a5d6f71e79bd61bc40aba401060ad5c6b8c194796390723c60
|
4
|
+
data.tar.gz: 7b19955c0cfe3a081478ccafc4886eefa7951386e8df7d1576d30ed9921fd925
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db0e5693d4f394be22853d3530ccf1c18d9bf3d34b43189ddaff6818e293cf972dc7cade6cc39155e35f17906e23dc6acac2e94a6778b77f70cd5ffbdadc4252
|
7
|
+
data.tar.gz: 2006f3a73e7e556b17fee9f210b83c0957ddf2ab7605d67a15bf184e4e8226077f0fec24f5016d2dec76038ad0408ba1ff6b61b98eb810ad9eb66ab9deded347
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.42.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
|
+
|
4
11
|
1.41.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -273,4 +280,4 @@ Unreleased Changes
|
|
273
280
|
1.0.0.rc1 (2016-12-05)
|
274
281
|
------------------
|
275
282
|
|
276
|
-
* Feature - Initial preview release of the `aws-sdk-cloudsearch` gem.
|
283
|
+
* Feature - Initial preview release of the `aws-sdk-cloudsearch` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.42.0
|
@@ -1886,7 +1886,7 @@ module Aws::CloudSearch
|
|
1886
1886
|
params: params,
|
1887
1887
|
config: config)
|
1888
1888
|
context[:gem_name] = 'aws-sdk-cloudsearch'
|
1889
|
-
context[:gem_version] = '1.
|
1889
|
+
context[:gem_version] = '1.42.0'
|
1890
1890
|
Seahorse::Client::Request.new(handlers, context)
|
1891
1891
|
end
|
1892
1892
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::CloudSearch
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudsearch-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudsearch-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudsearch.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudsearch.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2Nsb3Vkc2VhcmNoLWZpcHMue1JlZ2lvbn0u
|
77
|
-
e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
|
78
|
-
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
|
79
|
-
ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBh
|
80
|
-
cmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
|
81
|
-
cnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
82
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
|
83
|
-
RklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
84
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
85
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
86
|
-
In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
87
|
-
W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
88
|
-
bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Nsb3Vk
|
89
|
-
c2VhcmNoLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
|
90
|
-
aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
|
91
|
-
ZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBp
|
92
|
-
cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
93
|
-
IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
|
94
|
-
OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNr
|
95
|
-
In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
|
96
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
|
97
|
-
ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
|
98
|
-
c3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
99
|
-
Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
100
|
-
L2Nsb3Vkc2VhcmNoLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0
|
101
|
-
YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
|
102
|
-
InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
|
103
|
-
OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
|
104
|
-
cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
|
105
|
-
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2xv
|
106
|
-
dWRzZWFyY2gue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9
|
107
|
-
IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
|
108
|
-
aW50In1dfV19
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|
@@ -38,17 +38,6 @@ module Aws::CloudSearch
|
|
38
38
|
# Synonyms, stopwords, and stemming options for an analysis scheme.
|
39
39
|
# Includes tokenization dictionary for Japanese.
|
40
40
|
#
|
41
|
-
# @note When making an API call, you may pass AnalysisOptions
|
42
|
-
# data as a hash:
|
43
|
-
#
|
44
|
-
# {
|
45
|
-
# synonyms: "String",
|
46
|
-
# stopwords: "String",
|
47
|
-
# stemming_dictionary: "String",
|
48
|
-
# japanese_tokenization_dictionary: "String",
|
49
|
-
# algorithmic_stemming: "none", # accepts none, minimal, light, full
|
50
|
-
# }
|
51
|
-
#
|
52
41
|
# @!attribute [rw] synonyms
|
53
42
|
# A JSON object that defines synonym groups and aliases. A synonym
|
54
43
|
# group is an array of arrays, where each sub-array is a group of
|
@@ -118,21 +107,6 @@ module Aws::CloudSearch
|
|
118
107
|
# scheme: `Synonyms`, `Stopwords`, `StemmingDictionary`,
|
119
108
|
# `JapaneseTokenizationDictionary` and `AlgorithmicStemming`.
|
120
109
|
#
|
121
|
-
# @note When making an API call, you may pass AnalysisScheme
|
122
|
-
# data as a hash:
|
123
|
-
#
|
124
|
-
# {
|
125
|
-
# analysis_scheme_name: "StandardName", # required
|
126
|
-
# analysis_scheme_language: "ar", # required, accepts ar, bg, ca, cs, da, de, el, en, es, eu, fa, fi, fr, ga, gl, he, hi, hu, hy, id, it, ja, ko, lv, mul, nl, no, pt, ro, ru, sv, th, tr, zh-Hans, zh-Hant
|
127
|
-
# analysis_options: {
|
128
|
-
# synonyms: "String",
|
129
|
-
# stopwords: "String",
|
130
|
-
# stemming_dictionary: "String",
|
131
|
-
# japanese_tokenization_dictionary: "String",
|
132
|
-
# algorithmic_stemming: "none", # accepts none, minimal, light, full
|
133
|
-
# },
|
134
|
-
# }
|
135
|
-
#
|
136
110
|
# @!attribute [rw] analysis_scheme_name
|
137
111
|
# Names must begin with a letter and can contain the following
|
138
112
|
# characters: a-z (lowercase), 0-9, and \_ (underscore).
|
@@ -217,13 +191,6 @@ module Aws::CloudSearch
|
|
217
191
|
# Container for the parameters to the `BuildSuggester` operation.
|
218
192
|
# Specifies the name of the domain you want to update.
|
219
193
|
#
|
220
|
-
# @note When making an API call, you may pass BuildSuggestersRequest
|
221
|
-
# data as a hash:
|
222
|
-
#
|
223
|
-
# {
|
224
|
-
# domain_name: "DomainName", # required
|
225
|
-
# }
|
226
|
-
#
|
227
194
|
# @!attribute [rw] domain_name
|
228
195
|
# A string that represents the name of a domain. Domain names are
|
229
196
|
# unique across the domains owned by an account within an AWS region.
|
@@ -253,13 +220,6 @@ module Aws::CloudSearch
|
|
253
220
|
# Container for the parameters to the `CreateDomain` operation.
|
254
221
|
# Specifies a name for the new search domain.
|
255
222
|
#
|
256
|
-
# @note When making an API call, you may pass CreateDomainRequest
|
257
|
-
# data as a hash:
|
258
|
-
#
|
259
|
-
# {
|
260
|
-
# domain_name: "DomainName", # required
|
261
|
-
# }
|
262
|
-
#
|
263
223
|
# @!attribute [rw] domain_name
|
264
224
|
# A name for the domain you are creating. Allowed characters are a-z
|
265
225
|
# (lower-case letters), 0-9, and hyphen (-). Domain names must start
|
@@ -290,17 +250,6 @@ module Aws::CloudSearch
|
|
290
250
|
# `IndexFieldType` specifies the field is of type `date-array`. All
|
291
251
|
# options are enabled by default.
|
292
252
|
#
|
293
|
-
# @note When making an API call, you may pass DateArrayOptions
|
294
|
-
# data as a hash:
|
295
|
-
#
|
296
|
-
# {
|
297
|
-
# default_value: "FieldValue",
|
298
|
-
# source_fields: "FieldNameCommaList",
|
299
|
-
# facet_enabled: false,
|
300
|
-
# search_enabled: false,
|
301
|
-
# return_enabled: false,
|
302
|
-
# }
|
303
|
-
#
|
304
253
|
# @!attribute [rw] default_value
|
305
254
|
# A value to use for the field if the field isn't specified for a
|
306
255
|
# document.
|
@@ -338,18 +287,6 @@ module Aws::CloudSearch
|
|
338
287
|
# yyyy-mm-ddT00:00:00Z. Present if `IndexFieldType` specifies the field
|
339
288
|
# is of type `date`. All options are enabled by default.
|
340
289
|
#
|
341
|
-
# @note When making an API call, you may pass DateOptions
|
342
|
-
# data as a hash:
|
343
|
-
#
|
344
|
-
# {
|
345
|
-
# default_value: "FieldValue",
|
346
|
-
# source_field: "FieldName",
|
347
|
-
# facet_enabled: false,
|
348
|
-
# search_enabled: false,
|
349
|
-
# return_enabled: false,
|
350
|
-
# sort_enabled: false,
|
351
|
-
# }
|
352
|
-
#
|
353
290
|
# @!attribute [rw] default_value
|
354
291
|
# A value to use for the field if the field isn't specified for a
|
355
292
|
# document.
|
@@ -406,24 +343,6 @@ module Aws::CloudSearch
|
|
406
343
|
# Specifies the name of the domain you want to update and the analysis
|
407
344
|
# scheme configuration.
|
408
345
|
#
|
409
|
-
# @note When making an API call, you may pass DefineAnalysisSchemeRequest
|
410
|
-
# data as a hash:
|
411
|
-
#
|
412
|
-
# {
|
413
|
-
# domain_name: "DomainName", # required
|
414
|
-
# analysis_scheme: { # required
|
415
|
-
# analysis_scheme_name: "StandardName", # required
|
416
|
-
# analysis_scheme_language: "ar", # required, accepts ar, bg, ca, cs, da, de, el, en, es, eu, fa, fi, fr, ga, gl, he, hi, hu, hy, id, it, ja, ko, lv, mul, nl, no, pt, ro, ru, sv, th, tr, zh-Hans, zh-Hant
|
417
|
-
# analysis_options: {
|
418
|
-
# synonyms: "String",
|
419
|
-
# stopwords: "String",
|
420
|
-
# stemming_dictionary: "String",
|
421
|
-
# japanese_tokenization_dictionary: "String",
|
422
|
-
# algorithmic_stemming: "none", # accepts none, minimal, light, full
|
423
|
-
# },
|
424
|
-
# },
|
425
|
-
# }
|
426
|
-
#
|
427
346
|
# @!attribute [rw] domain_name
|
428
347
|
# A string that represents the name of a domain. Domain names are
|
429
348
|
# unique across the domains owned by an account within an AWS region.
|
@@ -463,17 +382,6 @@ module Aws::CloudSearch
|
|
463
382
|
# Specifies the name of the domain you want to update and the expression
|
464
383
|
# you want to configure.
|
465
384
|
#
|
466
|
-
# @note When making an API call, you may pass DefineExpressionRequest
|
467
|
-
# data as a hash:
|
468
|
-
#
|
469
|
-
# {
|
470
|
-
# domain_name: "DomainName", # required
|
471
|
-
# expression: { # required
|
472
|
-
# expression_name: "StandardName", # required
|
473
|
-
# expression_value: "ExpressionValue", # required
|
474
|
-
# },
|
475
|
-
# }
|
476
|
-
#
|
477
385
|
# @!attribute [rw] domain_name
|
478
386
|
# A string that represents the name of a domain. Domain names are
|
479
387
|
# unique across the domains owned by an account within an AWS region.
|
@@ -511,100 +419,6 @@ module Aws::CloudSearch
|
|
511
419
|
# Specifies the name of the domain you want to update and the index
|
512
420
|
# field configuration.
|
513
421
|
#
|
514
|
-
# @note When making an API call, you may pass DefineIndexFieldRequest
|
515
|
-
# data as a hash:
|
516
|
-
#
|
517
|
-
# {
|
518
|
-
# domain_name: "DomainName", # required
|
519
|
-
# index_field: { # required
|
520
|
-
# index_field_name: "DynamicFieldName", # required
|
521
|
-
# index_field_type: "int", # required, accepts int, double, literal, text, date, latlon, int-array, double-array, literal-array, text-array, date-array
|
522
|
-
# int_options: {
|
523
|
-
# default_value: 1,
|
524
|
-
# source_field: "FieldName",
|
525
|
-
# facet_enabled: false,
|
526
|
-
# search_enabled: false,
|
527
|
-
# return_enabled: false,
|
528
|
-
# sort_enabled: false,
|
529
|
-
# },
|
530
|
-
# double_options: {
|
531
|
-
# default_value: 1.0,
|
532
|
-
# source_field: "FieldName",
|
533
|
-
# facet_enabled: false,
|
534
|
-
# search_enabled: false,
|
535
|
-
# return_enabled: false,
|
536
|
-
# sort_enabled: false,
|
537
|
-
# },
|
538
|
-
# literal_options: {
|
539
|
-
# default_value: "FieldValue",
|
540
|
-
# source_field: "FieldName",
|
541
|
-
# facet_enabled: false,
|
542
|
-
# search_enabled: false,
|
543
|
-
# return_enabled: false,
|
544
|
-
# sort_enabled: false,
|
545
|
-
# },
|
546
|
-
# text_options: {
|
547
|
-
# default_value: "FieldValue",
|
548
|
-
# source_field: "FieldName",
|
549
|
-
# return_enabled: false,
|
550
|
-
# sort_enabled: false,
|
551
|
-
# highlight_enabled: false,
|
552
|
-
# analysis_scheme: "Word",
|
553
|
-
# },
|
554
|
-
# date_options: {
|
555
|
-
# default_value: "FieldValue",
|
556
|
-
# source_field: "FieldName",
|
557
|
-
# facet_enabled: false,
|
558
|
-
# search_enabled: false,
|
559
|
-
# return_enabled: false,
|
560
|
-
# sort_enabled: false,
|
561
|
-
# },
|
562
|
-
# lat_lon_options: {
|
563
|
-
# default_value: "FieldValue",
|
564
|
-
# source_field: "FieldName",
|
565
|
-
# facet_enabled: false,
|
566
|
-
# search_enabled: false,
|
567
|
-
# return_enabled: false,
|
568
|
-
# sort_enabled: false,
|
569
|
-
# },
|
570
|
-
# int_array_options: {
|
571
|
-
# default_value: 1,
|
572
|
-
# source_fields: "FieldNameCommaList",
|
573
|
-
# facet_enabled: false,
|
574
|
-
# search_enabled: false,
|
575
|
-
# return_enabled: false,
|
576
|
-
# },
|
577
|
-
# double_array_options: {
|
578
|
-
# default_value: 1.0,
|
579
|
-
# source_fields: "FieldNameCommaList",
|
580
|
-
# facet_enabled: false,
|
581
|
-
# search_enabled: false,
|
582
|
-
# return_enabled: false,
|
583
|
-
# },
|
584
|
-
# literal_array_options: {
|
585
|
-
# default_value: "FieldValue",
|
586
|
-
# source_fields: "FieldNameCommaList",
|
587
|
-
# facet_enabled: false,
|
588
|
-
# search_enabled: false,
|
589
|
-
# return_enabled: false,
|
590
|
-
# },
|
591
|
-
# text_array_options: {
|
592
|
-
# default_value: "FieldValue",
|
593
|
-
# source_fields: "FieldNameCommaList",
|
594
|
-
# return_enabled: false,
|
595
|
-
# highlight_enabled: false,
|
596
|
-
# analysis_scheme: "Word",
|
597
|
-
# },
|
598
|
-
# date_array_options: {
|
599
|
-
# default_value: "FieldValue",
|
600
|
-
# source_fields: "FieldNameCommaList",
|
601
|
-
# facet_enabled: false,
|
602
|
-
# search_enabled: false,
|
603
|
-
# return_enabled: false,
|
604
|
-
# },
|
605
|
-
# },
|
606
|
-
# }
|
607
|
-
#
|
608
422
|
# @!attribute [rw] domain_name
|
609
423
|
# A string that represents the name of a domain. Domain names are
|
610
424
|
# unique across the domains owned by an account within an AWS region.
|
@@ -640,21 +454,6 @@ module Aws::CloudSearch
|
|
640
454
|
# Specifies the name of the domain you want to update and the suggester
|
641
455
|
# configuration.
|
642
456
|
#
|
643
|
-
# @note When making an API call, you may pass DefineSuggesterRequest
|
644
|
-
# data as a hash:
|
645
|
-
#
|
646
|
-
# {
|
647
|
-
# domain_name: "DomainName", # required
|
648
|
-
# suggester: { # required
|
649
|
-
# suggester_name: "StandardName", # required
|
650
|
-
# document_suggester_options: { # required
|
651
|
-
# source_field: "FieldName", # required
|
652
|
-
# fuzzy_matching: "none", # accepts none, low, high
|
653
|
-
# sort_expression: "String",
|
654
|
-
# },
|
655
|
-
# },
|
656
|
-
# }
|
657
|
-
#
|
658
457
|
# @!attribute [rw] domain_name
|
659
458
|
# A string that represents the name of a domain. Domain names are
|
660
459
|
# unique across the domains owned by an account within an AWS region.
|
@@ -693,14 +492,6 @@ module Aws::CloudSearch
|
|
693
492
|
# Specifies the name of the domain you want to update and the analysis
|
694
493
|
# scheme you want to delete.
|
695
494
|
#
|
696
|
-
# @note When making an API call, you may pass DeleteAnalysisSchemeRequest
|
697
|
-
# data as a hash:
|
698
|
-
#
|
699
|
-
# {
|
700
|
-
# domain_name: "DomainName", # required
|
701
|
-
# analysis_scheme_name: "StandardName", # required
|
702
|
-
# }
|
703
|
-
#
|
704
495
|
# @!attribute [rw] domain_name
|
705
496
|
# A string that represents the name of a domain. Domain names are
|
706
497
|
# unique across the domains owned by an account within an AWS region.
|
@@ -735,13 +526,6 @@ module Aws::CloudSearch
|
|
735
526
|
# Container for the parameters to the `DeleteDomain` operation.
|
736
527
|
# Specifies the name of the domain you want to delete.
|
737
528
|
#
|
738
|
-
# @note When making an API call, you may pass DeleteDomainRequest
|
739
|
-
# data as a hash:
|
740
|
-
#
|
741
|
-
# {
|
742
|
-
# domain_name: "DomainName", # required
|
743
|
-
# }
|
744
|
-
#
|
745
529
|
# @!attribute [rw] domain_name
|
746
530
|
# The name of the domain you want to permanently delete.
|
747
531
|
# @return [String]
|
@@ -770,14 +554,6 @@ module Aws::CloudSearch
|
|
770
554
|
# Specifies the name of the domain you want to update and the name of
|
771
555
|
# the expression you want to delete.
|
772
556
|
#
|
773
|
-
# @note When making an API call, you may pass DeleteExpressionRequest
|
774
|
-
# data as a hash:
|
775
|
-
#
|
776
|
-
# {
|
777
|
-
# domain_name: "DomainName", # required
|
778
|
-
# expression_name: "StandardName", # required
|
779
|
-
# }
|
780
|
-
#
|
781
557
|
# @!attribute [rw] domain_name
|
782
558
|
# A string that represents the name of a domain. Domain names are
|
783
559
|
# unique across the domains owned by an account within an AWS region.
|
@@ -813,14 +589,6 @@ module Aws::CloudSearch
|
|
813
589
|
# Specifies the name of the domain you want to update and the name of
|
814
590
|
# the index field you want to delete.
|
815
591
|
#
|
816
|
-
# @note When making an API call, you may pass DeleteIndexFieldRequest
|
817
|
-
# data as a hash:
|
818
|
-
#
|
819
|
-
# {
|
820
|
-
# domain_name: "DomainName", # required
|
821
|
-
# index_field_name: "DynamicFieldName", # required
|
822
|
-
# }
|
823
|
-
#
|
824
592
|
# @!attribute [rw] domain_name
|
825
593
|
# A string that represents the name of a domain. Domain names are
|
826
594
|
# unique across the domains owned by an account within an AWS region.
|
@@ -856,14 +624,6 @@ module Aws::CloudSearch
|
|
856
624
|
# Specifies the name of the domain you want to update and name of the
|
857
625
|
# suggester you want to delete.
|
858
626
|
#
|
859
|
-
# @note When making an API call, you may pass DeleteSuggesterRequest
|
860
|
-
# data as a hash:
|
861
|
-
#
|
862
|
-
# {
|
863
|
-
# domain_name: "DomainName", # required
|
864
|
-
# suggester_name: "StandardName", # required
|
865
|
-
# }
|
866
|
-
#
|
867
627
|
# @!attribute [rw] domain_name
|
868
628
|
# A string that represents the name of a domain. Domain names are
|
869
629
|
# unique across the domains owned by an account within an AWS region.
|
@@ -902,15 +662,6 @@ module Aws::CloudSearch
|
|
902
662
|
# configuration and exclude any pending changes, set the `Deployed`
|
903
663
|
# option to `true`.
|
904
664
|
#
|
905
|
-
# @note When making an API call, you may pass DescribeAnalysisSchemesRequest
|
906
|
-
# data as a hash:
|
907
|
-
#
|
908
|
-
# {
|
909
|
-
# domain_name: "DomainName", # required
|
910
|
-
# analysis_scheme_names: ["StandardName"],
|
911
|
-
# deployed: false,
|
912
|
-
# }
|
913
|
-
#
|
914
665
|
# @!attribute [rw] domain_name
|
915
666
|
# The name of the domain you want to describe.
|
916
667
|
# @return [String]
|
@@ -950,14 +701,6 @@ module Aws::CloudSearch
|
|
950
701
|
# show the active configuration and exclude any pending changes, set the
|
951
702
|
# Deployed option to `true`.
|
952
703
|
#
|
953
|
-
# @note When making an API call, you may pass DescribeAvailabilityOptionsRequest
|
954
|
-
# data as a hash:
|
955
|
-
#
|
956
|
-
# {
|
957
|
-
# domain_name: "DomainName", # required
|
958
|
-
# deployed: false,
|
959
|
-
# }
|
960
|
-
#
|
961
704
|
# @!attribute [rw] domain_name
|
962
705
|
# The name of the domain you want to describe.
|
963
706
|
# @return [String]
|
@@ -994,14 +737,6 @@ module Aws::CloudSearch
|
|
994
737
|
# show the active configuration and exclude any pending changes, set the
|
995
738
|
# Deployed option to `true`.
|
996
739
|
#
|
997
|
-
# @note When making an API call, you may pass DescribeDomainEndpointOptionsRequest
|
998
|
-
# data as a hash:
|
999
|
-
#
|
1000
|
-
# {
|
1001
|
-
# domain_name: "DomainName", # required
|
1002
|
-
# deployed: false,
|
1003
|
-
# }
|
1004
|
-
#
|
1005
740
|
# @!attribute [rw] domain_name
|
1006
741
|
# A string that represents the name of a domain.
|
1007
742
|
# @return [String]
|
@@ -1037,13 +772,6 @@ module Aws::CloudSearch
|
|
1037
772
|
# particular domains, specify the names of the domains you want to
|
1038
773
|
# describe.
|
1039
774
|
#
|
1040
|
-
# @note When making an API call, you may pass DescribeDomainsRequest
|
1041
|
-
# data as a hash:
|
1042
|
-
#
|
1043
|
-
# {
|
1044
|
-
# domain_names: ["DomainName"],
|
1045
|
-
# }
|
1046
|
-
#
|
1047
775
|
# @!attribute [rw] domain_names
|
1048
776
|
# The names of the domains you want to include in the response.
|
1049
777
|
# @return [Array<String>]
|
@@ -1073,15 +801,6 @@ module Aws::CloudSearch
|
|
1073
801
|
# expressions you want to describe. To show the active configuration and
|
1074
802
|
# exclude any pending changes, set the `Deployed` option to `true`.
|
1075
803
|
#
|
1076
|
-
# @note When making an API call, you may pass DescribeExpressionsRequest
|
1077
|
-
# data as a hash:
|
1078
|
-
#
|
1079
|
-
# {
|
1080
|
-
# domain_name: "DomainName", # required
|
1081
|
-
# expression_names: ["StandardName"],
|
1082
|
-
# deployed: false,
|
1083
|
-
# }
|
1084
|
-
#
|
1085
804
|
# @!attribute [rw] domain_name
|
1086
805
|
# The name of the domain you want to describe.
|
1087
806
|
# @return [String]
|
@@ -1123,15 +842,6 @@ module Aws::CloudSearch
|
|
1123
842
|
# fields you want to describe. To show the active configuration and
|
1124
843
|
# exclude any pending changes, set the `Deployed` option to `true`.
|
1125
844
|
#
|
1126
|
-
# @note When making an API call, you may pass DescribeIndexFieldsRequest
|
1127
|
-
# data as a hash:
|
1128
|
-
#
|
1129
|
-
# {
|
1130
|
-
# domain_name: "DomainName", # required
|
1131
|
-
# field_names: ["DynamicFieldName"],
|
1132
|
-
# deployed: false,
|
1133
|
-
# }
|
1134
|
-
#
|
1135
845
|
# @!attribute [rw] domain_name
|
1136
846
|
# The name of the domain you want to describe.
|
1137
847
|
# @return [String]
|
@@ -1170,13 +880,6 @@ module Aws::CloudSearch
|
|
1170
880
|
# Container for the parameters to the `DescribeScalingParameters`
|
1171
881
|
# operation. Specifies the name of the domain you want to describe.
|
1172
882
|
#
|
1173
|
-
# @note When making an API call, you may pass DescribeScalingParametersRequest
|
1174
|
-
# data as a hash:
|
1175
|
-
#
|
1176
|
-
# {
|
1177
|
-
# domain_name: "DomainName", # required
|
1178
|
-
# }
|
1179
|
-
#
|
1180
883
|
# @!attribute [rw] domain_name
|
1181
884
|
# A string that represents the name of a domain. Domain names are
|
1182
885
|
# unique across the domains owned by an account within an AWS region.
|
@@ -1209,14 +912,6 @@ module Aws::CloudSearch
|
|
1209
912
|
# show the active configuration and exclude any pending changes, set the
|
1210
913
|
# `Deployed` option to `true`.
|
1211
914
|
#
|
1212
|
-
# @note When making an API call, you may pass DescribeServiceAccessPoliciesRequest
|
1213
|
-
# data as a hash:
|
1214
|
-
#
|
1215
|
-
# {
|
1216
|
-
# domain_name: "DomainName", # required
|
1217
|
-
# deployed: false,
|
1218
|
-
# }
|
1219
|
-
#
|
1220
915
|
# @!attribute [rw] domain_name
|
1221
916
|
# The name of the domain you want to describe.
|
1222
917
|
# @return [String]
|
@@ -1251,15 +946,6 @@ module Aws::CloudSearch
|
|
1251
946
|
# you want to describe. To show the active configuration and exclude any
|
1252
947
|
# pending changes, set the `Deployed` option to `true`.
|
1253
948
|
#
|
1254
|
-
# @note When making an API call, you may pass DescribeSuggestersRequest
|
1255
|
-
# data as a hash:
|
1256
|
-
#
|
1257
|
-
# {
|
1258
|
-
# domain_name: "DomainName", # required
|
1259
|
-
# suggester_names: ["StandardName"],
|
1260
|
-
# deployed: false,
|
1261
|
-
# }
|
1262
|
-
#
|
1263
949
|
# @!attribute [rw] domain_name
|
1264
950
|
# The name of the domain you want to describe.
|
1265
951
|
# @return [String]
|
@@ -1300,15 +986,6 @@ module Aws::CloudSearch
|
|
1300
986
|
|
1301
987
|
# Options for a search suggester.
|
1302
988
|
#
|
1303
|
-
# @note When making an API call, you may pass DocumentSuggesterOptions
|
1304
|
-
# data as a hash:
|
1305
|
-
#
|
1306
|
-
# {
|
1307
|
-
# source_field: "FieldName", # required
|
1308
|
-
# fuzzy_matching: "none", # accepts none, low, high
|
1309
|
-
# sort_expression: "String",
|
1310
|
-
# }
|
1311
|
-
#
|
1312
989
|
# @!attribute [rw] source_field
|
1313
990
|
# The name of the index field you want to use for suggestions.
|
1314
991
|
# @return [String]
|
@@ -1342,14 +1019,6 @@ module Aws::CloudSearch
|
|
1342
1019
|
|
1343
1020
|
# The domain's endpoint options.
|
1344
1021
|
#
|
1345
|
-
# @note When making an API call, you may pass DomainEndpointOptions
|
1346
|
-
# data as a hash:
|
1347
|
-
#
|
1348
|
-
# {
|
1349
|
-
# enforce_https: false,
|
1350
|
-
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
1351
|
-
# }
|
1352
|
-
#
|
1353
1022
|
# @!attribute [rw] enforce_https
|
1354
1023
|
# Whether the domain is HTTPS only enabled.
|
1355
1024
|
# @return [Boolean]
|
@@ -1477,17 +1146,6 @@ module Aws::CloudSearch
|
|
1477
1146
|
# floating point values. Present if `IndexFieldType` specifies the field
|
1478
1147
|
# is of type `double-array`. All options are enabled by default.
|
1479
1148
|
#
|
1480
|
-
# @note When making an API call, you may pass DoubleArrayOptions
|
1481
|
-
# data as a hash:
|
1482
|
-
#
|
1483
|
-
# {
|
1484
|
-
# default_value: 1.0,
|
1485
|
-
# source_fields: "FieldNameCommaList",
|
1486
|
-
# facet_enabled: false,
|
1487
|
-
# search_enabled: false,
|
1488
|
-
# return_enabled: false,
|
1489
|
-
# }
|
1490
|
-
#
|
1491
1149
|
# @!attribute [rw] default_value
|
1492
1150
|
# A value to use for the field if the field isn't specified for a
|
1493
1151
|
# document.
|
@@ -1524,18 +1182,6 @@ module Aws::CloudSearch
|
|
1524
1182
|
# `IndexFieldType` specifies the field is of type `double`. All options
|
1525
1183
|
# are enabled by default.
|
1526
1184
|
#
|
1527
|
-
# @note When making an API call, you may pass DoubleOptions
|
1528
|
-
# data as a hash:
|
1529
|
-
#
|
1530
|
-
# {
|
1531
|
-
# default_value: 1.0,
|
1532
|
-
# source_field: "FieldName",
|
1533
|
-
# facet_enabled: false,
|
1534
|
-
# search_enabled: false,
|
1535
|
-
# return_enabled: false,
|
1536
|
-
# sort_enabled: false,
|
1537
|
-
# }
|
1538
|
-
#
|
1539
1185
|
# @!attribute [rw] default_value
|
1540
1186
|
# A value to use for the field if the field isn't specified for a
|
1541
1187
|
# document. This can be important if you are using the field in an
|
@@ -1578,14 +1224,6 @@ module Aws::CloudSearch
|
|
1578
1224
|
# to sort the search results, define other expressions, or return
|
1579
1225
|
# computed information in the search results.
|
1580
1226
|
#
|
1581
|
-
# @note When making an API call, you may pass Expression
|
1582
|
-
# data as a hash:
|
1583
|
-
#
|
1584
|
-
# {
|
1585
|
-
# expression_name: "StandardName", # required
|
1586
|
-
# expression_value: "ExpressionValue", # required
|
1587
|
-
# }
|
1588
|
-
#
|
1589
1227
|
# @!attribute [rw] expression_name
|
1590
1228
|
# Names must begin with a letter and can contain the following
|
1591
1229
|
# characters: a-z (lowercase), 0-9, and \_ (underscore).
|
@@ -1630,13 +1268,6 @@ module Aws::CloudSearch
|
|
1630
1268
|
# Container for the parameters to the `IndexDocuments` operation.
|
1631
1269
|
# Specifies the name of the domain you want to re-index.
|
1632
1270
|
#
|
1633
|
-
# @note When making an API call, you may pass IndexDocumentsRequest
|
1634
|
-
# data as a hash:
|
1635
|
-
#
|
1636
|
-
# {
|
1637
|
-
# domain_name: "DomainName", # required
|
1638
|
-
# }
|
1639
|
-
#
|
1640
1271
|
# @!attribute [rw] domain_name
|
1641
1272
|
# A string that represents the name of a domain. Domain names are
|
1642
1273
|
# unique across the domains owned by an account within an AWS region.
|
@@ -1667,97 +1298,6 @@ module Aws::CloudSearch
|
|
1667
1298
|
# name, type, and options. The supported options depend on the
|
1668
1299
|
# `IndexFieldType`.
|
1669
1300
|
#
|
1670
|
-
# @note When making an API call, you may pass IndexField
|
1671
|
-
# data as a hash:
|
1672
|
-
#
|
1673
|
-
# {
|
1674
|
-
# index_field_name: "DynamicFieldName", # required
|
1675
|
-
# index_field_type: "int", # required, accepts int, double, literal, text, date, latlon, int-array, double-array, literal-array, text-array, date-array
|
1676
|
-
# int_options: {
|
1677
|
-
# default_value: 1,
|
1678
|
-
# source_field: "FieldName",
|
1679
|
-
# facet_enabled: false,
|
1680
|
-
# search_enabled: false,
|
1681
|
-
# return_enabled: false,
|
1682
|
-
# sort_enabled: false,
|
1683
|
-
# },
|
1684
|
-
# double_options: {
|
1685
|
-
# default_value: 1.0,
|
1686
|
-
# source_field: "FieldName",
|
1687
|
-
# facet_enabled: false,
|
1688
|
-
# search_enabled: false,
|
1689
|
-
# return_enabled: false,
|
1690
|
-
# sort_enabled: false,
|
1691
|
-
# },
|
1692
|
-
# literal_options: {
|
1693
|
-
# default_value: "FieldValue",
|
1694
|
-
# source_field: "FieldName",
|
1695
|
-
# facet_enabled: false,
|
1696
|
-
# search_enabled: false,
|
1697
|
-
# return_enabled: false,
|
1698
|
-
# sort_enabled: false,
|
1699
|
-
# },
|
1700
|
-
# text_options: {
|
1701
|
-
# default_value: "FieldValue",
|
1702
|
-
# source_field: "FieldName",
|
1703
|
-
# return_enabled: false,
|
1704
|
-
# sort_enabled: false,
|
1705
|
-
# highlight_enabled: false,
|
1706
|
-
# analysis_scheme: "Word",
|
1707
|
-
# },
|
1708
|
-
# date_options: {
|
1709
|
-
# default_value: "FieldValue",
|
1710
|
-
# source_field: "FieldName",
|
1711
|
-
# facet_enabled: false,
|
1712
|
-
# search_enabled: false,
|
1713
|
-
# return_enabled: false,
|
1714
|
-
# sort_enabled: false,
|
1715
|
-
# },
|
1716
|
-
# lat_lon_options: {
|
1717
|
-
# default_value: "FieldValue",
|
1718
|
-
# source_field: "FieldName",
|
1719
|
-
# facet_enabled: false,
|
1720
|
-
# search_enabled: false,
|
1721
|
-
# return_enabled: false,
|
1722
|
-
# sort_enabled: false,
|
1723
|
-
# },
|
1724
|
-
# int_array_options: {
|
1725
|
-
# default_value: 1,
|
1726
|
-
# source_fields: "FieldNameCommaList",
|
1727
|
-
# facet_enabled: false,
|
1728
|
-
# search_enabled: false,
|
1729
|
-
# return_enabled: false,
|
1730
|
-
# },
|
1731
|
-
# double_array_options: {
|
1732
|
-
# default_value: 1.0,
|
1733
|
-
# source_fields: "FieldNameCommaList",
|
1734
|
-
# facet_enabled: false,
|
1735
|
-
# search_enabled: false,
|
1736
|
-
# return_enabled: false,
|
1737
|
-
# },
|
1738
|
-
# literal_array_options: {
|
1739
|
-
# default_value: "FieldValue",
|
1740
|
-
# source_fields: "FieldNameCommaList",
|
1741
|
-
# facet_enabled: false,
|
1742
|
-
# search_enabled: false,
|
1743
|
-
# return_enabled: false,
|
1744
|
-
# },
|
1745
|
-
# text_array_options: {
|
1746
|
-
# default_value: "FieldValue",
|
1747
|
-
# source_fields: "FieldNameCommaList",
|
1748
|
-
# return_enabled: false,
|
1749
|
-
# highlight_enabled: false,
|
1750
|
-
# analysis_scheme: "Word",
|
1751
|
-
# },
|
1752
|
-
# date_array_options: {
|
1753
|
-
# default_value: "FieldValue",
|
1754
|
-
# source_fields: "FieldNameCommaList",
|
1755
|
-
# facet_enabled: false,
|
1756
|
-
# search_enabled: false,
|
1757
|
-
# return_enabled: false,
|
1758
|
-
# },
|
1759
|
-
# }
|
1760
|
-
#
|
1761
1301
|
# @!attribute [rw] index_field_name
|
1762
1302
|
# A string that represents the name of an index field. CloudSearch
|
1763
1303
|
# supports regular index fields as well as dynamic fields. A dynamic
|
@@ -1898,17 +1438,6 @@ module Aws::CloudSearch
|
|
1898
1438
|
# Present if `IndexFieldType` specifies the field is of type
|
1899
1439
|
# `int-array`. All options are enabled by default.
|
1900
1440
|
#
|
1901
|
-
# @note When making an API call, you may pass IntArrayOptions
|
1902
|
-
# data as a hash:
|
1903
|
-
#
|
1904
|
-
# {
|
1905
|
-
# default_value: 1,
|
1906
|
-
# source_fields: "FieldNameCommaList",
|
1907
|
-
# facet_enabled: false,
|
1908
|
-
# search_enabled: false,
|
1909
|
-
# return_enabled: false,
|
1910
|
-
# }
|
1911
|
-
#
|
1912
1441
|
# @!attribute [rw] default_value
|
1913
1442
|
# A value to use for the field if the field isn't specified for a
|
1914
1443
|
# document.
|
@@ -1945,18 +1474,6 @@ module Aws::CloudSearch
|
|
1945
1474
|
# specifies the field is of type `int`. All options are enabled by
|
1946
1475
|
# default.
|
1947
1476
|
#
|
1948
|
-
# @note When making an API call, you may pass IntOptions
|
1949
|
-
# data as a hash:
|
1950
|
-
#
|
1951
|
-
# {
|
1952
|
-
# default_value: 1,
|
1953
|
-
# source_field: "FieldName",
|
1954
|
-
# facet_enabled: false,
|
1955
|
-
# search_enabled: false,
|
1956
|
-
# return_enabled: false,
|
1957
|
-
# sort_enabled: false,
|
1958
|
-
# }
|
1959
|
-
#
|
1960
1477
|
# @!attribute [rw] default_value
|
1961
1478
|
# A value to use for the field if the field isn't specified for a
|
1962
1479
|
# document. This can be important if you are using the field in an
|
@@ -2015,18 +1532,6 @@ module Aws::CloudSearch
|
|
2015
1532
|
# specifies the field is of type `latlon`. All options are enabled by
|
2016
1533
|
# default.
|
2017
1534
|
#
|
2018
|
-
# @note When making an API call, you may pass LatLonOptions
|
2019
|
-
# data as a hash:
|
2020
|
-
#
|
2021
|
-
# {
|
2022
|
-
# default_value: "FieldValue",
|
2023
|
-
# source_field: "FieldName",
|
2024
|
-
# facet_enabled: false,
|
2025
|
-
# search_enabled: false,
|
2026
|
-
# return_enabled: false,
|
2027
|
-
# sort_enabled: false,
|
2028
|
-
# }
|
2029
|
-
#
|
2030
1535
|
# @!attribute [rw] default_value
|
2031
1536
|
# A value to use for the field if the field isn't specified for a
|
2032
1537
|
# document.
|
@@ -2114,17 +1619,6 @@ module Aws::CloudSearch
|
|
2114
1619
|
# if `IndexFieldType` specifies the field is of type `literal-array`.
|
2115
1620
|
# All options are enabled by default.
|
2116
1621
|
#
|
2117
|
-
# @note When making an API call, you may pass LiteralArrayOptions
|
2118
|
-
# data as a hash:
|
2119
|
-
#
|
2120
|
-
# {
|
2121
|
-
# default_value: "FieldValue",
|
2122
|
-
# source_fields: "FieldNameCommaList",
|
2123
|
-
# facet_enabled: false,
|
2124
|
-
# search_enabled: false,
|
2125
|
-
# return_enabled: false,
|
2126
|
-
# }
|
2127
|
-
#
|
2128
1622
|
# @!attribute [rw] default_value
|
2129
1623
|
# A value to use for the field if the field isn't specified for a
|
2130
1624
|
# document.
|
@@ -2160,18 +1654,6 @@ module Aws::CloudSearch
|
|
2160
1654
|
# Options for literal field. Present if `IndexFieldType` specifies the
|
2161
1655
|
# field is of type `literal`. All options are enabled by default.
|
2162
1656
|
#
|
2163
|
-
# @note When making an API call, you may pass LiteralOptions
|
2164
|
-
# data as a hash:
|
2165
|
-
#
|
2166
|
-
# {
|
2167
|
-
# default_value: "FieldValue",
|
2168
|
-
# source_field: "FieldName",
|
2169
|
-
# facet_enabled: false,
|
2170
|
-
# search_enabled: false,
|
2171
|
-
# return_enabled: false,
|
2172
|
-
# sort_enabled: false,
|
2173
|
-
# }
|
2174
|
-
#
|
2175
1657
|
# @!attribute [rw] default_value
|
2176
1658
|
# A value to use for the field if the field isn't specified for a
|
2177
1659
|
# document.
|
@@ -2281,15 +1763,6 @@ module Aws::CloudSearch
|
|
2281
1763
|
# The desired instance type and desired number of replicas of each index
|
2282
1764
|
# partition.
|
2283
1765
|
#
|
2284
|
-
# @note When making an API call, you may pass ScalingParameters
|
2285
|
-
# data as a hash:
|
2286
|
-
#
|
2287
|
-
# {
|
2288
|
-
# desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
|
2289
|
-
# desired_replication_count: 1,
|
2290
|
-
# desired_partition_count: 1,
|
2291
|
-
# }
|
2292
|
-
#
|
2293
1766
|
# @!attribute [rw] desired_instance_type
|
2294
1767
|
# The instance type that you want to preconfigure for your domain. For
|
2295
1768
|
# example, `search.m1.small`.
|
@@ -2353,18 +1826,6 @@ module Aws::CloudSearch
|
|
2353
1826
|
# suggestions. The following options can be configured for a suggester:
|
2354
1827
|
# `FuzzyMatching`, `SortExpression`.
|
2355
1828
|
#
|
2356
|
-
# @note When making an API call, you may pass Suggester
|
2357
|
-
# data as a hash:
|
2358
|
-
#
|
2359
|
-
# {
|
2360
|
-
# suggester_name: "StandardName", # required
|
2361
|
-
# document_suggester_options: { # required
|
2362
|
-
# source_field: "FieldName", # required
|
2363
|
-
# fuzzy_matching: "none", # accepts none, low, high
|
2364
|
-
# sort_expression: "String",
|
2365
|
-
# },
|
2366
|
-
# }
|
2367
|
-
#
|
2368
1829
|
# @!attribute [rw] suggester_name
|
2369
1830
|
# Names must begin with a letter and can contain the following
|
2370
1831
|
# characters: a-z (lowercase), 0-9, and \_ (underscore).
|
@@ -2406,17 +1867,6 @@ module Aws::CloudSearch
|
|
2406
1867
|
# `text-array` field is always searchable. All options are enabled by
|
2407
1868
|
# default.
|
2408
1869
|
#
|
2409
|
-
# @note When making an API call, you may pass TextArrayOptions
|
2410
|
-
# data as a hash:
|
2411
|
-
#
|
2412
|
-
# {
|
2413
|
-
# default_value: "FieldValue",
|
2414
|
-
# source_fields: "FieldNameCommaList",
|
2415
|
-
# return_enabled: false,
|
2416
|
-
# highlight_enabled: false,
|
2417
|
-
# analysis_scheme: "Word",
|
2418
|
-
# }
|
2419
|
-
#
|
2420
1870
|
# @!attribute [rw] default_value
|
2421
1871
|
# A value to use for the field if the field isn't specified for a
|
2422
1872
|
# document.
|
@@ -2453,18 +1903,6 @@ module Aws::CloudSearch
|
|
2453
1903
|
# field is of type `text`. A `text` field is always searchable. All
|
2454
1904
|
# options are enabled by default.
|
2455
1905
|
#
|
2456
|
-
# @note When making an API call, you may pass TextOptions
|
2457
|
-
# data as a hash:
|
2458
|
-
#
|
2459
|
-
# {
|
2460
|
-
# default_value: "FieldValue",
|
2461
|
-
# source_field: "FieldName",
|
2462
|
-
# return_enabled: false,
|
2463
|
-
# sort_enabled: false,
|
2464
|
-
# highlight_enabled: false,
|
2465
|
-
# analysis_scheme: "Word",
|
2466
|
-
# }
|
2467
|
-
#
|
2468
1906
|
# @!attribute [rw] default_value
|
2469
1907
|
# A value to use for the field if the field isn't specified for a
|
2470
1908
|
# document.
|
@@ -2521,14 +1959,6 @@ module Aws::CloudSearch
|
|
2521
1959
|
# operation. Specifies the name of the domain you want to update and the
|
2522
1960
|
# Multi-AZ availability option.
|
2523
1961
|
#
|
2524
|
-
# @note When making an API call, you may pass UpdateAvailabilityOptionsRequest
|
2525
|
-
# data as a hash:
|
2526
|
-
#
|
2527
|
-
# {
|
2528
|
-
# domain_name: "DomainName", # required
|
2529
|
-
# multi_az: false, # required
|
2530
|
-
# }
|
2531
|
-
#
|
2532
1962
|
# @!attribute [rw] domain_name
|
2533
1963
|
# A string that represents the name of a domain. Domain names are
|
2534
1964
|
# unique across the domains owned by an account within an AWS region.
|
@@ -2568,17 +1998,6 @@ module Aws::CloudSearch
|
|
2568
1998
|
# operation. Specifies the name of the domain you want to update and the
|
2569
1999
|
# domain endpoint options.
|
2570
2000
|
#
|
2571
|
-
# @note When making an API call, you may pass UpdateDomainEndpointOptionsRequest
|
2572
|
-
# data as a hash:
|
2573
|
-
#
|
2574
|
-
# {
|
2575
|
-
# domain_name: "DomainName", # required
|
2576
|
-
# domain_endpoint_options: { # required
|
2577
|
-
# enforce_https: false,
|
2578
|
-
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
2579
|
-
# },
|
2580
|
-
# }
|
2581
|
-
#
|
2582
2001
|
# @!attribute [rw] domain_name
|
2583
2002
|
# A string that represents the name of a domain.
|
2584
2003
|
# @return [String]
|
@@ -2614,18 +2033,6 @@ module Aws::CloudSearch
|
|
2614
2033
|
# operation. Specifies the name of the domain you want to update and the
|
2615
2034
|
# scaling parameters you want to configure.
|
2616
2035
|
#
|
2617
|
-
# @note When making an API call, you may pass UpdateScalingParametersRequest
|
2618
|
-
# data as a hash:
|
2619
|
-
#
|
2620
|
-
# {
|
2621
|
-
# domain_name: "DomainName", # required
|
2622
|
-
# scaling_parameters: { # required
|
2623
|
-
# desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
|
2624
|
-
# desired_replication_count: 1,
|
2625
|
-
# desired_partition_count: 1,
|
2626
|
-
# },
|
2627
|
-
# }
|
2628
|
-
#
|
2629
2036
|
# @!attribute [rw] domain_name
|
2630
2037
|
# A string that represents the name of a domain. Domain names are
|
2631
2038
|
# unique across the domains owned by an account within an AWS region.
|
@@ -2663,14 +2070,6 @@ module Aws::CloudSearch
|
|
2663
2070
|
# operation. Specifies the name of the domain you want to update and the
|
2664
2071
|
# access rules you want to configure.
|
2665
2072
|
#
|
2666
|
-
# @note When making an API call, you may pass UpdateServiceAccessPoliciesRequest
|
2667
|
-
# data as a hash:
|
2668
|
-
#
|
2669
|
-
# {
|
2670
|
-
# domain_name: "DomainName", # required
|
2671
|
-
# access_policies: "PolicyDocument", # required
|
2672
|
-
# }
|
2673
|
-
#
|
2674
2073
|
# @!attribute [rw] domain_name
|
2675
2074
|
# A string that represents the name of a domain. Domain names are
|
2676
2075
|
# unique across the domains owned by an account within an AWS region.
|
data/lib/aws-sdk-cloudsearch.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudsearch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.42.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:
|
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
|