aws-sdk-cloudsearchdomain 1.9.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a06f7510702d2a737b665afa4c72d6403ac58800
4
- data.tar.gz: 6531bf80b8210c5a80b67e528b7e348c64cebc0a
2
+ SHA256:
3
+ metadata.gz: 65a817f00fd4ab109c953538a72852c76369854fd24c089befb070424b323b48
4
+ data.tar.gz: b46780ddf8d4dc1f52b7878640083e3fb4777e6905d3837bd4657a893c7455a2
5
5
  SHA512:
6
- metadata.gz: 5d1690d65df86e6cda5cc18fbb7c791c912acf8b55458ad931722c1af52a1e8530222800103168ace33b7ceb58fd47729964100654c4fdc8594e9969482d9213
7
- data.tar.gz: 7a15ce9526923194dffcca0bfacf21ddd68feb2de0685cee40f137635e6acce3d453ec66f67f527c0bbd2344e6215607d3d8aa4d9df124d8dee78b671f8557d9
6
+ metadata.gz: 60dbff4d494d253a5028acbf574def590aaad741f56d28b5b7a8636dee107a897931df98f33acde97f72bfddee9f828d5127403d629dc3633fda3464e5ef7d20
7
+ data.tar.gz: 3874e9d5a52ec066a7bc9ac9a290601992a21a15abb7c17055f68a126b92072aed83342f9bc680306b3fa723848461bbd2a777e6a031d455b155c97ca7b5285e
@@ -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-cloudsearchdomain/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # cloud_search_domain = Aws::CloudSearchDomain::Client.new
30
+ # resp = cloud_search_domain.search(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from Amazon CloudSearch Domain all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from Amazon CloudSearch Domain 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::CloudSearchDomain::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all Amazon CloudSearch Domain API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
42
47
  # @service
43
48
  module Aws::CloudSearchDomain
44
49
 
45
- GEM_VERSION = '1.9.0'
50
+ GEM_VERSION = '1.19.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:
@@ -20,6 +22,8 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
20
22
  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'
25
+ require 'aws-sdk-core/plugins/transfer_encoding.rb'
26
+ require 'aws-sdk-core/plugins/http_checksum.rb'
23
27
  require 'aws-sdk-core/plugins/signature_v4.rb'
24
28
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
25
29
  require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
@@ -28,6 +32,18 @@ require 'aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb'
28
32
  Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearchdomain)
29
33
 
30
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.
31
47
  class Client < Seahorse::Client::Base
32
48
 
33
49
  include Aws::ClientStubs
@@ -51,6 +67,8 @@ module Aws::CloudSearchDomain
51
67
  add_plugin(Aws::Plugins::JsonvalueConverter)
52
68
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
53
69
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
70
+ add_plugin(Aws::Plugins::TransferEncoding)
71
+ add_plugin(Aws::Plugins::HttpChecksum)
54
72
  add_plugin(Aws::Plugins::SignatureV4)
55
73
  add_plugin(Aws::Plugins::Protocols::RestJson)
56
74
  add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
@@ -88,6 +106,12 @@ module Aws::CloudSearchDomain
88
106
  #
89
107
  # @option options [String] :access_key_id
90
108
  #
109
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
110
+ # Used only in `adaptive` retry mode. When true, the request will sleep
111
+ # until there is sufficent client side capacity to retry the request.
112
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
113
+ # not retry instead of sleeping.
114
+ #
91
115
  # @option options [Boolean] :client_side_monitoring (false)
92
116
  # When `true`, client-side metrics will be collected for all API requests from
93
117
  # this client.
@@ -96,6 +120,10 @@ module Aws::CloudSearchDomain
96
120
  # Allows you to provide an identifier for this client which will be attached to
97
121
  # all generated client side metrics. Defaults to an empty string.
98
122
  #
123
+ # @option options [String] :client_side_monitoring_host ("127.0.0.1")
124
+ # Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client
125
+ # side monitoring agent is running on, where client metrics will be published via UDP.
126
+ #
99
127
  # @option options [Integer] :client_side_monitoring_port (31000)
100
128
  # Required for publishing client metrics. The port that the client side monitoring
101
129
  # agent is running on, where client metrics will be published via UDP.
@@ -108,6 +136,10 @@ module Aws::CloudSearchDomain
108
136
  # When `true`, an attempt is made to coerce request parameters into
109
137
  # the required types.
110
138
  #
139
+ # @option options [Boolean] :correct_clock_skew (true)
140
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
141
+ # a clock skew correction and retry requests with skewed client clocks.
142
+ #
111
143
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
112
144
  # The log formatter.
113
145
  #
@@ -118,15 +150,29 @@ module Aws::CloudSearchDomain
118
150
  # The Logger instance to send log messages to. If this option
119
151
  # is not set, logging will be disabled.
120
152
  #
153
+ # @option options [Integer] :max_attempts (3)
154
+ # An integer representing the maximum number attempts that will be made for
155
+ # a single request, including the initial attempt. For example,
156
+ # setting this value to 5 will result in a request being retried up to
157
+ # 4 times. Used in `standard` and `adaptive` retry modes.
158
+ #
121
159
  # @option options [String] :profile ("default")
122
160
  # Used when loading credentials from the shared credentials file
123
161
  # at HOME/.aws/credentials. When not specified, 'default' is used.
124
162
  #
163
+ # @option options [Proc] :retry_backoff
164
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
165
+ # This option is only used in the `legacy` retry mode.
166
+ #
125
167
  # @option options [Float] :retry_base_delay (0.3)
126
- # The base delay in seconds used by the default backoff function.
168
+ # The base delay in seconds used by the default backoff function. This option
169
+ # is only used in the `legacy` retry mode.
127
170
  #
128
171
  # @option options [Symbol] :retry_jitter (:none)
129
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
172
+ # A delay randomiser function used by the default backoff function.
173
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
174
+ # otherwise a Proc that takes and returns a number. This option is only used
175
+ # in the `legacy` retry mode.
130
176
  #
131
177
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
132
178
  #
@@ -134,11 +180,30 @@ module Aws::CloudSearchDomain
134
180
  # The maximum number of times to retry failed requests. Only
135
181
  # ~ 500 level server errors and certain ~ 400 level client errors
136
182
  # are retried. Generally, these are throttling errors, data
137
- # checksum errors, networking errors, timeout errors and auth
138
- # errors from expired credentials.
183
+ # checksum errors, networking errors, timeout errors, auth errors,
184
+ # endpoint discovery, and errors from expired credentials.
185
+ # This option is only used in the `legacy` retry mode.
139
186
  #
140
187
  # @option options [Integer] :retry_max_delay (0)
141
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
188
+ # The maximum number of seconds to delay between retries (0 for no limit)
189
+ # used by the default backoff function. This option is only used in the
190
+ # `legacy` retry mode.
191
+ #
192
+ # @option options [String] :retry_mode ("legacy")
193
+ # Specifies which retry algorithm to use. Values are:
194
+ #
195
+ # * `legacy` - The pre-existing retry behavior. This is default value if
196
+ # no retry mode is provided.
197
+ #
198
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
199
+ # This includes support for retry quotas, which limit the number of
200
+ # unsuccessful retries a client can make.
201
+ #
202
+ # * `adaptive` - An experimental retry mode that includes all the
203
+ # functionality of `standard` mode along with automatic client side
204
+ # throttling. This is a provisional mode that may change behavior
205
+ # in the future.
206
+ #
142
207
  #
143
208
  # @option options [String] :secret_access_key
144
209
  #
@@ -161,6 +226,48 @@ module Aws::CloudSearchDomain
161
226
  # When `true`, request parameters are validated before
162
227
  # sending the request.
163
228
  #
229
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
230
+ # requests through. Formatted like 'http://proxy.com:123'.
231
+ #
232
+ # @option options [Float] :http_open_timeout (15) The number of
233
+ # seconds to wait when opening a HTTP session before raising a
234
+ # `Timeout::Error`.
235
+ #
236
+ # @option options [Integer] :http_read_timeout (60) The default
237
+ # number of seconds to wait for response data. This value can
238
+ # safely be set per-request on the session.
239
+ #
240
+ # @option options [Float] :http_idle_timeout (5) The number of
241
+ # seconds a connection is allowed to sit idle before it is
242
+ # considered stale. Stale connections are closed and removed
243
+ # from the pool before making a request.
244
+ #
245
+ # @option options [Float] :http_continue_timeout (1) The number of
246
+ # seconds to wait for a 100-continue response before sending the
247
+ # request body. This option has no effect unless the request has
248
+ # "Expect" header set to "100-continue". Defaults to `nil` which
249
+ # disables this behaviour. This value can safely be set per
250
+ # request on the session.
251
+ #
252
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
253
+ # HTTP debug output will be sent to the `:logger`.
254
+ #
255
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
256
+ # SSL peer certificates are verified when establishing a
257
+ # connection.
258
+ #
259
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
260
+ # certificate authority bundle file that should be used when
261
+ # verifying peer certificates. If you do not pass
262
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
263
+ # will be used if available.
264
+ #
265
+ # @option options [String] :ssl_ca_directory Full path of the
266
+ # directory that contains the unbundled SSL certificate
267
+ # authority files for verifying peer certificates. If you do
268
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
269
+ # system default will be used if available.
270
+ #
164
271
  def initialize(*args)
165
272
  super
166
273
  end
@@ -766,7 +873,7 @@ module Aws::CloudSearchDomain
766
873
  params: params,
767
874
  config: config)
768
875
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
769
- context[:gem_version] = '1.9.0'
876
+ context[:gem_version] = '1.19.0'
770
877
  Seahorse::Client::Request.new(handlers, context)
771
878
  end
772
879
 
@@ -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:
@@ -12,7 +14,7 @@ module Aws::CloudSearchDomain
12
14
  include Seahorse::Model
13
15
 
14
16
  Adds = Shapes::IntegerShape.new(name: 'Adds')
15
- Blob = Shapes::BlobShape.new(name: 'Blob')
17
+ Blob = Shapes::BlobShape.new(name: 'Blob', streaming: true)
16
18
  Bucket = Shapes::StructureShape.new(name: 'Bucket')
17
19
  BucketInfo = Shapes::StructureShape.new(name: 'BucketInfo')
18
20
  BucketList = Shapes::ListShape.new(name: 'BucketList')
@@ -72,6 +74,10 @@ module Aws::CloudSearchDomain
72
74
 
73
75
  BucketList.member = Shapes::ShapeRef.new(shape: Bucket)
74
76
 
77
+ DocumentServiceException.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
78
+ DocumentServiceException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
79
+ DocumentServiceException.struct_class = Types::DocumentServiceException
80
+
75
81
  DocumentServiceWarning.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
76
82
  DocumentServiceWarning.struct_class = Types::DocumentServiceWarning
77
83
 
@@ -115,6 +121,9 @@ module Aws::CloudSearchDomain
115
121
  Hits.add_member(:hit, Shapes::ShapeRef.new(shape: HitList, location_name: "hit"))
116
122
  Hits.struct_class = Types::Hits
117
123
 
124
+ SearchException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
125
+ SearchException.struct_class = Types::SearchException
126
+
118
127
  SearchRequest.add_member(:cursor, Shapes::ShapeRef.new(shape: Cursor, location: "querystring", location_name: "cursor"))
119
128
  SearchRequest.add_member(:expr, Shapes::ShapeRef.new(shape: Expr, location: "querystring", location_name: "expr"))
120
129
  SearchRequest.add_member(:facet, Shapes::ShapeRef.new(shape: Facet, location: "querystring", location_name: "facet"))
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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,9 +8,68 @@
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
12
38
 
39
+ class DocumentServiceException < ServiceError
40
+
41
+ # @param [Seahorse::Client::RequestContext] context
42
+ # @param [String] message
43
+ # @param [Aws::CloudSearchDomain::Types::DocumentServiceException] data
44
+ def initialize(context, message, data = Aws::EmptyStructure.new)
45
+ super(context, message, data)
46
+ end
47
+
48
+ # @return [String]
49
+ def status
50
+ @data[:status]
51
+ end
52
+
53
+ # @return [String]
54
+ def message
55
+ @message || @data[:message]
56
+ end
57
+ end
58
+
59
+ class SearchException < ServiceError
60
+
61
+ # @param [Seahorse::Client::RequestContext] context
62
+ # @param [String] message
63
+ # @param [Aws::CloudSearchDomain::Types::SearchException] data
64
+ def initialize(context, message, data = Aws::EmptyStructure.new)
65
+ super(context, message, data)
66
+ end
67
+
68
+ # @return [String]
69
+ def message
70
+ @message || @data[:message]
71
+ end
72
+ end
73
+
13
74
  end
14
75
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'aws-sigv4'
2
4
 
3
5
  module Aws
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module CloudSearchDomain
3
5
  module Plugins
@@ -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,26 @@ module Aws::CloudSearchDomain
33
36
  #
34
37
  class BucketInfo < Struct.new(
35
38
  :buckets)
39
+ SENSITIVE = []
40
+ include Aws::Structure
41
+ end
42
+
43
+ # Information about any problems encountered while processing an upload
44
+ # request.
45
+ #
46
+ # @!attribute [rw] status
47
+ # The return status of a document upload request, `error` or
48
+ # `success`.
49
+ # @return [String]
50
+ #
51
+ # @!attribute [rw] message
52
+ # The description of the errors returned by the document service.
53
+ # @return [String]
54
+ #
55
+ class DocumentServiceException < Struct.new(
56
+ :status,
57
+ :message)
58
+ SENSITIVE = []
36
59
  include Aws::Structure
37
60
  end
38
61
 
@@ -45,6 +68,7 @@ module Aws::CloudSearchDomain
45
68
  #
46
69
  class DocumentServiceWarning < Struct.new(
47
70
  :message)
71
+ SENSITIVE = []
48
72
  include Aws::Structure
49
73
  end
50
74
 
@@ -129,6 +153,7 @@ module Aws::CloudSearchDomain
129
153
  :sum_of_squares,
130
154
  :mean,
131
155
  :stddev)
156
+ SENSITIVE = []
132
157
  include Aws::Structure
133
158
  end
134
159
 
@@ -157,6 +182,7 @@ module Aws::CloudSearchDomain
157
182
  :fields,
158
183
  :exprs,
159
184
  :highlights)
185
+ SENSITIVE = []
160
186
  include Aws::Structure
161
187
  end
162
188
 
@@ -184,6 +210,20 @@ module Aws::CloudSearchDomain
184
210
  :start,
185
211
  :cursor,
186
212
  :hit)
213
+ SENSITIVE = []
214
+ include Aws::Structure
215
+ end
216
+
217
+ # Information about any problems encountered while processing a search
218
+ # request.
219
+ #
220
+ # @!attribute [rw] message
221
+ # A description of the error returned by the search service.
222
+ # @return [String]
223
+ #
224
+ class SearchException < Struct.new(
225
+ :message)
226
+ SENSITIVE = []
187
227
  include Aws::Structure
188
228
  end
189
229
 
@@ -605,6 +645,7 @@ module Aws::CloudSearchDomain
605
645
  :sort,
606
646
  :start,
607
647
  :stats)
648
+ SENSITIVE = []
608
649
  include Aws::Structure
609
650
  end
610
651
 
@@ -633,6 +674,7 @@ module Aws::CloudSearchDomain
633
674
  :hits,
634
675
  :facets,
635
676
  :stats)
677
+ SENSITIVE = []
636
678
  include Aws::Structure
637
679
  end
638
680
 
@@ -650,6 +692,7 @@ module Aws::CloudSearchDomain
650
692
  class SearchStatus < Struct.new(
651
693
  :timems,
652
694
  :rid)
695
+ SENSITIVE = []
653
696
  include Aws::Structure
654
697
  end
655
698
 
@@ -672,6 +715,7 @@ module Aws::CloudSearchDomain
672
715
  :query,
673
716
  :found,
674
717
  :suggestions)
718
+ SENSITIVE = []
675
719
  include Aws::Structure
676
720
  end
677
721
 
@@ -703,6 +747,7 @@ module Aws::CloudSearchDomain
703
747
  :query,
704
748
  :suggester,
705
749
  :size)
750
+ SENSITIVE = []
706
751
  include Aws::Structure
707
752
  end
708
753
 
@@ -720,6 +765,7 @@ module Aws::CloudSearchDomain
720
765
  class SuggestResponse < Struct.new(
721
766
  :status,
722
767
  :suggest)
768
+ SENSITIVE = []
723
769
  include Aws::Structure
724
770
  end
725
771
 
@@ -737,6 +783,7 @@ module Aws::CloudSearchDomain
737
783
  class SuggestStatus < Struct.new(
738
784
  :timems,
739
785
  :rid)
786
+ SENSITIVE = []
740
787
  include Aws::Structure
741
788
  end
742
789
 
@@ -760,6 +807,7 @@ module Aws::CloudSearchDomain
760
807
  :suggestion,
761
808
  :score,
762
809
  :id)
810
+ SENSITIVE = []
763
811
  include Aws::Structure
764
812
  end
765
813
 
@@ -788,6 +836,7 @@ module Aws::CloudSearchDomain
788
836
  class UploadDocumentsRequest < Struct.new(
789
837
  :documents,
790
838
  :content_type)
839
+ SENSITIVE = []
791
840
  include Aws::Structure
792
841
  end
793
842
 
@@ -815,6 +864,7 @@ module Aws::CloudSearchDomain
815
864
  :adds,
816
865
  :deletes,
817
866
  :warnings)
867
+ SENSITIVE = []
818
868
  include Aws::Structure
819
869
  end
820
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.9.0
4
+ version: 1.19.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: 2019-03-21 00:00:00.000000000 Z
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.48.2
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.48.2
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -61,7 +61,7 @@ files:
61
61
  - lib/aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb
62
62
  - lib/aws-sdk-cloudsearchdomain/resource.rb
63
63
  - lib/aws-sdk-cloudsearchdomain/types.rb
64
- homepage: http://github.com/aws/aws-sdk-ruby
64
+ homepage: https://github.com/aws/aws-sdk-ruby
65
65
  licenses:
66
66
  - Apache-2.0
67
67
  metadata:
@@ -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.5.2.3
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