aws-sdk-cloudsearch 1.17.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-cloudsearch.rb +9 -4
- data/lib/aws-sdk-cloudsearch/client.rb +72 -14
- data/lib/aws-sdk-cloudsearch/client_api.rb +14 -0
- data/lib/aws-sdk-cloudsearch/customizations.rb +1 -0
- data/lib/aws-sdk-cloudsearch/errors.rb +90 -0
- data/lib/aws-sdk-cloudsearch/resource.rb +3 -0
- data/lib/aws-sdk-cloudsearch/types.rb +119 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: de0dd5501543b592dc21ecf3a3dd8f88b96e8abf6237be4aa7db45a65fdc6bcf
|
4
|
+
data.tar.gz: d490b4be636506a53a70c8c080ed4f50cc8fba1288fffa4fa6f27e060c1100e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59cce68915b630b6292162214dcc16a1907506455ac14534cc211ef7ab27fc57fdd65da7632cc58e73927130fae0126f20c1aaf7abfaf331dcaa7fbcd4bafc4e
|
7
|
+
data.tar.gz: 71e87bca26292b3573e376ccc47b44ac81cb009abd80360e683c9c2c28c59abc3da9165aa5a4dc86b342bb24c56cc459548b93b412e787dc0a95e039f792c1cc
|
data/lib/aws-sdk-cloudsearch.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-cloudsearch/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# cloud_search = Aws::CloudSearch::Client.new
|
30
|
+
# resp = cloud_search.build_suggesters(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon CloudSearch
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon CloudSearch are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::CloudSearch::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon CloudSearch API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-cloudsearch/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::CloudSearch
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.22.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearch)
|
31
34
|
|
32
35
|
module Aws::CloudSearch
|
36
|
+
# An API client for CloudSearch. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::CloudSearch::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::CloudSearch
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::CloudSearch
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::CloudSearch
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::CloudSearch
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::CloudSearch
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::CloudSearch
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::CloudSearch
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::CloudSearch
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::CloudSearch
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::CloudSearch
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1772,7 +1830,7 @@ module Aws::CloudSearch
|
|
1772
1830
|
params: params,
|
1773
1831
|
config: config)
|
1774
1832
|
context[:gem_name] = 'aws-sdk-cloudsearch'
|
1775
|
-
context[:gem_version] = '1.
|
1833
|
+
context[:gem_version] = '1.22.0'
|
1776
1834
|
Seahorse::Client::Request.new(handlers, context)
|
1777
1835
|
end
|
1778
1836
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -329,6 +331,8 @@ module Aws::CloudSearch
|
|
329
331
|
DescribeSuggestersResponse.add_member(:suggesters, Shapes::ShapeRef.new(shape: SuggesterStatusList, required: true, location_name: "Suggesters"))
|
330
332
|
DescribeSuggestersResponse.struct_class = Types::DescribeSuggestersResponse
|
331
333
|
|
334
|
+
DisabledOperationException.struct_class = Types::DisabledOperationException
|
335
|
+
|
332
336
|
DocumentSuggesterOptions.add_member(:source_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "SourceField"))
|
333
337
|
DocumentSuggesterOptions.add_member(:fuzzy_matching, Shapes::ShapeRef.new(shape: SuggesterFuzzyMatching, location_name: "FuzzyMatching"))
|
334
338
|
DocumentSuggesterOptions.add_member(:sort_expression, Shapes::ShapeRef.new(shape: String, location_name: "SortExpression"))
|
@@ -435,6 +439,10 @@ module Aws::CloudSearch
|
|
435
439
|
IntOptions.add_member(:sort_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SortEnabled"))
|
436
440
|
IntOptions.struct_class = Types::IntOptions
|
437
441
|
|
442
|
+
InternalException.struct_class = Types::InternalException
|
443
|
+
|
444
|
+
InvalidTypeException.struct_class = Types::InvalidTypeException
|
445
|
+
|
438
446
|
LatLonOptions.add_member(:default_value, Shapes::ShapeRef.new(shape: FieldValue, location_name: "DefaultValue"))
|
439
447
|
LatLonOptions.add_member(:source_field, Shapes::ShapeRef.new(shape: FieldName, location_name: "SourceField"))
|
440
448
|
LatLonOptions.add_member(:facet_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "FacetEnabled"))
|
@@ -443,6 +451,8 @@ module Aws::CloudSearch
|
|
443
451
|
LatLonOptions.add_member(:sort_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SortEnabled"))
|
444
452
|
LatLonOptions.struct_class = Types::LatLonOptions
|
445
453
|
|
454
|
+
LimitExceededException.struct_class = Types::LimitExceededException
|
455
|
+
|
446
456
|
Limits.add_member(:maximum_replication_count, Shapes::ShapeRef.new(shape: MaximumReplicationCount, required: true, location_name: "MaximumReplicationCount"))
|
447
457
|
Limits.add_member(:maximum_partition_count, Shapes::ShapeRef.new(shape: MaximumPartitionCount, required: true, location_name: "MaximumPartitionCount"))
|
448
458
|
Limits.struct_class = Types::Limits
|
@@ -472,6 +482,8 @@ module Aws::CloudSearch
|
|
472
482
|
OptionStatus.add_member(:pending_deletion, Shapes::ShapeRef.new(shape: Boolean, location_name: "PendingDeletion"))
|
473
483
|
OptionStatus.struct_class = Types::OptionStatus
|
474
484
|
|
485
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
486
|
+
|
475
487
|
ScalingParameters.add_member(:desired_instance_type, Shapes::ShapeRef.new(shape: PartitionInstanceType, location_name: "DesiredInstanceType"))
|
476
488
|
ScalingParameters.add_member(:desired_replication_count, Shapes::ShapeRef.new(shape: UIntValue, location_name: "DesiredReplicationCount"))
|
477
489
|
ScalingParameters.add_member(:desired_partition_count, Shapes::ShapeRef.new(shape: UIntValue, location_name: "DesiredPartitionCount"))
|
@@ -539,6 +551,8 @@ module Aws::CloudSearch
|
|
539
551
|
UpdateServiceAccessPoliciesResponse.add_member(:access_policies, Shapes::ShapeRef.new(shape: AccessPoliciesStatus, required: true, location_name: "AccessPolicies"))
|
540
552
|
UpdateServiceAccessPoliciesResponse.struct_class = Types::UpdateServiceAccessPoliciesResponse
|
541
553
|
|
554
|
+
ValidationException.struct_class = Types::ValidationException
|
555
|
+
|
542
556
|
|
543
557
|
# @api private
|
544
558
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,35 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CloudSearch
|
11
|
+
|
12
|
+
# When CloudSearch returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::CloudSearch::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all CloudSearch errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::CloudSearch::Errors::ServiceError
|
20
|
+
# # rescues all CloudSearch API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {BaseException}
|
31
|
+
# * {DisabledOperationException}
|
32
|
+
# * {InternalException}
|
33
|
+
# * {InvalidTypeException}
|
34
|
+
# * {LimitExceededException}
|
35
|
+
# * {ResourceNotFoundException}
|
36
|
+
# * {ValidationException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +59,66 @@ module Aws::CloudSearch
|
|
28
59
|
def message
|
29
60
|
@message || @data[:message]
|
30
61
|
end
|
62
|
+
end
|
63
|
+
|
64
|
+
class DisabledOperationException < ServiceError
|
31
65
|
|
66
|
+
# @param [Seahorse::Client::RequestContext] context
|
67
|
+
# @param [String] message
|
68
|
+
# @param [Aws::CloudSearch::Types::DisabledOperationException] data
|
69
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
70
|
+
super(context, message, data)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
class InternalException < ServiceError
|
75
|
+
|
76
|
+
# @param [Seahorse::Client::RequestContext] context
|
77
|
+
# @param [String] message
|
78
|
+
# @param [Aws::CloudSearch::Types::InternalException] data
|
79
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
80
|
+
super(context, message, data)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class InvalidTypeException < ServiceError
|
85
|
+
|
86
|
+
# @param [Seahorse::Client::RequestContext] context
|
87
|
+
# @param [String] message
|
88
|
+
# @param [Aws::CloudSearch::Types::InvalidTypeException] data
|
89
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
90
|
+
super(context, message, data)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class LimitExceededException < ServiceError
|
95
|
+
|
96
|
+
# @param [Seahorse::Client::RequestContext] context
|
97
|
+
# @param [String] message
|
98
|
+
# @param [Aws::CloudSearch::Types::LimitExceededException] data
|
99
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
100
|
+
super(context, message, data)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
class ResourceNotFoundException < ServiceError
|
105
|
+
|
106
|
+
# @param [Seahorse::Client::RequestContext] context
|
107
|
+
# @param [String] message
|
108
|
+
# @param [Aws::CloudSearch::Types::ResourceNotFoundException] data
|
109
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
110
|
+
super(context, message, data)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class ValidationException < ServiceError
|
115
|
+
|
116
|
+
# @param [Seahorse::Client::RequestContext] context
|
117
|
+
# @param [String] message
|
118
|
+
# @param [Aws::CloudSearch::Types::ValidationException] data
|
119
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
120
|
+
super(context, message, data)
|
121
|
+
end
|
32
122
|
end
|
33
123
|
|
34
124
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CloudSearch
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -29,6 +31,7 @@ module Aws::CloudSearch
|
|
29
31
|
class AccessPoliciesStatus < Struct.new(
|
30
32
|
:options,
|
31
33
|
:status)
|
34
|
+
SENSITIVE = []
|
32
35
|
include Aws::Structure
|
33
36
|
end
|
34
37
|
|
@@ -105,6 +108,7 @@ module Aws::CloudSearch
|
|
105
108
|
:stemming_dictionary,
|
106
109
|
:japanese_tokenization_dictionary,
|
107
110
|
:algorithmic_stemming)
|
111
|
+
SENSITIVE = []
|
108
112
|
include Aws::Structure
|
109
113
|
end
|
110
114
|
|
@@ -151,6 +155,7 @@ module Aws::CloudSearch
|
|
151
155
|
:analysis_scheme_name,
|
152
156
|
:analysis_scheme_language,
|
153
157
|
:analysis_options)
|
158
|
+
SENSITIVE = []
|
154
159
|
include Aws::Structure
|
155
160
|
end
|
156
161
|
|
@@ -171,6 +176,7 @@ module Aws::CloudSearch
|
|
171
176
|
class AnalysisSchemeStatus < Struct.new(
|
172
177
|
:options,
|
173
178
|
:status)
|
179
|
+
SENSITIVE = []
|
174
180
|
include Aws::Structure
|
175
181
|
end
|
176
182
|
|
@@ -187,6 +193,7 @@ module Aws::CloudSearch
|
|
187
193
|
class AvailabilityOptionsStatus < Struct.new(
|
188
194
|
:options,
|
189
195
|
:status)
|
196
|
+
SENSITIVE = []
|
190
197
|
include Aws::Structure
|
191
198
|
end
|
192
199
|
|
@@ -203,6 +210,7 @@ module Aws::CloudSearch
|
|
203
210
|
class BaseException < Struct.new(
|
204
211
|
:code,
|
205
212
|
:message)
|
213
|
+
SENSITIVE = []
|
206
214
|
include Aws::Structure
|
207
215
|
end
|
208
216
|
|
@@ -225,6 +233,7 @@ module Aws::CloudSearch
|
|
225
233
|
#
|
226
234
|
class BuildSuggestersRequest < Struct.new(
|
227
235
|
:domain_name)
|
236
|
+
SENSITIVE = []
|
228
237
|
include Aws::Structure
|
229
238
|
end
|
230
239
|
|
@@ -237,6 +246,7 @@ module Aws::CloudSearch
|
|
237
246
|
#
|
238
247
|
class BuildSuggestersResponse < Struct.new(
|
239
248
|
:field_names)
|
249
|
+
SENSITIVE = []
|
240
250
|
include Aws::Structure
|
241
251
|
end
|
242
252
|
|
@@ -259,6 +269,7 @@ module Aws::CloudSearch
|
|
259
269
|
#
|
260
270
|
class CreateDomainRequest < Struct.new(
|
261
271
|
:domain_name)
|
272
|
+
SENSITIVE = []
|
262
273
|
include Aws::Structure
|
263
274
|
end
|
264
275
|
|
@@ -271,6 +282,7 @@ module Aws::CloudSearch
|
|
271
282
|
#
|
272
283
|
class CreateDomainResponse < Struct.new(
|
273
284
|
:domain_status)
|
285
|
+
SENSITIVE = []
|
274
286
|
include Aws::Structure
|
275
287
|
end
|
276
288
|
|
@@ -317,6 +329,7 @@ module Aws::CloudSearch
|
|
317
329
|
:facet_enabled,
|
318
330
|
:search_enabled,
|
319
331
|
:return_enabled)
|
332
|
+
SENSITIVE = []
|
320
333
|
include Aws::Structure
|
321
334
|
end
|
322
335
|
|
@@ -385,6 +398,7 @@ module Aws::CloudSearch
|
|
385
398
|
:search_enabled,
|
386
399
|
:return_enabled,
|
387
400
|
:sort_enabled)
|
401
|
+
SENSITIVE = []
|
388
402
|
include Aws::Structure
|
389
403
|
end
|
390
404
|
|
@@ -428,6 +442,7 @@ module Aws::CloudSearch
|
|
428
442
|
class DefineAnalysisSchemeRequest < Struct.new(
|
429
443
|
:domain_name,
|
430
444
|
:analysis_scheme)
|
445
|
+
SENSITIVE = []
|
431
446
|
include Aws::Structure
|
432
447
|
end
|
433
448
|
|
@@ -440,6 +455,7 @@ module Aws::CloudSearch
|
|
440
455
|
#
|
441
456
|
class DefineAnalysisSchemeResponse < Struct.new(
|
442
457
|
:analysis_scheme)
|
458
|
+
SENSITIVE = []
|
443
459
|
include Aws::Structure
|
444
460
|
end
|
445
461
|
|
@@ -474,6 +490,7 @@ module Aws::CloudSearch
|
|
474
490
|
class DefineExpressionRequest < Struct.new(
|
475
491
|
:domain_name,
|
476
492
|
:expression)
|
493
|
+
SENSITIVE = []
|
477
494
|
include Aws::Structure
|
478
495
|
end
|
479
496
|
|
@@ -486,6 +503,7 @@ module Aws::CloudSearch
|
|
486
503
|
#
|
487
504
|
class DefineExpressionResponse < Struct.new(
|
488
505
|
:expression)
|
506
|
+
SENSITIVE = []
|
489
507
|
include Aws::Structure
|
490
508
|
end
|
491
509
|
|
@@ -601,6 +619,7 @@ module Aws::CloudSearch
|
|
601
619
|
class DefineIndexFieldRequest < Struct.new(
|
602
620
|
:domain_name,
|
603
621
|
:index_field)
|
622
|
+
SENSITIVE = []
|
604
623
|
include Aws::Structure
|
605
624
|
end
|
606
625
|
|
@@ -613,6 +632,7 @@ module Aws::CloudSearch
|
|
613
632
|
#
|
614
633
|
class DefineIndexFieldResponse < Struct.new(
|
615
634
|
:index_field)
|
635
|
+
SENSITIVE = []
|
616
636
|
include Aws::Structure
|
617
637
|
end
|
618
638
|
|
@@ -652,6 +672,7 @@ module Aws::CloudSearch
|
|
652
672
|
class DefineSuggesterRequest < Struct.new(
|
653
673
|
:domain_name,
|
654
674
|
:suggester)
|
675
|
+
SENSITIVE = []
|
655
676
|
include Aws::Structure
|
656
677
|
end
|
657
678
|
|
@@ -664,6 +685,7 @@ module Aws::CloudSearch
|
|
664
685
|
#
|
665
686
|
class DefineSuggesterResponse < Struct.new(
|
666
687
|
:suggester)
|
688
|
+
SENSITIVE = []
|
667
689
|
include Aws::Structure
|
668
690
|
end
|
669
691
|
|
@@ -693,6 +715,7 @@ module Aws::CloudSearch
|
|
693
715
|
class DeleteAnalysisSchemeRequest < Struct.new(
|
694
716
|
:domain_name,
|
695
717
|
:analysis_scheme_name)
|
718
|
+
SENSITIVE = []
|
696
719
|
include Aws::Structure
|
697
720
|
end
|
698
721
|
|
@@ -705,6 +728,7 @@ module Aws::CloudSearch
|
|
705
728
|
#
|
706
729
|
class DeleteAnalysisSchemeResponse < Struct.new(
|
707
730
|
:analysis_scheme)
|
731
|
+
SENSITIVE = []
|
708
732
|
include Aws::Structure
|
709
733
|
end
|
710
734
|
|
@@ -724,6 +748,7 @@ module Aws::CloudSearch
|
|
724
748
|
#
|
725
749
|
class DeleteDomainRequest < Struct.new(
|
726
750
|
:domain_name)
|
751
|
+
SENSITIVE = []
|
727
752
|
include Aws::Structure
|
728
753
|
end
|
729
754
|
|
@@ -737,6 +762,7 @@ module Aws::CloudSearch
|
|
737
762
|
#
|
738
763
|
class DeleteDomainResponse < Struct.new(
|
739
764
|
:domain_status)
|
765
|
+
SENSITIVE = []
|
740
766
|
include Aws::Structure
|
741
767
|
end
|
742
768
|
|
@@ -766,6 +792,7 @@ module Aws::CloudSearch
|
|
766
792
|
class DeleteExpressionRequest < Struct.new(
|
767
793
|
:domain_name,
|
768
794
|
:expression_name)
|
795
|
+
SENSITIVE = []
|
769
796
|
include Aws::Structure
|
770
797
|
end
|
771
798
|
|
@@ -778,6 +805,7 @@ module Aws::CloudSearch
|
|
778
805
|
#
|
779
806
|
class DeleteExpressionResponse < Struct.new(
|
780
807
|
:expression)
|
808
|
+
SENSITIVE = []
|
781
809
|
include Aws::Structure
|
782
810
|
end
|
783
811
|
|
@@ -808,6 +836,7 @@ module Aws::CloudSearch
|
|
808
836
|
class DeleteIndexFieldRequest < Struct.new(
|
809
837
|
:domain_name,
|
810
838
|
:index_field_name)
|
839
|
+
SENSITIVE = []
|
811
840
|
include Aws::Structure
|
812
841
|
end
|
813
842
|
|
@@ -819,6 +848,7 @@ module Aws::CloudSearch
|
|
819
848
|
#
|
820
849
|
class DeleteIndexFieldResponse < Struct.new(
|
821
850
|
:index_field)
|
851
|
+
SENSITIVE = []
|
822
852
|
include Aws::Structure
|
823
853
|
end
|
824
854
|
|
@@ -848,6 +878,7 @@ module Aws::CloudSearch
|
|
848
878
|
class DeleteSuggesterRequest < Struct.new(
|
849
879
|
:domain_name,
|
850
880
|
:suggester_name)
|
881
|
+
SENSITIVE = []
|
851
882
|
include Aws::Structure
|
852
883
|
end
|
853
884
|
|
@@ -860,6 +891,7 @@ module Aws::CloudSearch
|
|
860
891
|
#
|
861
892
|
class DeleteSuggesterResponse < Struct.new(
|
862
893
|
:suggester)
|
894
|
+
SENSITIVE = []
|
863
895
|
include Aws::Structure
|
864
896
|
end
|
865
897
|
|
@@ -896,6 +928,7 @@ module Aws::CloudSearch
|
|
896
928
|
:domain_name,
|
897
929
|
:analysis_scheme_names,
|
898
930
|
:deployed)
|
931
|
+
SENSITIVE = []
|
899
932
|
include Aws::Structure
|
900
933
|
end
|
901
934
|
|
@@ -908,6 +941,7 @@ module Aws::CloudSearch
|
|
908
941
|
#
|
909
942
|
class DescribeAnalysisSchemesResponse < Struct.new(
|
910
943
|
:analysis_schemes)
|
944
|
+
SENSITIVE = []
|
911
945
|
include Aws::Structure
|
912
946
|
end
|
913
947
|
|
@@ -936,6 +970,7 @@ module Aws::CloudSearch
|
|
936
970
|
class DescribeAvailabilityOptionsRequest < Struct.new(
|
937
971
|
:domain_name,
|
938
972
|
:deployed)
|
973
|
+
SENSITIVE = []
|
939
974
|
include Aws::Structure
|
940
975
|
end
|
941
976
|
|
@@ -950,6 +985,7 @@ module Aws::CloudSearch
|
|
950
985
|
#
|
951
986
|
class DescribeAvailabilityOptionsResponse < Struct.new(
|
952
987
|
:availability_options)
|
988
|
+
SENSITIVE = []
|
953
989
|
include Aws::Structure
|
954
990
|
end
|
955
991
|
|
@@ -979,6 +1015,7 @@ module Aws::CloudSearch
|
|
979
1015
|
class DescribeDomainEndpointOptionsRequest < Struct.new(
|
980
1016
|
:domain_name,
|
981
1017
|
:deployed)
|
1018
|
+
SENSITIVE = []
|
982
1019
|
include Aws::Structure
|
983
1020
|
end
|
984
1021
|
|
@@ -991,6 +1028,7 @@ module Aws::CloudSearch
|
|
991
1028
|
#
|
992
1029
|
class DescribeDomainEndpointOptionsResponse < Struct.new(
|
993
1030
|
:domain_endpoint_options)
|
1031
|
+
SENSITIVE = []
|
994
1032
|
include Aws::Structure
|
995
1033
|
end
|
996
1034
|
|
@@ -1012,6 +1050,7 @@ module Aws::CloudSearch
|
|
1012
1050
|
#
|
1013
1051
|
class DescribeDomainsRequest < Struct.new(
|
1014
1052
|
:domain_names)
|
1053
|
+
SENSITIVE = []
|
1015
1054
|
include Aws::Structure
|
1016
1055
|
end
|
1017
1056
|
|
@@ -1024,6 +1063,7 @@ module Aws::CloudSearch
|
|
1024
1063
|
#
|
1025
1064
|
class DescribeDomainsResponse < Struct.new(
|
1026
1065
|
:domain_status_list)
|
1066
|
+
SENSITIVE = []
|
1027
1067
|
include Aws::Structure
|
1028
1068
|
end
|
1029
1069
|
|
@@ -1060,6 +1100,7 @@ module Aws::CloudSearch
|
|
1060
1100
|
:domain_name,
|
1061
1101
|
:expression_names,
|
1062
1102
|
:deployed)
|
1103
|
+
SENSITIVE = []
|
1063
1104
|
include Aws::Structure
|
1064
1105
|
end
|
1065
1106
|
|
@@ -1072,6 +1113,7 @@ module Aws::CloudSearch
|
|
1072
1113
|
#
|
1073
1114
|
class DescribeExpressionsResponse < Struct.new(
|
1074
1115
|
:expressions)
|
1116
|
+
SENSITIVE = []
|
1075
1117
|
include Aws::Structure
|
1076
1118
|
end
|
1077
1119
|
|
@@ -1108,6 +1150,7 @@ module Aws::CloudSearch
|
|
1108
1150
|
:domain_name,
|
1109
1151
|
:field_names,
|
1110
1152
|
:deployed)
|
1153
|
+
SENSITIVE = []
|
1111
1154
|
include Aws::Structure
|
1112
1155
|
end
|
1113
1156
|
|
@@ -1120,6 +1163,7 @@ module Aws::CloudSearch
|
|
1120
1163
|
#
|
1121
1164
|
class DescribeIndexFieldsResponse < Struct.new(
|
1122
1165
|
:index_fields)
|
1166
|
+
SENSITIVE = []
|
1123
1167
|
include Aws::Structure
|
1124
1168
|
end
|
1125
1169
|
|
@@ -1142,6 +1186,7 @@ module Aws::CloudSearch
|
|
1142
1186
|
#
|
1143
1187
|
class DescribeScalingParametersRequest < Struct.new(
|
1144
1188
|
:domain_name)
|
1189
|
+
SENSITIVE = []
|
1145
1190
|
include Aws::Structure
|
1146
1191
|
end
|
1147
1192
|
|
@@ -1155,6 +1200,7 @@ module Aws::CloudSearch
|
|
1155
1200
|
#
|
1156
1201
|
class DescribeScalingParametersResponse < Struct.new(
|
1157
1202
|
:scaling_parameters)
|
1203
|
+
SENSITIVE = []
|
1158
1204
|
include Aws::Structure
|
1159
1205
|
end
|
1160
1206
|
|
@@ -1183,6 +1229,7 @@ module Aws::CloudSearch
|
|
1183
1229
|
class DescribeServiceAccessPoliciesRequest < Struct.new(
|
1184
1230
|
:domain_name,
|
1185
1231
|
:deployed)
|
1232
|
+
SENSITIVE = []
|
1186
1233
|
include Aws::Structure
|
1187
1234
|
end
|
1188
1235
|
|
@@ -1194,6 +1241,7 @@ module Aws::CloudSearch
|
|
1194
1241
|
#
|
1195
1242
|
class DescribeServiceAccessPoliciesResponse < Struct.new(
|
1196
1243
|
:access_policies)
|
1244
|
+
SENSITIVE = []
|
1197
1245
|
include Aws::Structure
|
1198
1246
|
end
|
1199
1247
|
|
@@ -1229,6 +1277,7 @@ module Aws::CloudSearch
|
|
1229
1277
|
:domain_name,
|
1230
1278
|
:suggester_names,
|
1231
1279
|
:deployed)
|
1280
|
+
SENSITIVE = []
|
1232
1281
|
include Aws::Structure
|
1233
1282
|
end
|
1234
1283
|
|
@@ -1240,9 +1289,15 @@ module Aws::CloudSearch
|
|
1240
1289
|
#
|
1241
1290
|
class DescribeSuggestersResponse < Struct.new(
|
1242
1291
|
:suggesters)
|
1292
|
+
SENSITIVE = []
|
1243
1293
|
include Aws::Structure
|
1244
1294
|
end
|
1245
1295
|
|
1296
|
+
# The request was rejected because it attempted an operation which is
|
1297
|
+
# not enabled.
|
1298
|
+
#
|
1299
|
+
class DisabledOperationException < Aws::EmptyStructure; end
|
1300
|
+
|
1246
1301
|
# Options for a search suggester.
|
1247
1302
|
#
|
1248
1303
|
# @note When making an API call, you may pass DocumentSuggesterOptions
|
@@ -1281,6 +1336,7 @@ module Aws::CloudSearch
|
|
1281
1336
|
:source_field,
|
1282
1337
|
:fuzzy_matching,
|
1283
1338
|
:sort_expression)
|
1339
|
+
SENSITIVE = []
|
1284
1340
|
include Aws::Structure
|
1285
1341
|
end
|
1286
1342
|
|
@@ -1305,6 +1361,7 @@ module Aws::CloudSearch
|
|
1305
1361
|
class DomainEndpointOptions < Struct.new(
|
1306
1362
|
:enforce_https,
|
1307
1363
|
:tls_security_policy)
|
1364
|
+
SENSITIVE = []
|
1308
1365
|
include Aws::Structure
|
1309
1366
|
end
|
1310
1367
|
|
@@ -1321,6 +1378,7 @@ module Aws::CloudSearch
|
|
1321
1378
|
class DomainEndpointOptionsStatus < Struct.new(
|
1322
1379
|
:options,
|
1323
1380
|
:status)
|
1381
|
+
SENSITIVE = []
|
1324
1382
|
include Aws::Structure
|
1325
1383
|
end
|
1326
1384
|
|
@@ -1411,6 +1469,7 @@ module Aws::CloudSearch
|
|
1411
1469
|
:search_partition_count,
|
1412
1470
|
:search_instance_count,
|
1413
1471
|
:limits)
|
1472
|
+
SENSITIVE = []
|
1414
1473
|
include Aws::Structure
|
1415
1474
|
end
|
1416
1475
|
|
@@ -1457,6 +1516,7 @@ module Aws::CloudSearch
|
|
1457
1516
|
:facet_enabled,
|
1458
1517
|
:search_enabled,
|
1459
1518
|
:return_enabled)
|
1519
|
+
SENSITIVE = []
|
1460
1520
|
include Aws::Structure
|
1461
1521
|
end
|
1462
1522
|
|
@@ -1510,6 +1570,7 @@ module Aws::CloudSearch
|
|
1510
1570
|
:search_enabled,
|
1511
1571
|
:return_enabled,
|
1512
1572
|
:sort_enabled)
|
1573
|
+
SENSITIVE = []
|
1513
1574
|
include Aws::Structure
|
1514
1575
|
end
|
1515
1576
|
|
@@ -1544,6 +1605,7 @@ module Aws::CloudSearch
|
|
1544
1605
|
class Expression < Struct.new(
|
1545
1606
|
:expression_name,
|
1546
1607
|
:expression_value)
|
1608
|
+
SENSITIVE = []
|
1547
1609
|
include Aws::Structure
|
1548
1610
|
end
|
1549
1611
|
|
@@ -1561,6 +1623,7 @@ module Aws::CloudSearch
|
|
1561
1623
|
class ExpressionStatus < Struct.new(
|
1562
1624
|
:options,
|
1563
1625
|
:status)
|
1626
|
+
SENSITIVE = []
|
1564
1627
|
include Aws::Structure
|
1565
1628
|
end
|
1566
1629
|
|
@@ -1583,6 +1646,7 @@ module Aws::CloudSearch
|
|
1583
1646
|
#
|
1584
1647
|
class IndexDocumentsRequest < Struct.new(
|
1585
1648
|
:domain_name)
|
1649
|
+
SENSITIVE = []
|
1586
1650
|
include Aws::Structure
|
1587
1651
|
end
|
1588
1652
|
|
@@ -1595,6 +1659,7 @@ module Aws::CloudSearch
|
|
1595
1659
|
#
|
1596
1660
|
class IndexDocumentsResponse < Struct.new(
|
1597
1661
|
:field_names)
|
1662
|
+
SENSITIVE = []
|
1598
1663
|
include Aws::Structure
|
1599
1664
|
end
|
1600
1665
|
|
@@ -1806,6 +1871,7 @@ module Aws::CloudSearch
|
|
1806
1871
|
:literal_array_options,
|
1807
1872
|
:text_array_options,
|
1808
1873
|
:date_array_options)
|
1874
|
+
SENSITIVE = []
|
1809
1875
|
include Aws::Structure
|
1810
1876
|
end
|
1811
1877
|
|
@@ -1824,6 +1890,7 @@ module Aws::CloudSearch
|
|
1824
1890
|
class IndexFieldStatus < Struct.new(
|
1825
1891
|
:options,
|
1826
1892
|
:status)
|
1893
|
+
SENSITIVE = []
|
1827
1894
|
include Aws::Structure
|
1828
1895
|
end
|
1829
1896
|
|
@@ -1870,6 +1937,7 @@ module Aws::CloudSearch
|
|
1870
1937
|
:facet_enabled,
|
1871
1938
|
:search_enabled,
|
1872
1939
|
:return_enabled)
|
1940
|
+
SENSITIVE = []
|
1873
1941
|
include Aws::Structure
|
1874
1942
|
end
|
1875
1943
|
|
@@ -1923,9 +1991,25 @@ module Aws::CloudSearch
|
|
1923
1991
|
:search_enabled,
|
1924
1992
|
:return_enabled,
|
1925
1993
|
:sort_enabled)
|
1994
|
+
SENSITIVE = []
|
1926
1995
|
include Aws::Structure
|
1927
1996
|
end
|
1928
1997
|
|
1998
|
+
# An internal error occurred while processing the request. If this
|
1999
|
+
# problem persists, report an issue from the [Service Health
|
2000
|
+
# Dashboard][1].
|
2001
|
+
#
|
2002
|
+
#
|
2003
|
+
#
|
2004
|
+
# [1]: http://status.aws.amazon.com/
|
2005
|
+
#
|
2006
|
+
class InternalException < Aws::EmptyStructure; end
|
2007
|
+
|
2008
|
+
# The request was rejected because it specified an invalid type
|
2009
|
+
# definition.
|
2010
|
+
#
|
2011
|
+
class InvalidTypeException < Aws::EmptyStructure; end
|
2012
|
+
|
1929
2013
|
# Options for a latlon field. A latlon field contains a location stored
|
1930
2014
|
# as a latitude and longitude value pair. Present if `IndexFieldType`
|
1931
2015
|
# specifies the field is of type `latlon`. All options are enabled by
|
@@ -1991,9 +2075,15 @@ module Aws::CloudSearch
|
|
1991
2075
|
:search_enabled,
|
1992
2076
|
:return_enabled,
|
1993
2077
|
:sort_enabled)
|
2078
|
+
SENSITIVE = []
|
1994
2079
|
include Aws::Structure
|
1995
2080
|
end
|
1996
2081
|
|
2082
|
+
# The request was rejected because a resource limit has already been
|
2083
|
+
# met.
|
2084
|
+
#
|
2085
|
+
class LimitExceededException < Aws::EmptyStructure; end
|
2086
|
+
|
1997
2087
|
# @!attribute [rw] maximum_replication_count
|
1998
2088
|
# @return [Integer]
|
1999
2089
|
#
|
@@ -2003,6 +2093,7 @@ module Aws::CloudSearch
|
|
2003
2093
|
class Limits < Struct.new(
|
2004
2094
|
:maximum_replication_count,
|
2005
2095
|
:maximum_partition_count)
|
2096
|
+
SENSITIVE = []
|
2006
2097
|
include Aws::Structure
|
2007
2098
|
end
|
2008
2099
|
|
@@ -2015,6 +2106,7 @@ module Aws::CloudSearch
|
|
2015
2106
|
#
|
2016
2107
|
class ListDomainNamesResponse < Struct.new(
|
2017
2108
|
:domain_names)
|
2109
|
+
SENSITIVE = []
|
2018
2110
|
include Aws::Structure
|
2019
2111
|
end
|
2020
2112
|
|
@@ -2061,6 +2153,7 @@ module Aws::CloudSearch
|
|
2061
2153
|
:facet_enabled,
|
2062
2154
|
:search_enabled,
|
2063
2155
|
:return_enabled)
|
2156
|
+
SENSITIVE = []
|
2064
2157
|
include Aws::Structure
|
2065
2158
|
end
|
2066
2159
|
|
@@ -2127,6 +2220,7 @@ module Aws::CloudSearch
|
|
2127
2220
|
:search_enabled,
|
2128
2221
|
:return_enabled,
|
2129
2222
|
:sort_enabled)
|
2223
|
+
SENSITIVE = []
|
2130
2224
|
include Aws::Structure
|
2131
2225
|
end
|
2132
2226
|
|
@@ -2170,9 +2264,15 @@ module Aws::CloudSearch
|
|
2170
2264
|
:update_version,
|
2171
2265
|
:state,
|
2172
2266
|
:pending_deletion)
|
2267
|
+
SENSITIVE = []
|
2173
2268
|
include Aws::Structure
|
2174
2269
|
end
|
2175
2270
|
|
2271
|
+
# The request was rejected because it attempted to reference a resource
|
2272
|
+
# that does not exist.
|
2273
|
+
#
|
2274
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
2275
|
+
|
2176
2276
|
# The desired instance type and desired number of replicas of each index
|
2177
2277
|
# partition.
|
2178
2278
|
#
|
@@ -2205,6 +2305,7 @@ module Aws::CloudSearch
|
|
2205
2305
|
:desired_instance_type,
|
2206
2306
|
:desired_replication_count,
|
2207
2307
|
:desired_partition_count)
|
2308
|
+
SENSITIVE = []
|
2208
2309
|
include Aws::Structure
|
2209
2310
|
end
|
2210
2311
|
|
@@ -2222,6 +2323,7 @@ module Aws::CloudSearch
|
|
2222
2323
|
class ScalingParametersStatus < Struct.new(
|
2223
2324
|
:options,
|
2224
2325
|
:status)
|
2326
|
+
SENSITIVE = []
|
2225
2327
|
include Aws::Structure
|
2226
2328
|
end
|
2227
2329
|
|
@@ -2237,6 +2339,7 @@ module Aws::CloudSearch
|
|
2237
2339
|
#
|
2238
2340
|
class ServiceEndpoint < Struct.new(
|
2239
2341
|
:endpoint)
|
2342
|
+
SENSITIVE = []
|
2240
2343
|
include Aws::Structure
|
2241
2344
|
end
|
2242
2345
|
|
@@ -2269,6 +2372,7 @@ module Aws::CloudSearch
|
|
2269
2372
|
class Suggester < Struct.new(
|
2270
2373
|
:suggester_name,
|
2271
2374
|
:document_suggester_options)
|
2375
|
+
SENSITIVE = []
|
2272
2376
|
include Aws::Structure
|
2273
2377
|
end
|
2274
2378
|
|
@@ -2288,6 +2392,7 @@ module Aws::CloudSearch
|
|
2288
2392
|
class SuggesterStatus < Struct.new(
|
2289
2393
|
:options,
|
2290
2394
|
:status)
|
2395
|
+
SENSITIVE = []
|
2291
2396
|
include Aws::Structure
|
2292
2397
|
end
|
2293
2398
|
|
@@ -2335,6 +2440,7 @@ module Aws::CloudSearch
|
|
2335
2440
|
:return_enabled,
|
2336
2441
|
:highlight_enabled,
|
2337
2442
|
:analysis_scheme)
|
2443
|
+
SENSITIVE = []
|
2338
2444
|
include Aws::Structure
|
2339
2445
|
end
|
2340
2446
|
|
@@ -2402,6 +2508,7 @@ module Aws::CloudSearch
|
|
2402
2508
|
:sort_enabled,
|
2403
2509
|
:highlight_enabled,
|
2404
2510
|
:analysis_scheme)
|
2511
|
+
SENSITIVE = []
|
2405
2512
|
include Aws::Structure
|
2406
2513
|
end
|
2407
2514
|
|
@@ -2434,6 +2541,7 @@ module Aws::CloudSearch
|
|
2434
2541
|
class UpdateAvailabilityOptionsRequest < Struct.new(
|
2435
2542
|
:domain_name,
|
2436
2543
|
:multi_az)
|
2544
|
+
SENSITIVE = []
|
2437
2545
|
include Aws::Structure
|
2438
2546
|
end
|
2439
2547
|
|
@@ -2447,6 +2555,7 @@ module Aws::CloudSearch
|
|
2447
2555
|
#
|
2448
2556
|
class UpdateAvailabilityOptionsResponse < Struct.new(
|
2449
2557
|
:availability_options)
|
2558
|
+
SENSITIVE = []
|
2450
2559
|
include Aws::Structure
|
2451
2560
|
end
|
2452
2561
|
|
@@ -2479,6 +2588,7 @@ module Aws::CloudSearch
|
|
2479
2588
|
class UpdateDomainEndpointOptionsRequest < Struct.new(
|
2480
2589
|
:domain_name,
|
2481
2590
|
:domain_endpoint_options)
|
2591
|
+
SENSITIVE = []
|
2482
2592
|
include Aws::Structure
|
2483
2593
|
end
|
2484
2594
|
|
@@ -2491,6 +2601,7 @@ module Aws::CloudSearch
|
|
2491
2601
|
#
|
2492
2602
|
class UpdateDomainEndpointOptionsResponse < Struct.new(
|
2493
2603
|
:domain_endpoint_options)
|
2604
|
+
SENSITIVE = []
|
2494
2605
|
include Aws::Structure
|
2495
2606
|
end
|
2496
2607
|
|
@@ -2525,6 +2636,7 @@ module Aws::CloudSearch
|
|
2525
2636
|
class UpdateScalingParametersRequest < Struct.new(
|
2526
2637
|
:domain_name,
|
2527
2638
|
:scaling_parameters)
|
2639
|
+
SENSITIVE = []
|
2528
2640
|
include Aws::Structure
|
2529
2641
|
end
|
2530
2642
|
|
@@ -2538,6 +2650,7 @@ module Aws::CloudSearch
|
|
2538
2650
|
#
|
2539
2651
|
class UpdateScalingParametersResponse < Struct.new(
|
2540
2652
|
:scaling_parameters)
|
2653
|
+
SENSITIVE = []
|
2541
2654
|
include Aws::Structure
|
2542
2655
|
end
|
2543
2656
|
|
@@ -2568,6 +2681,7 @@ module Aws::CloudSearch
|
|
2568
2681
|
class UpdateServiceAccessPoliciesRequest < Struct.new(
|
2569
2682
|
:domain_name,
|
2570
2683
|
:access_policies)
|
2684
|
+
SENSITIVE = []
|
2571
2685
|
include Aws::Structure
|
2572
2686
|
end
|
2573
2687
|
|
@@ -2580,8 +2694,13 @@ module Aws::CloudSearch
|
|
2580
2694
|
#
|
2581
2695
|
class UpdateServiceAccessPoliciesResponse < Struct.new(
|
2582
2696
|
:access_policies)
|
2697
|
+
SENSITIVE = []
|
2583
2698
|
include Aws::Structure
|
2584
2699
|
end
|
2585
2700
|
|
2701
|
+
# The request was rejected because it has invalid parameters.
|
2702
|
+
#
|
2703
|
+
class ValidationException < Aws::EmptyStructure; end
|
2704
|
+
|
2586
2705
|
end
|
2587
2706
|
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.22.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: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon CloudSearch
|