aws-sdk-cloudsearchdomain 1.39.0 → 1.41.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93ffb51bad935dd542871849073ff034599cdf5e2a3689ac87c1bdfb83558443
4
- data.tar.gz: b0bc98a644e0061de1094229e4693fed684116ec26434fbd4c2a50ebc7b9198f
3
+ metadata.gz: 57df18e50e0ae33c677e1c3d20aa9c8e6c696b9947b5edbad603ce2e57f8abe9
4
+ data.tar.gz: 2d9f61dee4921e25f87129c6121604418984b066a0b9f55dbc1e5995cf1cb439
5
5
  SHA512:
6
- metadata.gz: 55504683a42ef01b356807f6dc79aabf5b2b4700e827475a802c7f6a2a2d41a10bac00a9215f2ced62f18a64c588c6a670fcca88cbe71b11fd23ca6c55edb8c9
7
- data.tar.gz: 6cd2c738191fe9c710e083e4cec47e17968e20509f822409018251a5504ac45b7c19414262c1ea585cbad6db66fe8885c1dd8ede2aa10f88c91db4d5f9ea4096
6
+ metadata.gz: aa2636107faa92a6e60fa8ad84df884c124c02ff1772dd70b7fc9a8c5c0e42f5a36eec808244e2da123c26b475f79ce2c5a68b89d1d1b4f35dc91e67efb528cb
7
+ data.tar.gz: 2ca4f6202b53129941e4de6fdb5cbbe9b72aa7be302c70fe93ca1bdb0d627b3ae7c3ec854d3507c79e840b2712c787be40c956b1099826ef3bac3e8159f44bb9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.39.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -19,6 +19,7 @@ require 'aws-sdk-core/plugins/global_configuration.rb'
19
19
  require 'aws-sdk-core/plugins/response_paging.rb'
20
20
  require 'aws-sdk-core/plugins/stub_responses.rb'
21
21
  require 'aws-sdk-core/plugins/idempotency_token.rb'
22
+ require 'aws-sdk-core/plugins/invocation_id.rb'
22
23
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
23
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
24
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -68,6 +69,7 @@ module Aws::CloudSearchDomain
68
69
  add_plugin(Aws::Plugins::ResponsePaging)
69
70
  add_plugin(Aws::Plugins::StubResponses)
70
71
  add_plugin(Aws::Plugins::IdempotencyToken)
72
+ add_plugin(Aws::Plugins::InvocationId)
71
73
  add_plugin(Aws::Plugins::JsonvalueConverter)
72
74
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -282,50 +284,77 @@ module Aws::CloudSearchDomain
282
284
  # When `true`, request parameters are validated before
283
285
  # sending the request.
284
286
  #
285
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
286
- # requests through. Formatted like 'http://proxy.com:123'.
287
- #
288
- # @option options [Float] :http_open_timeout (15) The number of
289
- # seconds to wait when opening a HTTP session before raising a
290
- # `Timeout::Error`.
291
- #
292
- # @option options [Float] :http_read_timeout (60) The default
293
- # number of seconds to wait for response data. This value can
294
- # safely be set per-request on the session.
295
- #
296
- # @option options [Float] :http_idle_timeout (5) The number of
297
- # seconds a connection is allowed to sit idle before it is
298
- # considered stale. Stale connections are closed and removed
299
- # from the pool before making a request.
300
- #
301
- # @option options [Float] :http_continue_timeout (1) The number of
302
- # seconds to wait for a 100-continue response before sending the
303
- # request body. This option has no effect unless the request has
304
- # "Expect" header set to "100-continue". Defaults to `nil` which
305
- # disables this behaviour. This value can safely be set per
306
- # request on the session.
307
- #
308
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
309
- # in seconds.
310
- #
311
- # @option options [Boolean] :http_wire_trace (false) When `true`,
312
- # HTTP debug output will be sent to the `:logger`.
287
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
288
+ # Normally you should not configure the `:endpoint` option
289
+ # directly. This is normally constructed from the `:region`
290
+ # option. Configuring `:endpoint` is normally reserved for
291
+ # connecting to test or custom endpoints. The endpoint should
292
+ # be a URI formatted like:
293
+ #
294
+ # 'http://example.com'
295
+ # 'https://example.com'
296
+ # 'http://example.com:123'
297
+ #
298
+ #
299
+ # @option options [Float] :http_continue_timeout (1)
300
+ # The number of seconds to wait for a 100-continue response before sending the
301
+ # request body. This option has no effect unless the request has "Expect"
302
+ # header set to "100-continue". Defaults to `nil` which disables this
303
+ # behaviour. This value can safely be set per request on the session.
304
+ #
305
+ # @option options [Float] :http_idle_timeout (5)
306
+ # The number of seconds a connection is allowed to sit idle before it
307
+ # is considered stale. Stale connections are closed and removed from the
308
+ # pool before making a request.
309
+ #
310
+ # @option options [Float] :http_open_timeout (15)
311
+ # The default number of seconds to wait for response data.
312
+ # This value can safely be set per-request on the session.
313
+ #
314
+ # @option options [URI::HTTP,String] :http_proxy
315
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
316
+ #
317
+ # @option options [Float] :http_read_timeout (60)
318
+ # The default number of seconds to wait for response data.
319
+ # This value can safely be set per-request on the session.
320
+ #
321
+ # @option options [Boolean] :http_wire_trace (false)
322
+ # When `true`, HTTP debug output will be sent to the `:logger`.
323
+ #
324
+ # @option options [Proc] :on_chunk_received
325
+ # When a Proc object is provided, it will be used as callback when each chunk
326
+ # of the response body is received. It provides three arguments: the chunk,
327
+ # the number of bytes received, and the total number of
328
+ # bytes in the response (or nil if the server did not send a `content-length`).
329
+ #
330
+ # @option options [Proc] :on_chunk_sent
331
+ # When a Proc object is provided, it will be used as callback when each chunk
332
+ # of the request body is sent. It provides three arguments: the chunk,
333
+ # the number of bytes read from the body, and the total number of
334
+ # bytes in the body.
335
+ #
336
+ # @option options [Boolean] :raise_response_errors (true)
337
+ # When `true`, response errors are raised.
338
+ #
339
+ # @option options [String] :ssl_ca_bundle
340
+ # Full path to the SSL certificate authority bundle file that should be used when
341
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
342
+ # `:ssl_ca_directory` the the system default will be used if available.
343
+ #
344
+ # @option options [String] :ssl_ca_directory
345
+ # Full path of the directory that contains the unbundled SSL certificate
346
+ # authority files for verifying peer certificates. If you do
347
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
348
+ # default will be used if available.
313
349
  #
314
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
315
- # SSL peer certificates are verified when establishing a
316
- # connection.
350
+ # @option options [String] :ssl_ca_store
351
+ # Sets the X509::Store to verify peer certificate.
317
352
  #
318
- # @option options [String] :ssl_ca_bundle Full path to the SSL
319
- # certificate authority bundle file that should be used when
320
- # verifying peer certificates. If you do not pass
321
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
322
- # will be used if available.
353
+ # @option options [Float] :ssl_timeout
354
+ # Sets the SSL timeout in seconds
323
355
  #
324
- # @option options [String] :ssl_ca_directory Full path of the
325
- # directory that contains the unbundled SSL certificate
326
- # authority files for verifying peer certificates. If you do
327
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
328
- # system default will be used if available.
356
+ # @option options [Boolean] :ssl_verify_peer (true)
357
+ # When `true`, SSL peer certificates are verified when establishing a connection.
329
358
  #
330
359
  def initialize(*args)
331
360
  super
@@ -932,7 +961,7 @@ module Aws::CloudSearchDomain
932
961
  params: params,
933
962
  config: config)
934
963
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
935
- context[:gem_version] = '1.39.0'
964
+ context[:gem_version] = '1.41.0'
936
965
  Seahorse::Client::Request.new(handlers, context)
937
966
  end
938
967
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudSearchDomain
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.41.0'
52
52
 
53
53
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,119 @@
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 CloudSearchDomain
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?access_key_id: String,
17
+ ?adaptive_retry_wait_to_fill: bool,
18
+ ?client_side_monitoring: bool,
19
+ ?client_side_monitoring_client_id: String,
20
+ ?client_side_monitoring_host: String,
21
+ ?client_side_monitoring_port: Integer,
22
+ ?client_side_monitoring_publisher: untyped,
23
+ ?convert_params: bool,
24
+ ?correct_clock_skew: bool,
25
+ ?defaults_mode: String,
26
+ ?disable_request_compression: bool,
27
+ ?log_formatter: untyped,
28
+ ?log_level: Symbol,
29
+ ?logger: untyped,
30
+ ?max_attempts: Integer,
31
+ ?profile: String,
32
+ ?request_min_compression_size_bytes: Integer,
33
+ ?retry_backoff: Proc,
34
+ ?retry_base_delay: Float,
35
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
36
+ ?retry_limit: Integer,
37
+ ?retry_max_delay: Integer,
38
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
39
+ ?sdk_ua_app_id: String,
40
+ ?secret_access_key: String,
41
+ ?session_token: String,
42
+ ?sigv4_region: String,
43
+ ?stub_responses: untyped,
44
+ ?token_provider: untyped,
45
+ ?validate_params: bool,
46
+ ?http_proxy: String,
47
+ ?http_open_timeout: (Float | Integer),
48
+ ?http_read_timeout: (Float | Integer),
49
+ ?http_idle_timeout: (Float | Integer),
50
+ ?http_continue_timeout: (Float | Integer),
51
+ ?ssl_timeout: (Float | Integer | nil),
52
+ ?http_wire_trace: bool,
53
+ ?ssl_verify_peer: bool,
54
+ ?ssl_ca_bundle: String,
55
+ ?ssl_ca_directory: String,
56
+ ?ssl_ca_store: String,
57
+ ?on_chunk_received: Proc,
58
+ ?on_chunk_sent: Proc,
59
+ ?raise_response_errors: bool
60
+ ) -> instance
61
+ | (?Hash[Symbol, untyped]) -> instance
62
+
63
+
64
+ interface _SearchResponseSuccess
65
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchResponse]
66
+ def status: () -> Types::SearchStatus
67
+ def hits: () -> Types::Hits
68
+ def facets: () -> ::Hash[::String, Types::BucketInfo]
69
+ def stats: () -> ::Hash[::String, Types::FieldStats]
70
+ end
71
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Client.html#search-instance_method
72
+ def search: (
73
+ ?cursor: ::String,
74
+ ?expr: ::String,
75
+ ?facet: ::String,
76
+ ?filter_query: ::String,
77
+ ?highlight: ::String,
78
+ ?partial: bool,
79
+ query: ::String,
80
+ ?query_options: ::String,
81
+ ?query_parser: ("simple" | "structured" | "lucene" | "dismax"),
82
+ ?return: ::String,
83
+ ?size: ::Integer,
84
+ ?sort: ::String,
85
+ ?start: ::Integer,
86
+ ?stats: ::String
87
+ ) -> _SearchResponseSuccess
88
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
89
+
90
+ interface _SuggestResponseSuccess
91
+ include ::Seahorse::Client::_ResponseSuccess[Types::SuggestResponse]
92
+ def status: () -> Types::SuggestStatus
93
+ def suggest: () -> Types::SuggestModel
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Client.html#suggest-instance_method
96
+ def suggest: (
97
+ query: ::String,
98
+ suggester: ::String,
99
+ ?size: ::Integer
100
+ ) -> _SuggestResponseSuccess
101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SuggestResponseSuccess
102
+
103
+ interface _UploadDocumentsResponseSuccess
104
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadDocumentsResponse]
105
+ def status: () -> ::String
106
+ def adds: () -> ::Integer
107
+ def deletes: () -> ::Integer
108
+ def warnings: () -> ::Array[Types::DocumentServiceWarning]
109
+ end
110
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Client.html#upload_documents-instance_method
111
+ def upload_documents: (
112
+ documents: ::String,
113
+ content_type: ("application/json" | "application/xml")
114
+ ) -> _UploadDocumentsResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadDocumentsResponseSuccess
116
+ end
117
+ end
118
+ end
119
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,23 @@
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 CloudSearchDomain
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class DocumentServiceException < ::Aws::Errors::ServiceError
15
+ def status: () -> ::String
16
+ def message: () -> ::String
17
+ end
18
+ class SearchException < ::Aws::Errors::ServiceError
19
+ def message: () -> ::String
20
+ end
21
+ end
22
+ end
23
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,68 @@
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 CloudSearchDomain
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudSearchDomain/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?access_key_id: String,
17
+ ?adaptive_retry_wait_to_fill: bool,
18
+ ?client_side_monitoring: bool,
19
+ ?client_side_monitoring_client_id: String,
20
+ ?client_side_monitoring_host: String,
21
+ ?client_side_monitoring_port: Integer,
22
+ ?client_side_monitoring_publisher: untyped,
23
+ ?convert_params: bool,
24
+ ?correct_clock_skew: bool,
25
+ ?defaults_mode: String,
26
+ ?disable_request_compression: bool,
27
+ ?log_formatter: untyped,
28
+ ?log_level: Symbol,
29
+ ?logger: untyped,
30
+ ?max_attempts: Integer,
31
+ ?profile: String,
32
+ ?request_min_compression_size_bytes: Integer,
33
+ ?retry_backoff: Proc,
34
+ ?retry_base_delay: Float,
35
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
36
+ ?retry_limit: Integer,
37
+ ?retry_max_delay: Integer,
38
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
39
+ ?sdk_ua_app_id: String,
40
+ ?secret_access_key: String,
41
+ ?session_token: String,
42
+ ?sigv4_region: String,
43
+ ?stub_responses: untyped,
44
+ ?token_provider: untyped,
45
+ ?validate_params: bool,
46
+ ?http_proxy: String,
47
+ ?http_open_timeout: (Float | Integer),
48
+ ?http_read_timeout: (Float | Integer),
49
+ ?http_idle_timeout: (Float | Integer),
50
+ ?http_continue_timeout: (Float | Integer),
51
+ ?ssl_timeout: (Float | Integer | nil),
52
+ ?http_wire_trace: bool,
53
+ ?ssl_verify_peer: bool,
54
+ ?ssl_ca_bundle: String,
55
+ ?ssl_ca_directory: String,
56
+ ?ssl_ca_store: String,
57
+ ?on_chunk_received: Proc,
58
+ ?on_chunk_sent: Proc,
59
+ ?raise_response_errors: bool
60
+ ) -> void
61
+ | (?Hash[Symbol, untyped]) -> void
62
+
63
+ def client: () -> Client
64
+
65
+
66
+ end
67
+ end
68
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,145 @@
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::CloudSearchDomain
9
+ module Types
10
+
11
+ class Bucket
12
+ attr_accessor value: ::String
13
+ attr_accessor count: ::Integer
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class BucketInfo
18
+ attr_accessor buckets: ::Array[Types::Bucket]
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class DocumentServiceException
23
+ attr_accessor status: ::String
24
+ attr_accessor message: ::String
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class DocumentServiceWarning
29
+ attr_accessor message: ::String
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class FieldStats
34
+ attr_accessor min: ::String
35
+ attr_accessor max: ::String
36
+ attr_accessor count: ::Integer
37
+ attr_accessor missing: ::Integer
38
+ attr_accessor sum: ::Float
39
+ attr_accessor sum_of_squares: ::Float
40
+ attr_accessor mean: ::String
41
+ attr_accessor stddev: ::Float
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class Hit
46
+ attr_accessor id: ::String
47
+ attr_accessor fields: ::Hash[::String, ::Array[::String]]
48
+ attr_accessor exprs: ::Hash[::String, ::String]
49
+ attr_accessor highlights: ::Hash[::String, ::String]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class Hits
54
+ attr_accessor found: ::Integer
55
+ attr_accessor start: ::Integer
56
+ attr_accessor cursor: ::String
57
+ attr_accessor hit: ::Array[Types::Hit]
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class SearchException
62
+ attr_accessor message: ::String
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class SearchRequest
67
+ attr_accessor cursor: ::String
68
+ attr_accessor expr: ::String
69
+ attr_accessor facet: ::String
70
+ attr_accessor filter_query: ::String
71
+ attr_accessor highlight: ::String
72
+ attr_accessor partial: bool
73
+ attr_accessor query: ::String
74
+ attr_accessor query_options: ::String
75
+ attr_accessor query_parser: ("simple" | "structured" | "lucene" | "dismax")
76
+ attr_accessor return: ::String
77
+ attr_accessor size: ::Integer
78
+ attr_accessor sort: ::String
79
+ attr_accessor start: ::Integer
80
+ attr_accessor stats: ::String
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class SearchResponse
85
+ attr_accessor status: Types::SearchStatus
86
+ attr_accessor hits: Types::Hits
87
+ attr_accessor facets: ::Hash[::String, Types::BucketInfo]
88
+ attr_accessor stats: ::Hash[::String, Types::FieldStats]
89
+ SENSITIVE: []
90
+ end
91
+
92
+ class SearchStatus
93
+ attr_accessor timems: ::Integer
94
+ attr_accessor rid: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class SuggestModel
99
+ attr_accessor query: ::String
100
+ attr_accessor found: ::Integer
101
+ attr_accessor suggestions: ::Array[Types::SuggestionMatch]
102
+ SENSITIVE: []
103
+ end
104
+
105
+ class SuggestRequest
106
+ attr_accessor query: ::String
107
+ attr_accessor suggester: ::String
108
+ attr_accessor size: ::Integer
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class SuggestResponse
113
+ attr_accessor status: Types::SuggestStatus
114
+ attr_accessor suggest: Types::SuggestModel
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class SuggestStatus
119
+ attr_accessor timems: ::Integer
120
+ attr_accessor rid: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class SuggestionMatch
125
+ attr_accessor suggestion: ::String
126
+ attr_accessor score: ::Integer
127
+ attr_accessor id: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class UploadDocumentsRequest
132
+ attr_accessor documents: ::IO
133
+ attr_accessor content_type: ("application/json" | "application/xml")
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class UploadDocumentsResponse
138
+ attr_accessor status: ::String
139
+ attr_accessor adds: ::Integer
140
+ attr_accessor deletes: ::Integer
141
+ attr_accessor warnings: ::Array[Types::DocumentServiceWarning]
142
+ SENSITIVE: []
143
+ end
144
+ end
145
+ 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 CloudSearchDomain
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-cloudsearchdomain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.41.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: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -64,13 +64,18 @@ files:
64
64
  - lib/aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb
65
65
  - lib/aws-sdk-cloudsearchdomain/resource.rb
66
66
  - lib/aws-sdk-cloudsearchdomain/types.rb
67
+ - sig/client.rbs
68
+ - sig/errors.rbs
69
+ - sig/resource.rbs
70
+ - sig/types.rbs
71
+ - sig/waiters.rbs
67
72
  homepage: https://github.com/aws/aws-sdk-ruby
68
73
  licenses:
69
74
  - Apache-2.0
70
75
  metadata:
71
76
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearchdomain
72
77
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearchdomain/CHANGELOG.md
73
- post_install_message:
78
+ post_install_message:
74
79
  rdoc_options: []
75
80
  require_paths:
76
81
  - lib
@@ -85,8 +90,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
90
  - !ruby/object:Gem::Version
86
91
  version: '0'
87
92
  requirements: []
88
- rubygems_version: 3.1.6
89
- signing_key:
93
+ rubygems_version: 3.4.10
94
+ signing_key:
90
95
  specification_version: 4
91
96
  summary: AWS SDK for Ruby - Amazon CloudSearch Domain
92
97
  test_files: []