aws-sdk-cloudsearch 1.51.0 → 1.52.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearch/client.rb +1 -1
- data/lib/aws-sdk-cloudsearch/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-cloudsearch.rb +1 -1
- data/sig/client.rbs +471 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +571 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44fa8c8b3294cbf3d6f8c91f471b1f05a1c9e865ceb6724572c7a26b9cc82e9f
|
|
4
|
+
data.tar.gz: a885023123b763d5cff0f7eb07e9f32bb619e8117b73392d210e874383ae1837
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eae6613f7772cac30311237d5cfb2d420d843d25f195914b31dc742a58eb0d08da2815f4218d3cd4cd6b95b770a313a3487b150fb421a46fa37d86a5363e5a56
|
|
7
|
+
data.tar.gz: 19fafd90241724a8f435667a32753ae784ef468c720893e300abbb7a594f8b9a30c50703375bf2ff6dcd5fe70a5d61bb3b8e9628f24924a9018196fcacfc3853
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.52.0
|
|
@@ -1906,7 +1906,7 @@ module Aws::CloudSearch
|
|
|
1906
1906
|
params: params,
|
|
1907
1907
|
config: config)
|
|
1908
1908
|
context[:gem_name] = 'aws-sdk-cloudsearch'
|
|
1909
|
-
context[:gem_version] = '1.
|
|
1909
|
+
context[:gem_version] = '1.52.0'
|
|
1910
1910
|
Seahorse::Client::Request.new(handlers, context)
|
|
1911
1911
|
end
|
|
1912
1912
|
|
|
@@ -14,6 +14,7 @@ module Aws::CloudSearch
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::CloudSearch::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-cloudsearch.rb
CHANGED
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,471 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudSearch
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> instance
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
interface _BuildSuggestersResponseSuccess
|
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BuildSuggestersResponse]
|
|
77
|
+
def field_names: () -> ::Array[::String]
|
|
78
|
+
end
|
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#build_suggesters-instance_method
|
|
80
|
+
def build_suggesters: (
|
|
81
|
+
domain_name: ::String
|
|
82
|
+
) -> _BuildSuggestersResponseSuccess
|
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BuildSuggestersResponseSuccess
|
|
84
|
+
|
|
85
|
+
interface _CreateDomainResponseSuccess
|
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainResponse]
|
|
87
|
+
def domain_status: () -> Types::DomainStatus
|
|
88
|
+
end
|
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#create_domain-instance_method
|
|
90
|
+
def create_domain: (
|
|
91
|
+
domain_name: ::String
|
|
92
|
+
) -> _CreateDomainResponseSuccess
|
|
93
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
|
94
|
+
|
|
95
|
+
interface _DefineAnalysisSchemeResponseSuccess
|
|
96
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DefineAnalysisSchemeResponse]
|
|
97
|
+
def analysis_scheme: () -> Types::AnalysisSchemeStatus
|
|
98
|
+
end
|
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#define_analysis_scheme-instance_method
|
|
100
|
+
def define_analysis_scheme: (
|
|
101
|
+
domain_name: ::String,
|
|
102
|
+
analysis_scheme: {
|
|
103
|
+
analysis_scheme_name: ::String,
|
|
104
|
+
analysis_scheme_language: ("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"),
|
|
105
|
+
analysis_options: {
|
|
106
|
+
synonyms: ::String?,
|
|
107
|
+
stopwords: ::String?,
|
|
108
|
+
stemming_dictionary: ::String?,
|
|
109
|
+
japanese_tokenization_dictionary: ::String?,
|
|
110
|
+
algorithmic_stemming: ("none" | "minimal" | "light" | "full")?
|
|
111
|
+
}?
|
|
112
|
+
}
|
|
113
|
+
) -> _DefineAnalysisSchemeResponseSuccess
|
|
114
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DefineAnalysisSchemeResponseSuccess
|
|
115
|
+
|
|
116
|
+
interface _DefineExpressionResponseSuccess
|
|
117
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DefineExpressionResponse]
|
|
118
|
+
def expression: () -> Types::ExpressionStatus
|
|
119
|
+
end
|
|
120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#define_expression-instance_method
|
|
121
|
+
def define_expression: (
|
|
122
|
+
domain_name: ::String,
|
|
123
|
+
expression: {
|
|
124
|
+
expression_name: ::String,
|
|
125
|
+
expression_value: ::String
|
|
126
|
+
}
|
|
127
|
+
) -> _DefineExpressionResponseSuccess
|
|
128
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DefineExpressionResponseSuccess
|
|
129
|
+
|
|
130
|
+
interface _DefineIndexFieldResponseSuccess
|
|
131
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DefineIndexFieldResponse]
|
|
132
|
+
def index_field: () -> Types::IndexFieldStatus
|
|
133
|
+
end
|
|
134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#define_index_field-instance_method
|
|
135
|
+
def define_index_field: (
|
|
136
|
+
domain_name: ::String,
|
|
137
|
+
index_field: {
|
|
138
|
+
index_field_name: ::String,
|
|
139
|
+
index_field_type: ("int" | "double" | "literal" | "text" | "date" | "latlon" | "int-array" | "double-array" | "literal-array" | "text-array" | "date-array"),
|
|
140
|
+
int_options: {
|
|
141
|
+
default_value: ::Integer?,
|
|
142
|
+
source_field: ::String?,
|
|
143
|
+
facet_enabled: bool?,
|
|
144
|
+
search_enabled: bool?,
|
|
145
|
+
return_enabled: bool?,
|
|
146
|
+
sort_enabled: bool?
|
|
147
|
+
}?,
|
|
148
|
+
double_options: {
|
|
149
|
+
default_value: ::Float?,
|
|
150
|
+
source_field: ::String?,
|
|
151
|
+
facet_enabled: bool?,
|
|
152
|
+
search_enabled: bool?,
|
|
153
|
+
return_enabled: bool?,
|
|
154
|
+
sort_enabled: bool?
|
|
155
|
+
}?,
|
|
156
|
+
literal_options: {
|
|
157
|
+
default_value: ::String?,
|
|
158
|
+
source_field: ::String?,
|
|
159
|
+
facet_enabled: bool?,
|
|
160
|
+
search_enabled: bool?,
|
|
161
|
+
return_enabled: bool?,
|
|
162
|
+
sort_enabled: bool?
|
|
163
|
+
}?,
|
|
164
|
+
text_options: {
|
|
165
|
+
default_value: ::String?,
|
|
166
|
+
source_field: ::String?,
|
|
167
|
+
return_enabled: bool?,
|
|
168
|
+
sort_enabled: bool?,
|
|
169
|
+
highlight_enabled: bool?,
|
|
170
|
+
analysis_scheme: ::String?
|
|
171
|
+
}?,
|
|
172
|
+
date_options: {
|
|
173
|
+
default_value: ::String?,
|
|
174
|
+
source_field: ::String?,
|
|
175
|
+
facet_enabled: bool?,
|
|
176
|
+
search_enabled: bool?,
|
|
177
|
+
return_enabled: bool?,
|
|
178
|
+
sort_enabled: bool?
|
|
179
|
+
}?,
|
|
180
|
+
lat_lon_options: {
|
|
181
|
+
default_value: ::String?,
|
|
182
|
+
source_field: ::String?,
|
|
183
|
+
facet_enabled: bool?,
|
|
184
|
+
search_enabled: bool?,
|
|
185
|
+
return_enabled: bool?,
|
|
186
|
+
sort_enabled: bool?
|
|
187
|
+
}?,
|
|
188
|
+
int_array_options: {
|
|
189
|
+
default_value: ::Integer?,
|
|
190
|
+
source_fields: ::String?,
|
|
191
|
+
facet_enabled: bool?,
|
|
192
|
+
search_enabled: bool?,
|
|
193
|
+
return_enabled: bool?
|
|
194
|
+
}?,
|
|
195
|
+
double_array_options: {
|
|
196
|
+
default_value: ::Float?,
|
|
197
|
+
source_fields: ::String?,
|
|
198
|
+
facet_enabled: bool?,
|
|
199
|
+
search_enabled: bool?,
|
|
200
|
+
return_enabled: bool?
|
|
201
|
+
}?,
|
|
202
|
+
literal_array_options: {
|
|
203
|
+
default_value: ::String?,
|
|
204
|
+
source_fields: ::String?,
|
|
205
|
+
facet_enabled: bool?,
|
|
206
|
+
search_enabled: bool?,
|
|
207
|
+
return_enabled: bool?
|
|
208
|
+
}?,
|
|
209
|
+
text_array_options: {
|
|
210
|
+
default_value: ::String?,
|
|
211
|
+
source_fields: ::String?,
|
|
212
|
+
return_enabled: bool?,
|
|
213
|
+
highlight_enabled: bool?,
|
|
214
|
+
analysis_scheme: ::String?
|
|
215
|
+
}?,
|
|
216
|
+
date_array_options: {
|
|
217
|
+
default_value: ::String?,
|
|
218
|
+
source_fields: ::String?,
|
|
219
|
+
facet_enabled: bool?,
|
|
220
|
+
search_enabled: bool?,
|
|
221
|
+
return_enabled: bool?
|
|
222
|
+
}?
|
|
223
|
+
}
|
|
224
|
+
) -> _DefineIndexFieldResponseSuccess
|
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DefineIndexFieldResponseSuccess
|
|
226
|
+
|
|
227
|
+
interface _DefineSuggesterResponseSuccess
|
|
228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DefineSuggesterResponse]
|
|
229
|
+
def suggester: () -> Types::SuggesterStatus
|
|
230
|
+
end
|
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#define_suggester-instance_method
|
|
232
|
+
def define_suggester: (
|
|
233
|
+
domain_name: ::String,
|
|
234
|
+
suggester: {
|
|
235
|
+
suggester_name: ::String,
|
|
236
|
+
document_suggester_options: {
|
|
237
|
+
source_field: ::String,
|
|
238
|
+
fuzzy_matching: ("none" | "low" | "high")?,
|
|
239
|
+
sort_expression: ::String?
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
) -> _DefineSuggesterResponseSuccess
|
|
243
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DefineSuggesterResponseSuccess
|
|
244
|
+
|
|
245
|
+
interface _DeleteAnalysisSchemeResponseSuccess
|
|
246
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnalysisSchemeResponse]
|
|
247
|
+
def analysis_scheme: () -> Types::AnalysisSchemeStatus
|
|
248
|
+
end
|
|
249
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#delete_analysis_scheme-instance_method
|
|
250
|
+
def delete_analysis_scheme: (
|
|
251
|
+
domain_name: ::String,
|
|
252
|
+
analysis_scheme_name: ::String
|
|
253
|
+
) -> _DeleteAnalysisSchemeResponseSuccess
|
|
254
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnalysisSchemeResponseSuccess
|
|
255
|
+
|
|
256
|
+
interface _DeleteDomainResponseSuccess
|
|
257
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainResponse]
|
|
258
|
+
def domain_status: () -> Types::DomainStatus
|
|
259
|
+
end
|
|
260
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#delete_domain-instance_method
|
|
261
|
+
def delete_domain: (
|
|
262
|
+
domain_name: ::String
|
|
263
|
+
) -> _DeleteDomainResponseSuccess
|
|
264
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
|
|
265
|
+
|
|
266
|
+
interface _DeleteExpressionResponseSuccess
|
|
267
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteExpressionResponse]
|
|
268
|
+
def expression: () -> Types::ExpressionStatus
|
|
269
|
+
end
|
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#delete_expression-instance_method
|
|
271
|
+
def delete_expression: (
|
|
272
|
+
domain_name: ::String,
|
|
273
|
+
expression_name: ::String
|
|
274
|
+
) -> _DeleteExpressionResponseSuccess
|
|
275
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteExpressionResponseSuccess
|
|
276
|
+
|
|
277
|
+
interface _DeleteIndexFieldResponseSuccess
|
|
278
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIndexFieldResponse]
|
|
279
|
+
def index_field: () -> Types::IndexFieldStatus
|
|
280
|
+
end
|
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#delete_index_field-instance_method
|
|
282
|
+
def delete_index_field: (
|
|
283
|
+
domain_name: ::String,
|
|
284
|
+
index_field_name: ::String
|
|
285
|
+
) -> _DeleteIndexFieldResponseSuccess
|
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIndexFieldResponseSuccess
|
|
287
|
+
|
|
288
|
+
interface _DeleteSuggesterResponseSuccess
|
|
289
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSuggesterResponse]
|
|
290
|
+
def suggester: () -> Types::SuggesterStatus
|
|
291
|
+
end
|
|
292
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#delete_suggester-instance_method
|
|
293
|
+
def delete_suggester: (
|
|
294
|
+
domain_name: ::String,
|
|
295
|
+
suggester_name: ::String
|
|
296
|
+
) -> _DeleteSuggesterResponseSuccess
|
|
297
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSuggesterResponseSuccess
|
|
298
|
+
|
|
299
|
+
interface _DescribeAnalysisSchemesResponseSuccess
|
|
300
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAnalysisSchemesResponse]
|
|
301
|
+
def analysis_schemes: () -> ::Array[Types::AnalysisSchemeStatus]
|
|
302
|
+
end
|
|
303
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_analysis_schemes-instance_method
|
|
304
|
+
def describe_analysis_schemes: (
|
|
305
|
+
domain_name: ::String,
|
|
306
|
+
?analysis_scheme_names: Array[::String],
|
|
307
|
+
?deployed: bool
|
|
308
|
+
) -> _DescribeAnalysisSchemesResponseSuccess
|
|
309
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAnalysisSchemesResponseSuccess
|
|
310
|
+
|
|
311
|
+
interface _DescribeAvailabilityOptionsResponseSuccess
|
|
312
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAvailabilityOptionsResponse]
|
|
313
|
+
def availability_options: () -> Types::AvailabilityOptionsStatus
|
|
314
|
+
end
|
|
315
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_availability_options-instance_method
|
|
316
|
+
def describe_availability_options: (
|
|
317
|
+
domain_name: ::String,
|
|
318
|
+
?deployed: bool
|
|
319
|
+
) -> _DescribeAvailabilityOptionsResponseSuccess
|
|
320
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAvailabilityOptionsResponseSuccess
|
|
321
|
+
|
|
322
|
+
interface _DescribeDomainEndpointOptionsResponseSuccess
|
|
323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainEndpointOptionsResponse]
|
|
324
|
+
def domain_endpoint_options: () -> Types::DomainEndpointOptionsStatus
|
|
325
|
+
end
|
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_domain_endpoint_options-instance_method
|
|
327
|
+
def describe_domain_endpoint_options: (
|
|
328
|
+
domain_name: ::String,
|
|
329
|
+
?deployed: bool
|
|
330
|
+
) -> _DescribeDomainEndpointOptionsResponseSuccess
|
|
331
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainEndpointOptionsResponseSuccess
|
|
332
|
+
|
|
333
|
+
interface _DescribeDomainsResponseSuccess
|
|
334
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainsResponse]
|
|
335
|
+
def domain_status_list: () -> ::Array[Types::DomainStatus]
|
|
336
|
+
end
|
|
337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_domains-instance_method
|
|
338
|
+
def describe_domains: (
|
|
339
|
+
?domain_names: Array[::String]
|
|
340
|
+
) -> _DescribeDomainsResponseSuccess
|
|
341
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainsResponseSuccess
|
|
342
|
+
|
|
343
|
+
interface _DescribeExpressionsResponseSuccess
|
|
344
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeExpressionsResponse]
|
|
345
|
+
def expressions: () -> ::Array[Types::ExpressionStatus]
|
|
346
|
+
end
|
|
347
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_expressions-instance_method
|
|
348
|
+
def describe_expressions: (
|
|
349
|
+
domain_name: ::String,
|
|
350
|
+
?expression_names: Array[::String],
|
|
351
|
+
?deployed: bool
|
|
352
|
+
) -> _DescribeExpressionsResponseSuccess
|
|
353
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeExpressionsResponseSuccess
|
|
354
|
+
|
|
355
|
+
interface _DescribeIndexFieldsResponseSuccess
|
|
356
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIndexFieldsResponse]
|
|
357
|
+
def index_fields: () -> ::Array[Types::IndexFieldStatus]
|
|
358
|
+
end
|
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_index_fields-instance_method
|
|
360
|
+
def describe_index_fields: (
|
|
361
|
+
domain_name: ::String,
|
|
362
|
+
?field_names: Array[::String],
|
|
363
|
+
?deployed: bool
|
|
364
|
+
) -> _DescribeIndexFieldsResponseSuccess
|
|
365
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIndexFieldsResponseSuccess
|
|
366
|
+
|
|
367
|
+
interface _DescribeScalingParametersResponseSuccess
|
|
368
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeScalingParametersResponse]
|
|
369
|
+
def scaling_parameters: () -> Types::ScalingParametersStatus
|
|
370
|
+
end
|
|
371
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_scaling_parameters-instance_method
|
|
372
|
+
def describe_scaling_parameters: (
|
|
373
|
+
domain_name: ::String
|
|
374
|
+
) -> _DescribeScalingParametersResponseSuccess
|
|
375
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScalingParametersResponseSuccess
|
|
376
|
+
|
|
377
|
+
interface _DescribeServiceAccessPoliciesResponseSuccess
|
|
378
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceAccessPoliciesResponse]
|
|
379
|
+
def access_policies: () -> Types::AccessPoliciesStatus
|
|
380
|
+
end
|
|
381
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_service_access_policies-instance_method
|
|
382
|
+
def describe_service_access_policies: (
|
|
383
|
+
domain_name: ::String,
|
|
384
|
+
?deployed: bool
|
|
385
|
+
) -> _DescribeServiceAccessPoliciesResponseSuccess
|
|
386
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServiceAccessPoliciesResponseSuccess
|
|
387
|
+
|
|
388
|
+
interface _DescribeSuggestersResponseSuccess
|
|
389
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSuggestersResponse]
|
|
390
|
+
def suggesters: () -> ::Array[Types::SuggesterStatus]
|
|
391
|
+
end
|
|
392
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#describe_suggesters-instance_method
|
|
393
|
+
def describe_suggesters: (
|
|
394
|
+
domain_name: ::String,
|
|
395
|
+
?suggester_names: Array[::String],
|
|
396
|
+
?deployed: bool
|
|
397
|
+
) -> _DescribeSuggestersResponseSuccess
|
|
398
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSuggestersResponseSuccess
|
|
399
|
+
|
|
400
|
+
interface _IndexDocumentsResponseSuccess
|
|
401
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IndexDocumentsResponse]
|
|
402
|
+
def field_names: () -> ::Array[::String]
|
|
403
|
+
end
|
|
404
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#index_documents-instance_method
|
|
405
|
+
def index_documents: (
|
|
406
|
+
domain_name: ::String
|
|
407
|
+
) -> _IndexDocumentsResponseSuccess
|
|
408
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _IndexDocumentsResponseSuccess
|
|
409
|
+
|
|
410
|
+
interface _ListDomainNamesResponseSuccess
|
|
411
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainNamesResponse]
|
|
412
|
+
def domain_names: () -> ::Hash[::String, ::String]
|
|
413
|
+
end
|
|
414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#list_domain_names-instance_method
|
|
415
|
+
def list_domain_names: () -> _ListDomainNamesResponseSuccess
|
|
416
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainNamesResponseSuccess
|
|
417
|
+
|
|
418
|
+
interface _UpdateAvailabilityOptionsResponseSuccess
|
|
419
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAvailabilityOptionsResponse]
|
|
420
|
+
def availability_options: () -> Types::AvailabilityOptionsStatus
|
|
421
|
+
end
|
|
422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#update_availability_options-instance_method
|
|
423
|
+
def update_availability_options: (
|
|
424
|
+
domain_name: ::String,
|
|
425
|
+
multi_az: bool
|
|
426
|
+
) -> _UpdateAvailabilityOptionsResponseSuccess
|
|
427
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAvailabilityOptionsResponseSuccess
|
|
428
|
+
|
|
429
|
+
interface _UpdateDomainEndpointOptionsResponseSuccess
|
|
430
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainEndpointOptionsResponse]
|
|
431
|
+
def domain_endpoint_options: () -> Types::DomainEndpointOptionsStatus
|
|
432
|
+
end
|
|
433
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#update_domain_endpoint_options-instance_method
|
|
434
|
+
def update_domain_endpoint_options: (
|
|
435
|
+
domain_name: ::String,
|
|
436
|
+
domain_endpoint_options: {
|
|
437
|
+
enforce_https: bool?,
|
|
438
|
+
tls_security_policy: ("Policy-Min-TLS-1-0-2019-07" | "Policy-Min-TLS-1-2-2019-07")?
|
|
439
|
+
}
|
|
440
|
+
) -> _UpdateDomainEndpointOptionsResponseSuccess
|
|
441
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainEndpointOptionsResponseSuccess
|
|
442
|
+
|
|
443
|
+
interface _UpdateScalingParametersResponseSuccess
|
|
444
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScalingParametersResponse]
|
|
445
|
+
def scaling_parameters: () -> Types::ScalingParametersStatus
|
|
446
|
+
end
|
|
447
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#update_scaling_parameters-instance_method
|
|
448
|
+
def update_scaling_parameters: (
|
|
449
|
+
domain_name: ::String,
|
|
450
|
+
scaling_parameters: {
|
|
451
|
+
desired_instance_type: ("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")?,
|
|
452
|
+
desired_replication_count: ::Integer?,
|
|
453
|
+
desired_partition_count: ::Integer?
|
|
454
|
+
}
|
|
455
|
+
) -> _UpdateScalingParametersResponseSuccess
|
|
456
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateScalingParametersResponseSuccess
|
|
457
|
+
|
|
458
|
+
interface _UpdateServiceAccessPoliciesResponseSuccess
|
|
459
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceAccessPoliciesResponse]
|
|
460
|
+
def access_policies: () -> Types::AccessPoliciesStatus
|
|
461
|
+
end
|
|
462
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Client.html#update_service_access_policies-instance_method
|
|
463
|
+
def update_service_access_policies: (
|
|
464
|
+
domain_name: ::String,
|
|
465
|
+
access_policies: ::String
|
|
466
|
+
) -> _UpdateServiceAccessPoliciesResponseSuccess
|
|
467
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceAccessPoliciesResponseSuccess
|
|
468
|
+
end
|
|
469
|
+
end
|
|
470
|
+
end
|
|
471
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudSearch
|
|
10
|
+
module Errors
|
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class BaseException < ::Aws::Errors::ServiceError
|
|
15
|
+
def code: () -> ::String
|
|
16
|
+
def message: () -> ::String
|
|
17
|
+
end
|
|
18
|
+
class DisabledOperationException < ::Aws::Errors::ServiceError
|
|
19
|
+
end
|
|
20
|
+
class InternalException < ::Aws::Errors::ServiceError
|
|
21
|
+
end
|
|
22
|
+
class InvalidTypeException < ::Aws::Errors::ServiceError
|
|
23
|
+
end
|
|
24
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
|
25
|
+
end
|
|
26
|
+
class ResourceAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
27
|
+
end
|
|
28
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
29
|
+
end
|
|
30
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
data/sig/resource.rbs
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudSearch
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearch/Resource.html#initialize-instance_method
|
|
13
|
+
def initialize: (
|
|
14
|
+
?client: Client,
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> void
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
73
|
+
|
|
74
|
+
def client: () -> Client
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
end
|
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,571 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::CloudSearch
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessPoliciesStatus
|
|
12
|
+
attr_accessor options: ::String
|
|
13
|
+
attr_accessor status: Types::OptionStatus
|
|
14
|
+
SENSITIVE: []
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
class AnalysisOptions
|
|
18
|
+
attr_accessor synonyms: ::String
|
|
19
|
+
attr_accessor stopwords: ::String
|
|
20
|
+
attr_accessor stemming_dictionary: ::String
|
|
21
|
+
attr_accessor japanese_tokenization_dictionary: ::String
|
|
22
|
+
attr_accessor algorithmic_stemming: ("none" | "minimal" | "light" | "full")
|
|
23
|
+
SENSITIVE: []
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
class AnalysisScheme
|
|
27
|
+
attr_accessor analysis_scheme_name: ::String
|
|
28
|
+
attr_accessor analysis_scheme_language: ("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")
|
|
29
|
+
attr_accessor analysis_options: Types::AnalysisOptions
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class AnalysisSchemeStatus
|
|
34
|
+
attr_accessor options: Types::AnalysisScheme
|
|
35
|
+
attr_accessor status: Types::OptionStatus
|
|
36
|
+
SENSITIVE: []
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
class AvailabilityOptionsStatus
|
|
40
|
+
attr_accessor options: bool
|
|
41
|
+
attr_accessor status: Types::OptionStatus
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class BaseException
|
|
46
|
+
attr_accessor code: ::String
|
|
47
|
+
attr_accessor message: ::String
|
|
48
|
+
SENSITIVE: []
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class BuildSuggestersRequest
|
|
52
|
+
attr_accessor domain_name: ::String
|
|
53
|
+
SENSITIVE: []
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
class BuildSuggestersResponse
|
|
57
|
+
attr_accessor field_names: ::Array[::String]
|
|
58
|
+
SENSITIVE: []
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class CreateDomainRequest
|
|
62
|
+
attr_accessor domain_name: ::String
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class CreateDomainResponse
|
|
67
|
+
attr_accessor domain_status: Types::DomainStatus
|
|
68
|
+
SENSITIVE: []
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
class DateArrayOptions
|
|
72
|
+
attr_accessor default_value: ::String
|
|
73
|
+
attr_accessor source_fields: ::String
|
|
74
|
+
attr_accessor facet_enabled: bool
|
|
75
|
+
attr_accessor search_enabled: bool
|
|
76
|
+
attr_accessor return_enabled: bool
|
|
77
|
+
SENSITIVE: []
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
class DateOptions
|
|
81
|
+
attr_accessor default_value: ::String
|
|
82
|
+
attr_accessor source_field: ::String
|
|
83
|
+
attr_accessor facet_enabled: bool
|
|
84
|
+
attr_accessor search_enabled: bool
|
|
85
|
+
attr_accessor return_enabled: bool
|
|
86
|
+
attr_accessor sort_enabled: bool
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
class DefineAnalysisSchemeRequest
|
|
91
|
+
attr_accessor domain_name: ::String
|
|
92
|
+
attr_accessor analysis_scheme: Types::AnalysisScheme
|
|
93
|
+
SENSITIVE: []
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
class DefineAnalysisSchemeResponse
|
|
97
|
+
attr_accessor analysis_scheme: Types::AnalysisSchemeStatus
|
|
98
|
+
SENSITIVE: []
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
class DefineExpressionRequest
|
|
102
|
+
attr_accessor domain_name: ::String
|
|
103
|
+
attr_accessor expression: Types::Expression
|
|
104
|
+
SENSITIVE: []
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
class DefineExpressionResponse
|
|
108
|
+
attr_accessor expression: Types::ExpressionStatus
|
|
109
|
+
SENSITIVE: []
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
class DefineIndexFieldRequest
|
|
113
|
+
attr_accessor domain_name: ::String
|
|
114
|
+
attr_accessor index_field: Types::IndexField
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
class DefineIndexFieldResponse
|
|
119
|
+
attr_accessor index_field: Types::IndexFieldStatus
|
|
120
|
+
SENSITIVE: []
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
class DefineSuggesterRequest
|
|
124
|
+
attr_accessor domain_name: ::String
|
|
125
|
+
attr_accessor suggester: Types::Suggester
|
|
126
|
+
SENSITIVE: []
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
class DefineSuggesterResponse
|
|
130
|
+
attr_accessor suggester: Types::SuggesterStatus
|
|
131
|
+
SENSITIVE: []
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
class DeleteAnalysisSchemeRequest
|
|
135
|
+
attr_accessor domain_name: ::String
|
|
136
|
+
attr_accessor analysis_scheme_name: ::String
|
|
137
|
+
SENSITIVE: []
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
class DeleteAnalysisSchemeResponse
|
|
141
|
+
attr_accessor analysis_scheme: Types::AnalysisSchemeStatus
|
|
142
|
+
SENSITIVE: []
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class DeleteDomainRequest
|
|
146
|
+
attr_accessor domain_name: ::String
|
|
147
|
+
SENSITIVE: []
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
class DeleteDomainResponse
|
|
151
|
+
attr_accessor domain_status: Types::DomainStatus
|
|
152
|
+
SENSITIVE: []
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
class DeleteExpressionRequest
|
|
156
|
+
attr_accessor domain_name: ::String
|
|
157
|
+
attr_accessor expression_name: ::String
|
|
158
|
+
SENSITIVE: []
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class DeleteExpressionResponse
|
|
162
|
+
attr_accessor expression: Types::ExpressionStatus
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class DeleteIndexFieldRequest
|
|
167
|
+
attr_accessor domain_name: ::String
|
|
168
|
+
attr_accessor index_field_name: ::String
|
|
169
|
+
SENSITIVE: []
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
class DeleteIndexFieldResponse
|
|
173
|
+
attr_accessor index_field: Types::IndexFieldStatus
|
|
174
|
+
SENSITIVE: []
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
class DeleteSuggesterRequest
|
|
178
|
+
attr_accessor domain_name: ::String
|
|
179
|
+
attr_accessor suggester_name: ::String
|
|
180
|
+
SENSITIVE: []
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
class DeleteSuggesterResponse
|
|
184
|
+
attr_accessor suggester: Types::SuggesterStatus
|
|
185
|
+
SENSITIVE: []
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
class DescribeAnalysisSchemesRequest
|
|
189
|
+
attr_accessor domain_name: ::String
|
|
190
|
+
attr_accessor analysis_scheme_names: ::Array[::String]
|
|
191
|
+
attr_accessor deployed: bool
|
|
192
|
+
SENSITIVE: []
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
class DescribeAnalysisSchemesResponse
|
|
196
|
+
attr_accessor analysis_schemes: ::Array[Types::AnalysisSchemeStatus]
|
|
197
|
+
SENSITIVE: []
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
class DescribeAvailabilityOptionsRequest
|
|
201
|
+
attr_accessor domain_name: ::String
|
|
202
|
+
attr_accessor deployed: bool
|
|
203
|
+
SENSITIVE: []
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
class DescribeAvailabilityOptionsResponse
|
|
207
|
+
attr_accessor availability_options: Types::AvailabilityOptionsStatus
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class DescribeDomainEndpointOptionsRequest
|
|
212
|
+
attr_accessor domain_name: ::String
|
|
213
|
+
attr_accessor deployed: bool
|
|
214
|
+
SENSITIVE: []
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
class DescribeDomainEndpointOptionsResponse
|
|
218
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptionsStatus
|
|
219
|
+
SENSITIVE: []
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
class DescribeDomainsRequest
|
|
223
|
+
attr_accessor domain_names: ::Array[::String]
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
class DescribeDomainsResponse
|
|
228
|
+
attr_accessor domain_status_list: ::Array[Types::DomainStatus]
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
class DescribeExpressionsRequest
|
|
233
|
+
attr_accessor domain_name: ::String
|
|
234
|
+
attr_accessor expression_names: ::Array[::String]
|
|
235
|
+
attr_accessor deployed: bool
|
|
236
|
+
SENSITIVE: []
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
class DescribeExpressionsResponse
|
|
240
|
+
attr_accessor expressions: ::Array[Types::ExpressionStatus]
|
|
241
|
+
SENSITIVE: []
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
class DescribeIndexFieldsRequest
|
|
245
|
+
attr_accessor domain_name: ::String
|
|
246
|
+
attr_accessor field_names: ::Array[::String]
|
|
247
|
+
attr_accessor deployed: bool
|
|
248
|
+
SENSITIVE: []
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
class DescribeIndexFieldsResponse
|
|
252
|
+
attr_accessor index_fields: ::Array[Types::IndexFieldStatus]
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class DescribeScalingParametersRequest
|
|
257
|
+
attr_accessor domain_name: ::String
|
|
258
|
+
SENSITIVE: []
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
class DescribeScalingParametersResponse
|
|
262
|
+
attr_accessor scaling_parameters: Types::ScalingParametersStatus
|
|
263
|
+
SENSITIVE: []
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
class DescribeServiceAccessPoliciesRequest
|
|
267
|
+
attr_accessor domain_name: ::String
|
|
268
|
+
attr_accessor deployed: bool
|
|
269
|
+
SENSITIVE: []
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
class DescribeServiceAccessPoliciesResponse
|
|
273
|
+
attr_accessor access_policies: Types::AccessPoliciesStatus
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class DescribeSuggestersRequest
|
|
278
|
+
attr_accessor domain_name: ::String
|
|
279
|
+
attr_accessor suggester_names: ::Array[::String]
|
|
280
|
+
attr_accessor deployed: bool
|
|
281
|
+
SENSITIVE: []
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
class DescribeSuggestersResponse
|
|
285
|
+
attr_accessor suggesters: ::Array[Types::SuggesterStatus]
|
|
286
|
+
SENSITIVE: []
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
class DisabledOperationException < Aws::EmptyStructure
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
class DocumentSuggesterOptions
|
|
293
|
+
attr_accessor source_field: ::String
|
|
294
|
+
attr_accessor fuzzy_matching: ("none" | "low" | "high")
|
|
295
|
+
attr_accessor sort_expression: ::String
|
|
296
|
+
SENSITIVE: []
|
|
297
|
+
end
|
|
298
|
+
|
|
299
|
+
class DomainEndpointOptions
|
|
300
|
+
attr_accessor enforce_https: bool
|
|
301
|
+
attr_accessor tls_security_policy: ("Policy-Min-TLS-1-0-2019-07" | "Policy-Min-TLS-1-2-2019-07")
|
|
302
|
+
SENSITIVE: []
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
class DomainEndpointOptionsStatus
|
|
306
|
+
attr_accessor options: Types::DomainEndpointOptions
|
|
307
|
+
attr_accessor status: Types::OptionStatus
|
|
308
|
+
SENSITIVE: []
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
class DomainStatus
|
|
312
|
+
attr_accessor domain_id: ::String
|
|
313
|
+
attr_accessor domain_name: ::String
|
|
314
|
+
attr_accessor arn: ::String
|
|
315
|
+
attr_accessor created: bool
|
|
316
|
+
attr_accessor deleted: bool
|
|
317
|
+
attr_accessor doc_service: Types::ServiceEndpoint
|
|
318
|
+
attr_accessor search_service: Types::ServiceEndpoint
|
|
319
|
+
attr_accessor requires_index_documents: bool
|
|
320
|
+
attr_accessor processing: bool
|
|
321
|
+
attr_accessor search_instance_type: ::String
|
|
322
|
+
attr_accessor search_partition_count: ::Integer
|
|
323
|
+
attr_accessor search_instance_count: ::Integer
|
|
324
|
+
attr_accessor limits: Types::Limits
|
|
325
|
+
SENSITIVE: []
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
class DoubleArrayOptions
|
|
329
|
+
attr_accessor default_value: ::Float
|
|
330
|
+
attr_accessor source_fields: ::String
|
|
331
|
+
attr_accessor facet_enabled: bool
|
|
332
|
+
attr_accessor search_enabled: bool
|
|
333
|
+
attr_accessor return_enabled: bool
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class DoubleOptions
|
|
338
|
+
attr_accessor default_value: ::Float
|
|
339
|
+
attr_accessor source_field: ::String
|
|
340
|
+
attr_accessor facet_enabled: bool
|
|
341
|
+
attr_accessor search_enabled: bool
|
|
342
|
+
attr_accessor return_enabled: bool
|
|
343
|
+
attr_accessor sort_enabled: bool
|
|
344
|
+
SENSITIVE: []
|
|
345
|
+
end
|
|
346
|
+
|
|
347
|
+
class Expression
|
|
348
|
+
attr_accessor expression_name: ::String
|
|
349
|
+
attr_accessor expression_value: ::String
|
|
350
|
+
SENSITIVE: []
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
class ExpressionStatus
|
|
354
|
+
attr_accessor options: Types::Expression
|
|
355
|
+
attr_accessor status: Types::OptionStatus
|
|
356
|
+
SENSITIVE: []
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
class IndexDocumentsRequest
|
|
360
|
+
attr_accessor domain_name: ::String
|
|
361
|
+
SENSITIVE: []
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class IndexDocumentsResponse
|
|
365
|
+
attr_accessor field_names: ::Array[::String]
|
|
366
|
+
SENSITIVE: []
|
|
367
|
+
end
|
|
368
|
+
|
|
369
|
+
class IndexField
|
|
370
|
+
attr_accessor index_field_name: ::String
|
|
371
|
+
attr_accessor index_field_type: ("int" | "double" | "literal" | "text" | "date" | "latlon" | "int-array" | "double-array" | "literal-array" | "text-array" | "date-array")
|
|
372
|
+
attr_accessor int_options: Types::IntOptions
|
|
373
|
+
attr_accessor double_options: Types::DoubleOptions
|
|
374
|
+
attr_accessor literal_options: Types::LiteralOptions
|
|
375
|
+
attr_accessor text_options: Types::TextOptions
|
|
376
|
+
attr_accessor date_options: Types::DateOptions
|
|
377
|
+
attr_accessor lat_lon_options: Types::LatLonOptions
|
|
378
|
+
attr_accessor int_array_options: Types::IntArrayOptions
|
|
379
|
+
attr_accessor double_array_options: Types::DoubleArrayOptions
|
|
380
|
+
attr_accessor literal_array_options: Types::LiteralArrayOptions
|
|
381
|
+
attr_accessor text_array_options: Types::TextArrayOptions
|
|
382
|
+
attr_accessor date_array_options: Types::DateArrayOptions
|
|
383
|
+
SENSITIVE: []
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
class IndexFieldStatus
|
|
387
|
+
attr_accessor options: Types::IndexField
|
|
388
|
+
attr_accessor status: Types::OptionStatus
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class IntArrayOptions
|
|
393
|
+
attr_accessor default_value: ::Integer
|
|
394
|
+
attr_accessor source_fields: ::String
|
|
395
|
+
attr_accessor facet_enabled: bool
|
|
396
|
+
attr_accessor search_enabled: bool
|
|
397
|
+
attr_accessor return_enabled: bool
|
|
398
|
+
SENSITIVE: []
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
class IntOptions
|
|
402
|
+
attr_accessor default_value: ::Integer
|
|
403
|
+
attr_accessor source_field: ::String
|
|
404
|
+
attr_accessor facet_enabled: bool
|
|
405
|
+
attr_accessor search_enabled: bool
|
|
406
|
+
attr_accessor return_enabled: bool
|
|
407
|
+
attr_accessor sort_enabled: bool
|
|
408
|
+
SENSITIVE: []
|
|
409
|
+
end
|
|
410
|
+
|
|
411
|
+
class InternalException < Aws::EmptyStructure
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
class InvalidTypeException < Aws::EmptyStructure
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
class LatLonOptions
|
|
418
|
+
attr_accessor default_value: ::String
|
|
419
|
+
attr_accessor source_field: ::String
|
|
420
|
+
attr_accessor facet_enabled: bool
|
|
421
|
+
attr_accessor search_enabled: bool
|
|
422
|
+
attr_accessor return_enabled: bool
|
|
423
|
+
attr_accessor sort_enabled: bool
|
|
424
|
+
SENSITIVE: []
|
|
425
|
+
end
|
|
426
|
+
|
|
427
|
+
class LimitExceededException < Aws::EmptyStructure
|
|
428
|
+
end
|
|
429
|
+
|
|
430
|
+
class Limits
|
|
431
|
+
attr_accessor maximum_replication_count: ::Integer
|
|
432
|
+
attr_accessor maximum_partition_count: ::Integer
|
|
433
|
+
SENSITIVE: []
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
class ListDomainNamesResponse
|
|
437
|
+
attr_accessor domain_names: ::Hash[::String, ::String]
|
|
438
|
+
SENSITIVE: []
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
class LiteralArrayOptions
|
|
442
|
+
attr_accessor default_value: ::String
|
|
443
|
+
attr_accessor source_fields: ::String
|
|
444
|
+
attr_accessor facet_enabled: bool
|
|
445
|
+
attr_accessor search_enabled: bool
|
|
446
|
+
attr_accessor return_enabled: bool
|
|
447
|
+
SENSITIVE: []
|
|
448
|
+
end
|
|
449
|
+
|
|
450
|
+
class LiteralOptions
|
|
451
|
+
attr_accessor default_value: ::String
|
|
452
|
+
attr_accessor source_field: ::String
|
|
453
|
+
attr_accessor facet_enabled: bool
|
|
454
|
+
attr_accessor search_enabled: bool
|
|
455
|
+
attr_accessor return_enabled: bool
|
|
456
|
+
attr_accessor sort_enabled: bool
|
|
457
|
+
SENSITIVE: []
|
|
458
|
+
end
|
|
459
|
+
|
|
460
|
+
class OptionStatus
|
|
461
|
+
attr_accessor creation_date: ::Time
|
|
462
|
+
attr_accessor update_date: ::Time
|
|
463
|
+
attr_accessor update_version: ::Integer
|
|
464
|
+
attr_accessor state: ("RequiresIndexDocuments" | "Processing" | "Active" | "FailedToValidate")
|
|
465
|
+
attr_accessor pending_deletion: bool
|
|
466
|
+
SENSITIVE: []
|
|
467
|
+
end
|
|
468
|
+
|
|
469
|
+
class ResourceAlreadyExistsException < Aws::EmptyStructure
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
|
473
|
+
end
|
|
474
|
+
|
|
475
|
+
class ScalingParameters
|
|
476
|
+
attr_accessor desired_instance_type: ("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")
|
|
477
|
+
attr_accessor desired_replication_count: ::Integer
|
|
478
|
+
attr_accessor desired_partition_count: ::Integer
|
|
479
|
+
SENSITIVE: []
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
class ScalingParametersStatus
|
|
483
|
+
attr_accessor options: Types::ScalingParameters
|
|
484
|
+
attr_accessor status: Types::OptionStatus
|
|
485
|
+
SENSITIVE: []
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
class ServiceEndpoint
|
|
489
|
+
attr_accessor endpoint: ::String
|
|
490
|
+
SENSITIVE: []
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
class Suggester
|
|
494
|
+
attr_accessor suggester_name: ::String
|
|
495
|
+
attr_accessor document_suggester_options: Types::DocumentSuggesterOptions
|
|
496
|
+
SENSITIVE: []
|
|
497
|
+
end
|
|
498
|
+
|
|
499
|
+
class SuggesterStatus
|
|
500
|
+
attr_accessor options: Types::Suggester
|
|
501
|
+
attr_accessor status: Types::OptionStatus
|
|
502
|
+
SENSITIVE: []
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
class TextArrayOptions
|
|
506
|
+
attr_accessor default_value: ::String
|
|
507
|
+
attr_accessor source_fields: ::String
|
|
508
|
+
attr_accessor return_enabled: bool
|
|
509
|
+
attr_accessor highlight_enabled: bool
|
|
510
|
+
attr_accessor analysis_scheme: ::String
|
|
511
|
+
SENSITIVE: []
|
|
512
|
+
end
|
|
513
|
+
|
|
514
|
+
class TextOptions
|
|
515
|
+
attr_accessor default_value: ::String
|
|
516
|
+
attr_accessor source_field: ::String
|
|
517
|
+
attr_accessor return_enabled: bool
|
|
518
|
+
attr_accessor sort_enabled: bool
|
|
519
|
+
attr_accessor highlight_enabled: bool
|
|
520
|
+
attr_accessor analysis_scheme: ::String
|
|
521
|
+
SENSITIVE: []
|
|
522
|
+
end
|
|
523
|
+
|
|
524
|
+
class UpdateAvailabilityOptionsRequest
|
|
525
|
+
attr_accessor domain_name: ::String
|
|
526
|
+
attr_accessor multi_az: bool
|
|
527
|
+
SENSITIVE: []
|
|
528
|
+
end
|
|
529
|
+
|
|
530
|
+
class UpdateAvailabilityOptionsResponse
|
|
531
|
+
attr_accessor availability_options: Types::AvailabilityOptionsStatus
|
|
532
|
+
SENSITIVE: []
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
class UpdateDomainEndpointOptionsRequest
|
|
536
|
+
attr_accessor domain_name: ::String
|
|
537
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
|
|
538
|
+
SENSITIVE: []
|
|
539
|
+
end
|
|
540
|
+
|
|
541
|
+
class UpdateDomainEndpointOptionsResponse
|
|
542
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptionsStatus
|
|
543
|
+
SENSITIVE: []
|
|
544
|
+
end
|
|
545
|
+
|
|
546
|
+
class UpdateScalingParametersRequest
|
|
547
|
+
attr_accessor domain_name: ::String
|
|
548
|
+
attr_accessor scaling_parameters: Types::ScalingParameters
|
|
549
|
+
SENSITIVE: []
|
|
550
|
+
end
|
|
551
|
+
|
|
552
|
+
class UpdateScalingParametersResponse
|
|
553
|
+
attr_accessor scaling_parameters: Types::ScalingParametersStatus
|
|
554
|
+
SENSITIVE: []
|
|
555
|
+
end
|
|
556
|
+
|
|
557
|
+
class UpdateServiceAccessPoliciesRequest
|
|
558
|
+
attr_accessor domain_name: ::String
|
|
559
|
+
attr_accessor access_policies: ::String
|
|
560
|
+
SENSITIVE: []
|
|
561
|
+
end
|
|
562
|
+
|
|
563
|
+
class UpdateServiceAccessPoliciesResponse
|
|
564
|
+
attr_accessor access_policies: Types::AccessPoliciesStatus
|
|
565
|
+
SENSITIVE: []
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
class ValidationException < Aws::EmptyStructure
|
|
569
|
+
end
|
|
570
|
+
end
|
|
571
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudSearch
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
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.52.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.191.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.191.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,13 +66,18 @@ files:
|
|
|
66
66
|
- lib/aws-sdk-cloudsearch/plugins/endpoints.rb
|
|
67
67
|
- lib/aws-sdk-cloudsearch/resource.rb
|
|
68
68
|
- lib/aws-sdk-cloudsearch/types.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
70
75
|
licenses:
|
|
71
76
|
- Apache-2.0
|
|
72
77
|
metadata:
|
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearch
|
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearch/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
80
|
+
post_install_message:
|
|
76
81
|
rdoc_options: []
|
|
77
82
|
require_paths:
|
|
78
83
|
- lib
|
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
92
|
- !ruby/object:Gem::Version
|
|
88
93
|
version: '0'
|
|
89
94
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
95
|
+
rubygems_version: 3.4.10
|
|
96
|
+
signing_key:
|
|
92
97
|
specification_version: 4
|
|
93
98
|
summary: AWS SDK for Ruby - Amazon CloudSearch
|
|
94
99
|
test_files: []
|