aws-sdk-cloudsearchdomain 1.39.0 → 1.40.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: '08c7ff058cf4cb6e421f7050a7fcc247d5f54c02e2bc5b7f9d6139b6bf55eef6'
4
+ data.tar.gz: e016ce03fac23fb37c07142a8aae48abc0eda3281250f5a3cdfbfec018e06628
5
5
  SHA512:
6
- metadata.gz: 55504683a42ef01b356807f6dc79aabf5b2b4700e827475a802c7f6a2a2d41a10bac00a9215f2ced62f18a64c588c6a670fcca88cbe71b11fd23ca6c55edb8c9
7
- data.tar.gz: 6cd2c738191fe9c710e083e4cec47e17968e20509f822409018251a5504ac45b7c19414262c1ea585cbad6db66fe8885c1dd8ede2aa10f88c91db4d5f9ea4096
6
+ metadata.gz: 3eda784e65db80cc1aed785200f48e735d002b4edc0692874c0d7ac66da3f6316e4611d26dff027f60313e4f5542c046dbb670a138627fa3c0469d500f98c8fa
7
+ data.tar.gz: 4a6d96a20e1c39ffc818bfc2502cd1ac8f8eb0eadc59df8d532c8e76599160b406cf9adeead25f64fa4d27b59683ea4e7329b4600de5af91a1251d4ba8084494
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.39.0 (2023-11-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.0
@@ -932,7 +932,7 @@ module Aws::CloudSearchDomain
932
932
  params: params,
933
933
  config: config)
934
934
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
935
- context[:gem_version] = '1.39.0'
935
+ context[:gem_version] = '1.40.0'
936
936
  Seahorse::Client::Request.new(handlers, context)
937
937
  end
938
938
 
@@ -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.40.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.40.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-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.188.0
22
+ version: 3.191.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.188.0
32
+ version: 3.191.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: []