aws-sdk-cloudsearchdomain 1.16.0 → 1.21.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 +5 -5
- data/lib/aws-sdk-cloudsearchdomain.rb +11 -5
- data/lib/aws-sdk-cloudsearchdomain/client.rb +92 -19
- data/lib/aws-sdk-cloudsearchdomain/client_api.rb +2 -0
- data/lib/aws-sdk-cloudsearchdomain/customizations.rb +1 -0
- data/lib/aws-sdk-cloudsearchdomain/errors.rb +26 -2
- data/lib/aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb +2 -0
- data/lib/aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb +2 -0
- data/lib/aws-sdk-cloudsearchdomain/resource.rb +3 -0
- data/lib/aws-sdk-cloudsearchdomain/types.rb +20 -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: 342643b7789662187e7265f0c2da5454b3f7e862c1ac4756c11c62b0a055148b
|
|
4
|
+
data.tar.gz: 49d4a97d5c9bce79ba07e3a3d9fa22544ca58618805b92d0d01a9599af737f67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0dff19d5e893d474fcae858115d18f9c15b5c2a9a57978da50a3791f71334e038b65c03914379015102472b303b0c72781815868cf36914a29a3fa21aede420
|
|
7
|
+
data.tar.gz: 19401a7b8863bf4f1a740f2607cb5736f47f3a26553dd64ec4ec6e4b8c6945cd817ed49e411ece7ee74baf851a4a2fdc26778e59284e9fd4f2cf0b808cee903d
|
|
@@ -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:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -24,24 +27,27 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
|
|
|
24
27
|
# methods each accept a hash of request parameters and return a response
|
|
25
28
|
# structure.
|
|
26
29
|
#
|
|
30
|
+
# cloud_search_domain = Aws::CloudSearchDomain::Client.new
|
|
31
|
+
# resp = cloud_search_domain.search(params)
|
|
32
|
+
#
|
|
27
33
|
# See {Client} for more information.
|
|
28
34
|
#
|
|
29
35
|
# # Errors
|
|
30
36
|
#
|
|
31
|
-
# Errors returned from Amazon CloudSearch Domain
|
|
32
|
-
# extend {Errors::ServiceError}.
|
|
37
|
+
# Errors returned from Amazon CloudSearch Domain are defined in the
|
|
38
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
|
33
39
|
#
|
|
34
40
|
# begin
|
|
35
41
|
# # do stuff
|
|
36
42
|
# rescue Aws::CloudSearchDomain::Errors::ServiceError
|
|
37
|
-
# # rescues all
|
|
43
|
+
# # rescues all Amazon CloudSearch Domain API errors
|
|
38
44
|
# end
|
|
39
45
|
#
|
|
40
46
|
# See {Errors} for more information.
|
|
41
47
|
#
|
|
42
|
-
#
|
|
48
|
+
# @!group service
|
|
43
49
|
module Aws::CloudSearchDomain
|
|
44
50
|
|
|
45
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.21.0'
|
|
46
52
|
|
|
47
53
|
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:
|
|
@@ -21,6 +23,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
21
23
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
22
24
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
23
25
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
26
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
24
27
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
25
28
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
26
29
|
require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
|
|
@@ -29,6 +32,18 @@ require 'aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb'
|
|
|
29
32
|
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearchdomain)
|
|
30
33
|
|
|
31
34
|
module Aws::CloudSearchDomain
|
|
35
|
+
# An API client for CloudSearchDomain. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
36
|
+
#
|
|
37
|
+
# client = Aws::CloudSearchDomain::Client.new(
|
|
38
|
+
# region: region_name,
|
|
39
|
+
# credentials: credentials,
|
|
40
|
+
# # ...
|
|
41
|
+
# )
|
|
42
|
+
#
|
|
43
|
+
# For details on configuring region and credentials see
|
|
44
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
45
|
+
#
|
|
46
|
+
# See {#initialize} for a full list of supported configuration options.
|
|
32
47
|
class Client < Seahorse::Client::Base
|
|
33
48
|
|
|
34
49
|
include Aws::ClientStubs
|
|
@@ -53,6 +68,7 @@ module Aws::CloudSearchDomain
|
|
|
53
68
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
54
69
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
55
70
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
71
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
56
72
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
57
73
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
58
74
|
add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
|
|
@@ -67,13 +83,28 @@ module Aws::CloudSearchDomain
|
|
|
67
83
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
68
84
|
# credentials.
|
|
69
85
|
#
|
|
86
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
87
|
+
# shared file, such as `~/.aws/config`.
|
|
88
|
+
#
|
|
89
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
92
|
+
# assume a role after providing credentials via the web.
|
|
93
|
+
#
|
|
94
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
95
|
+
# access token generated from `aws login`.
|
|
96
|
+
#
|
|
97
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
98
|
+
# process that outputs to stdout.
|
|
99
|
+
#
|
|
70
100
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
71
101
|
# from an EC2 IMDS on an EC2 instance.
|
|
72
102
|
#
|
|
73
|
-
# * `Aws::
|
|
74
|
-
#
|
|
103
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
104
|
+
# instances running in ECS.
|
|
75
105
|
#
|
|
76
|
-
# * `Aws::
|
|
106
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
107
|
+
# from the Cognito Identity service.
|
|
77
108
|
#
|
|
78
109
|
# When `:credentials` are not configured directly, the following
|
|
79
110
|
# locations will be searched for credentials:
|
|
@@ -83,13 +114,19 @@ module Aws::CloudSearchDomain
|
|
|
83
114
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
84
115
|
# * `~/.aws/credentials`
|
|
85
116
|
# * `~/.aws/config`
|
|
86
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
87
|
-
# very aggressive. Construct and pass an instance of
|
|
88
|
-
# `Aws::InstanceProfileCredentails`
|
|
89
|
-
# timeouts.
|
|
117
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
118
|
+
# are very aggressive. Construct and pass an instance of
|
|
119
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
120
|
+
# enable retries and extended timeouts.
|
|
90
121
|
#
|
|
91
122
|
# @option options [String] :access_key_id
|
|
92
123
|
#
|
|
124
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
|
125
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
|
126
|
+
# until there is sufficent client side capacity to retry the request.
|
|
127
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
|
128
|
+
# not retry instead of sleeping.
|
|
129
|
+
#
|
|
93
130
|
# @option options [Boolean] :client_side_monitoring (false)
|
|
94
131
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
95
132
|
# this client.
|
|
@@ -114,6 +151,10 @@ module Aws::CloudSearchDomain
|
|
|
114
151
|
# When `true`, an attempt is made to coerce request parameters into
|
|
115
152
|
# the required types.
|
|
116
153
|
#
|
|
154
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
|
155
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
156
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
|
157
|
+
#
|
|
117
158
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
118
159
|
# The log formatter.
|
|
119
160
|
#
|
|
@@ -124,15 +165,29 @@ module Aws::CloudSearchDomain
|
|
|
124
165
|
# The Logger instance to send log messages to. If this option
|
|
125
166
|
# is not set, logging will be disabled.
|
|
126
167
|
#
|
|
168
|
+
# @option options [Integer] :max_attempts (3)
|
|
169
|
+
# An integer representing the maximum number attempts that will be made for
|
|
170
|
+
# a single request, including the initial attempt. For example,
|
|
171
|
+
# setting this value to 5 will result in a request being retried up to
|
|
172
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
|
173
|
+
#
|
|
127
174
|
# @option options [String] :profile ("default")
|
|
128
175
|
# Used when loading credentials from the shared credentials file
|
|
129
176
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
130
177
|
#
|
|
178
|
+
# @option options [Proc] :retry_backoff
|
|
179
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
180
|
+
# This option is only used in the `legacy` retry mode.
|
|
181
|
+
#
|
|
131
182
|
# @option options [Float] :retry_base_delay (0.3)
|
|
132
|
-
# The base delay in seconds used by the default backoff function.
|
|
183
|
+
# The base delay in seconds used by the default backoff function. This option
|
|
184
|
+
# is only used in the `legacy` retry mode.
|
|
133
185
|
#
|
|
134
186
|
# @option options [Symbol] :retry_jitter (:none)
|
|
135
|
-
# A delay randomiser function used by the default backoff function.
|
|
187
|
+
# A delay randomiser function used by the default backoff function.
|
|
188
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
|
189
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
|
190
|
+
# in the `legacy` retry mode.
|
|
136
191
|
#
|
|
137
192
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
138
193
|
#
|
|
@@ -140,11 +195,30 @@ module Aws::CloudSearchDomain
|
|
|
140
195
|
# The maximum number of times to retry failed requests. Only
|
|
141
196
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
142
197
|
# are retried. Generally, these are throttling errors, data
|
|
143
|
-
# checksum errors, networking errors, timeout errors
|
|
144
|
-
# errors from expired credentials.
|
|
198
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
|
199
|
+
# endpoint discovery, and errors from expired credentials.
|
|
200
|
+
# This option is only used in the `legacy` retry mode.
|
|
145
201
|
#
|
|
146
202
|
# @option options [Integer] :retry_max_delay (0)
|
|
147
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
203
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
204
|
+
# used by the default backoff function. This option is only used in the
|
|
205
|
+
# `legacy` retry mode.
|
|
206
|
+
#
|
|
207
|
+
# @option options [String] :retry_mode ("legacy")
|
|
208
|
+
# Specifies which retry algorithm to use. Values are:
|
|
209
|
+
#
|
|
210
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
211
|
+
# no retry mode is provided.
|
|
212
|
+
#
|
|
213
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
214
|
+
# This includes support for retry quotas, which limit the number of
|
|
215
|
+
# unsuccessful retries a client can make.
|
|
216
|
+
#
|
|
217
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
218
|
+
# functionality of `standard` mode along with automatic client side
|
|
219
|
+
# throttling. This is a provisional mode that may change behavior
|
|
220
|
+
# in the future.
|
|
221
|
+
#
|
|
148
222
|
#
|
|
149
223
|
# @option options [String] :secret_access_key
|
|
150
224
|
#
|
|
@@ -171,16 +245,15 @@ module Aws::CloudSearchDomain
|
|
|
171
245
|
# requests through. Formatted like 'http://proxy.com:123'.
|
|
172
246
|
#
|
|
173
247
|
# @option options [Float] :http_open_timeout (15) The number of
|
|
174
|
-
# seconds to wait when opening a HTTP session before
|
|
248
|
+
# seconds to wait when opening a HTTP session before raising a
|
|
175
249
|
# `Timeout::Error`.
|
|
176
250
|
#
|
|
177
251
|
# @option options [Integer] :http_read_timeout (60) The default
|
|
178
252
|
# number of seconds to wait for response data. This value can
|
|
179
|
-
# safely be set
|
|
180
|
-
# per-request on the session yeidled by {#session_for}.
|
|
253
|
+
# safely be set per-request on the session.
|
|
181
254
|
#
|
|
182
255
|
# @option options [Float] :http_idle_timeout (5) The number of
|
|
183
|
-
# seconds a connection is allowed to sit
|
|
256
|
+
# seconds a connection is allowed to sit idle before it is
|
|
184
257
|
# considered stale. Stale connections are closed and removed
|
|
185
258
|
# from the pool before making a request.
|
|
186
259
|
#
|
|
@@ -189,7 +262,7 @@ module Aws::CloudSearchDomain
|
|
|
189
262
|
# request body. This option has no effect unless the request has
|
|
190
263
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
|
191
264
|
# disables this behaviour. This value can safely be set per
|
|
192
|
-
# request on the session
|
|
265
|
+
# request on the session.
|
|
193
266
|
#
|
|
194
267
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
195
268
|
# HTTP debug output will be sent to the `:logger`.
|
|
@@ -763,7 +836,7 @@ module Aws::CloudSearchDomain
|
|
|
763
836
|
# [1]: http://docs.aws.amazon.com/cloudsearch/latest/developerguide/preparing-data.html
|
|
764
837
|
# [2]: http://docs.aws.amazon.com/cloudsearch/latest/developerguide/uploading-data.html
|
|
765
838
|
#
|
|
766
|
-
# @option params [required, String,
|
|
839
|
+
# @option params [required, String, StringIO, File] :documents
|
|
767
840
|
# A batch of documents formatted in JSON or HTML.
|
|
768
841
|
#
|
|
769
842
|
# @option params [required, String] :content_type
|
|
@@ -815,7 +888,7 @@ module Aws::CloudSearchDomain
|
|
|
815
888
|
params: params,
|
|
816
889
|
config: config)
|
|
817
890
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
|
818
|
-
context[:gem_version] = '1.
|
|
891
|
+
context[:gem_version] = '1.21.0'
|
|
819
892
|
Seahorse::Client::Request.new(handlers, context)
|
|
820
893
|
end
|
|
821
894
|
|
|
@@ -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,30 @@
|
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::CloudSearchDomain
|
|
11
|
+
|
|
12
|
+
# When CloudSearchDomain returns an error response, the Ruby SDK constructs and raises an error.
|
|
13
|
+
# These errors all extend Aws::CloudSearchDomain::Errors::ServiceError < {Aws::Errors::ServiceError}
|
|
14
|
+
#
|
|
15
|
+
# You can rescue all CloudSearchDomain errors using ServiceError:
|
|
16
|
+
#
|
|
17
|
+
# begin
|
|
18
|
+
# # do stuff
|
|
19
|
+
# rescue Aws::CloudSearchDomain::Errors::ServiceError
|
|
20
|
+
# # rescues all CloudSearchDomain 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
|
+
# * {DocumentServiceException}
|
|
31
|
+
# * {SearchException}
|
|
32
|
+
#
|
|
33
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
34
|
+
# if they are not defined above.
|
|
9
35
|
module Errors
|
|
10
36
|
|
|
11
37
|
extend Aws::Errors::DynamicErrors
|
|
@@ -28,7 +54,6 @@ module Aws::CloudSearchDomain
|
|
|
28
54
|
def message
|
|
29
55
|
@message || @data[:message]
|
|
30
56
|
end
|
|
31
|
-
|
|
32
57
|
end
|
|
33
58
|
|
|
34
59
|
class SearchException < ServiceError
|
|
@@ -44,7 +69,6 @@ module Aws::CloudSearchDomain
|
|
|
44
69
|
def message
|
|
45
70
|
@message || @data[:message]
|
|
46
71
|
end
|
|
47
|
-
|
|
48
72
|
end
|
|
49
73
|
|
|
50
74
|
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::CloudSearchDomain
|
|
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:
|
|
@@ -22,6 +24,7 @@ module Aws::CloudSearchDomain
|
|
|
22
24
|
class Bucket < Struct.new(
|
|
23
25
|
:value,
|
|
24
26
|
:count)
|
|
27
|
+
SENSITIVE = []
|
|
25
28
|
include Aws::Structure
|
|
26
29
|
end
|
|
27
30
|
|
|
@@ -33,6 +36,7 @@ module Aws::CloudSearchDomain
|
|
|
33
36
|
#
|
|
34
37
|
class BucketInfo < Struct.new(
|
|
35
38
|
:buckets)
|
|
39
|
+
SENSITIVE = []
|
|
36
40
|
include Aws::Structure
|
|
37
41
|
end
|
|
38
42
|
|
|
@@ -51,6 +55,7 @@ module Aws::CloudSearchDomain
|
|
|
51
55
|
class DocumentServiceException < Struct.new(
|
|
52
56
|
:status,
|
|
53
57
|
:message)
|
|
58
|
+
SENSITIVE = []
|
|
54
59
|
include Aws::Structure
|
|
55
60
|
end
|
|
56
61
|
|
|
@@ -63,6 +68,7 @@ module Aws::CloudSearchDomain
|
|
|
63
68
|
#
|
|
64
69
|
class DocumentServiceWarning < Struct.new(
|
|
65
70
|
:message)
|
|
71
|
+
SENSITIVE = []
|
|
66
72
|
include Aws::Structure
|
|
67
73
|
end
|
|
68
74
|
|
|
@@ -147,6 +153,7 @@ module Aws::CloudSearchDomain
|
|
|
147
153
|
:sum_of_squares,
|
|
148
154
|
:mean,
|
|
149
155
|
:stddev)
|
|
156
|
+
SENSITIVE = []
|
|
150
157
|
include Aws::Structure
|
|
151
158
|
end
|
|
152
159
|
|
|
@@ -175,6 +182,7 @@ module Aws::CloudSearchDomain
|
|
|
175
182
|
:fields,
|
|
176
183
|
:exprs,
|
|
177
184
|
:highlights)
|
|
185
|
+
SENSITIVE = []
|
|
178
186
|
include Aws::Structure
|
|
179
187
|
end
|
|
180
188
|
|
|
@@ -202,6 +210,7 @@ module Aws::CloudSearchDomain
|
|
|
202
210
|
:start,
|
|
203
211
|
:cursor,
|
|
204
212
|
:hit)
|
|
213
|
+
SENSITIVE = []
|
|
205
214
|
include Aws::Structure
|
|
206
215
|
end
|
|
207
216
|
|
|
@@ -214,6 +223,7 @@ module Aws::CloudSearchDomain
|
|
|
214
223
|
#
|
|
215
224
|
class SearchException < Struct.new(
|
|
216
225
|
:message)
|
|
226
|
+
SENSITIVE = []
|
|
217
227
|
include Aws::Structure
|
|
218
228
|
end
|
|
219
229
|
|
|
@@ -635,6 +645,7 @@ module Aws::CloudSearchDomain
|
|
|
635
645
|
:sort,
|
|
636
646
|
:start,
|
|
637
647
|
:stats)
|
|
648
|
+
SENSITIVE = []
|
|
638
649
|
include Aws::Structure
|
|
639
650
|
end
|
|
640
651
|
|
|
@@ -663,6 +674,7 @@ module Aws::CloudSearchDomain
|
|
|
663
674
|
:hits,
|
|
664
675
|
:facets,
|
|
665
676
|
:stats)
|
|
677
|
+
SENSITIVE = []
|
|
666
678
|
include Aws::Structure
|
|
667
679
|
end
|
|
668
680
|
|
|
@@ -680,6 +692,7 @@ module Aws::CloudSearchDomain
|
|
|
680
692
|
class SearchStatus < Struct.new(
|
|
681
693
|
:timems,
|
|
682
694
|
:rid)
|
|
695
|
+
SENSITIVE = []
|
|
683
696
|
include Aws::Structure
|
|
684
697
|
end
|
|
685
698
|
|
|
@@ -702,6 +715,7 @@ module Aws::CloudSearchDomain
|
|
|
702
715
|
:query,
|
|
703
716
|
:found,
|
|
704
717
|
:suggestions)
|
|
718
|
+
SENSITIVE = []
|
|
705
719
|
include Aws::Structure
|
|
706
720
|
end
|
|
707
721
|
|
|
@@ -733,6 +747,7 @@ module Aws::CloudSearchDomain
|
|
|
733
747
|
:query,
|
|
734
748
|
:suggester,
|
|
735
749
|
:size)
|
|
750
|
+
SENSITIVE = []
|
|
736
751
|
include Aws::Structure
|
|
737
752
|
end
|
|
738
753
|
|
|
@@ -750,6 +765,7 @@ module Aws::CloudSearchDomain
|
|
|
750
765
|
class SuggestResponse < Struct.new(
|
|
751
766
|
:status,
|
|
752
767
|
:suggest)
|
|
768
|
+
SENSITIVE = []
|
|
753
769
|
include Aws::Structure
|
|
754
770
|
end
|
|
755
771
|
|
|
@@ -767,6 +783,7 @@ module Aws::CloudSearchDomain
|
|
|
767
783
|
class SuggestStatus < Struct.new(
|
|
768
784
|
:timems,
|
|
769
785
|
:rid)
|
|
786
|
+
SENSITIVE = []
|
|
770
787
|
include Aws::Structure
|
|
771
788
|
end
|
|
772
789
|
|
|
@@ -790,6 +807,7 @@ module Aws::CloudSearchDomain
|
|
|
790
807
|
:suggestion,
|
|
791
808
|
:score,
|
|
792
809
|
:id)
|
|
810
|
+
SENSITIVE = []
|
|
793
811
|
include Aws::Structure
|
|
794
812
|
end
|
|
795
813
|
|
|
@@ -818,6 +836,7 @@ module Aws::CloudSearchDomain
|
|
|
818
836
|
class UploadDocumentsRequest < Struct.new(
|
|
819
837
|
:documents,
|
|
820
838
|
:content_type)
|
|
839
|
+
SENSITIVE = []
|
|
821
840
|
include Aws::Structure
|
|
822
841
|
end
|
|
823
842
|
|
|
@@ -845,6 +864,7 @@ module Aws::CloudSearchDomain
|
|
|
845
864
|
:adds,
|
|
846
865
|
:deletes,
|
|
847
866
|
:warnings)
|
|
867
|
+
SENSITIVE = []
|
|
848
868
|
include Aws::Structure
|
|
849
869
|
end
|
|
850
870
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudsearchdomain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.21.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-09-15 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
|
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
version: '0'
|
|
84
84
|
requirements: []
|
|
85
85
|
rubyforge_project:
|
|
86
|
-
rubygems_version: 2.
|
|
86
|
+
rubygems_version: 2.7.6.2
|
|
87
87
|
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: AWS SDK for Ruby - Amazon CloudSearch Domain
|