aws-sdk-elasticsearchservice 1.80.0 → 1.82.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticsearchservice/client.rb +106 -1
- data/lib/aws-sdk-elasticsearchservice/client_api.rb +60 -0
- data/lib/aws-sdk-elasticsearchservice/endpoints.rb +14 -0
- data/lib/aws-sdk-elasticsearchservice/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-elasticsearchservice/types.rb +161 -4
- data/lib/aws-sdk-elasticsearchservice.rb +1 -1
- data/sig/client.rbs +886 -0
- data/sig/errors.rbs +39 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1282 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,886 @@
|
|
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 ElasticsearchService
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AcceptInboundCrossClusterSearchConnectionResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptInboundCrossClusterSearchConnectionResponse]
|
77
|
+
def cross_cluster_search_connection: () -> Types::InboundCrossClusterSearchConnection
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#accept_inbound_cross_cluster_search_connection-instance_method
|
80
|
+
def accept_inbound_cross_cluster_search_connection: (
|
81
|
+
cross_cluster_search_connection_id: ::String
|
82
|
+
) -> _AcceptInboundCrossClusterSearchConnectionResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptInboundCrossClusterSearchConnectionResponseSuccess
|
84
|
+
|
85
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#add_tags-instance_method
|
86
|
+
def add_tags: (
|
87
|
+
arn: ::String,
|
88
|
+
tag_list: Array[
|
89
|
+
{
|
90
|
+
key: ::String,
|
91
|
+
value: ::String
|
92
|
+
},
|
93
|
+
]
|
94
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
95
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
96
|
+
|
97
|
+
interface _AssociatePackageResponseSuccess
|
98
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociatePackageResponse]
|
99
|
+
def domain_package_details: () -> Types::DomainPackageDetails
|
100
|
+
end
|
101
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#associate_package-instance_method
|
102
|
+
def associate_package: (
|
103
|
+
package_id: ::String,
|
104
|
+
domain_name: ::String
|
105
|
+
) -> _AssociatePackageResponseSuccess
|
106
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePackageResponseSuccess
|
107
|
+
|
108
|
+
interface _AuthorizeVpcEndpointAccessResponseSuccess
|
109
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AuthorizeVpcEndpointAccessResponse]
|
110
|
+
def authorized_principal: () -> Types::AuthorizedPrincipal
|
111
|
+
end
|
112
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#authorize_vpc_endpoint_access-instance_method
|
113
|
+
def authorize_vpc_endpoint_access: (
|
114
|
+
domain_name: ::String,
|
115
|
+
account: ::String
|
116
|
+
) -> _AuthorizeVpcEndpointAccessResponseSuccess
|
117
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AuthorizeVpcEndpointAccessResponseSuccess
|
118
|
+
|
119
|
+
interface _CancelDomainConfigChangeResponseSuccess
|
120
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelDomainConfigChangeResponse]
|
121
|
+
def dry_run: () -> bool
|
122
|
+
def cancelled_change_ids: () -> ::Array[::String]
|
123
|
+
def cancelled_change_properties: () -> ::Array[Types::CancelledChangeProperty]
|
124
|
+
end
|
125
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#cancel_domain_config_change-instance_method
|
126
|
+
def cancel_domain_config_change: (
|
127
|
+
domain_name: ::String,
|
128
|
+
?dry_run: bool
|
129
|
+
) -> _CancelDomainConfigChangeResponseSuccess
|
130
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelDomainConfigChangeResponseSuccess
|
131
|
+
|
132
|
+
interface _CancelElasticsearchServiceSoftwareUpdateResponseSuccess
|
133
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelElasticsearchServiceSoftwareUpdateResponse]
|
134
|
+
def service_software_options: () -> Types::ServiceSoftwareOptions
|
135
|
+
end
|
136
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#cancel_elasticsearch_service_software_update-instance_method
|
137
|
+
def cancel_elasticsearch_service_software_update: (
|
138
|
+
domain_name: ::String
|
139
|
+
) -> _CancelElasticsearchServiceSoftwareUpdateResponseSuccess
|
140
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelElasticsearchServiceSoftwareUpdateResponseSuccess
|
141
|
+
|
142
|
+
interface _CreateElasticsearchDomainResponseSuccess
|
143
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateElasticsearchDomainResponse]
|
144
|
+
def domain_status: () -> Types::ElasticsearchDomainStatus
|
145
|
+
end
|
146
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#create_elasticsearch_domain-instance_method
|
147
|
+
def create_elasticsearch_domain: (
|
148
|
+
domain_name: ::String,
|
149
|
+
?elasticsearch_version: ::String,
|
150
|
+
?elasticsearch_cluster_config: {
|
151
|
+
instance_type: ("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch")?,
|
152
|
+
instance_count: ::Integer?,
|
153
|
+
dedicated_master_enabled: bool?,
|
154
|
+
zone_awareness_enabled: bool?,
|
155
|
+
zone_awareness_config: {
|
156
|
+
availability_zone_count: ::Integer?
|
157
|
+
}?,
|
158
|
+
dedicated_master_type: ("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch")?,
|
159
|
+
dedicated_master_count: ::Integer?,
|
160
|
+
warm_enabled: bool?,
|
161
|
+
warm_type: ("ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch")?,
|
162
|
+
warm_count: ::Integer?,
|
163
|
+
cold_storage_options: {
|
164
|
+
enabled: bool
|
165
|
+
}?
|
166
|
+
},
|
167
|
+
?ebs_options: {
|
168
|
+
ebs_enabled: bool?,
|
169
|
+
volume_type: ("standard" | "gp2" | "io1" | "gp3")?,
|
170
|
+
volume_size: ::Integer?,
|
171
|
+
iops: ::Integer?,
|
172
|
+
throughput: ::Integer?
|
173
|
+
},
|
174
|
+
?access_policies: ::String,
|
175
|
+
?snapshot_options: {
|
176
|
+
automated_snapshot_start_hour: ::Integer?
|
177
|
+
},
|
178
|
+
?vpc_options: {
|
179
|
+
subnet_ids: Array[::String]?,
|
180
|
+
security_group_ids: Array[::String]?
|
181
|
+
},
|
182
|
+
?cognito_options: {
|
183
|
+
enabled: bool?,
|
184
|
+
user_pool_id: ::String?,
|
185
|
+
identity_pool_id: ::String?,
|
186
|
+
role_arn: ::String?
|
187
|
+
},
|
188
|
+
?encryption_at_rest_options: {
|
189
|
+
enabled: bool?,
|
190
|
+
kms_key_id: ::String?
|
191
|
+
},
|
192
|
+
?node_to_node_encryption_options: {
|
193
|
+
enabled: bool?
|
194
|
+
},
|
195
|
+
?advanced_options: Hash[::String, ::String],
|
196
|
+
?log_publishing_options: Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), {
|
197
|
+
cloud_watch_logs_log_group_arn: ::String?,
|
198
|
+
enabled: bool?
|
199
|
+
}],
|
200
|
+
?domain_endpoint_options: {
|
201
|
+
enforce_https: bool?,
|
202
|
+
tls_security_policy: ("Policy-Min-TLS-1-0-2019-07" | "Policy-Min-TLS-1-2-2019-07" | "Policy-Min-TLS-1-2-PFS-2023-10")?,
|
203
|
+
custom_endpoint_enabled: bool?,
|
204
|
+
custom_endpoint: ::String?,
|
205
|
+
custom_endpoint_certificate_arn: ::String?
|
206
|
+
},
|
207
|
+
?advanced_security_options: {
|
208
|
+
enabled: bool?,
|
209
|
+
internal_user_database_enabled: bool?,
|
210
|
+
master_user_options: {
|
211
|
+
master_user_arn: ::String?,
|
212
|
+
master_user_name: ::String?,
|
213
|
+
master_user_password: ::String?
|
214
|
+
}?,
|
215
|
+
saml_options: {
|
216
|
+
enabled: bool?,
|
217
|
+
idp: {
|
218
|
+
metadata_content: ::String,
|
219
|
+
entity_id: ::String
|
220
|
+
}?,
|
221
|
+
master_user_name: ::String?,
|
222
|
+
master_backend_role: ::String?,
|
223
|
+
subject_key: ::String?,
|
224
|
+
roles_key: ::String?,
|
225
|
+
session_timeout_minutes: ::Integer?
|
226
|
+
}?,
|
227
|
+
anonymous_auth_enabled: bool?
|
228
|
+
},
|
229
|
+
?auto_tune_options: {
|
230
|
+
desired_state: ("ENABLED" | "DISABLED")?,
|
231
|
+
maintenance_schedules: Array[
|
232
|
+
{
|
233
|
+
start_at: ::Time?,
|
234
|
+
duration: {
|
235
|
+
value: ::Integer?,
|
236
|
+
unit: ("HOURS")?
|
237
|
+
}?,
|
238
|
+
cron_expression_for_recurrence: ::String?
|
239
|
+
},
|
240
|
+
]?
|
241
|
+
},
|
242
|
+
?tag_list: Array[
|
243
|
+
{
|
244
|
+
key: ::String,
|
245
|
+
value: ::String
|
246
|
+
},
|
247
|
+
]
|
248
|
+
) -> _CreateElasticsearchDomainResponseSuccess
|
249
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateElasticsearchDomainResponseSuccess
|
250
|
+
|
251
|
+
interface _CreateOutboundCrossClusterSearchConnectionResponseSuccess
|
252
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOutboundCrossClusterSearchConnectionResponse]
|
253
|
+
def source_domain_info: () -> Types::DomainInformation
|
254
|
+
def destination_domain_info: () -> Types::DomainInformation
|
255
|
+
def connection_alias: () -> ::String
|
256
|
+
def connection_status: () -> Types::OutboundCrossClusterSearchConnectionStatus
|
257
|
+
def cross_cluster_search_connection_id: () -> ::String
|
258
|
+
end
|
259
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#create_outbound_cross_cluster_search_connection-instance_method
|
260
|
+
def create_outbound_cross_cluster_search_connection: (
|
261
|
+
source_domain_info: {
|
262
|
+
owner_id: ::String?,
|
263
|
+
domain_name: ::String,
|
264
|
+
region: ::String?
|
265
|
+
},
|
266
|
+
destination_domain_info: {
|
267
|
+
owner_id: ::String?,
|
268
|
+
domain_name: ::String,
|
269
|
+
region: ::String?
|
270
|
+
},
|
271
|
+
connection_alias: ::String
|
272
|
+
) -> _CreateOutboundCrossClusterSearchConnectionResponseSuccess
|
273
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutboundCrossClusterSearchConnectionResponseSuccess
|
274
|
+
|
275
|
+
interface _CreatePackageResponseSuccess
|
276
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePackageResponse]
|
277
|
+
def package_details: () -> Types::PackageDetails
|
278
|
+
end
|
279
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#create_package-instance_method
|
280
|
+
def create_package: (
|
281
|
+
package_name: ::String,
|
282
|
+
package_type: ("TXT-DICTIONARY"),
|
283
|
+
?package_description: ::String,
|
284
|
+
package_source: {
|
285
|
+
s3_bucket_name: ::String?,
|
286
|
+
s3_key: ::String?
|
287
|
+
}
|
288
|
+
) -> _CreatePackageResponseSuccess
|
289
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePackageResponseSuccess
|
290
|
+
|
291
|
+
interface _CreateVpcEndpointResponseSuccess
|
292
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcEndpointResponse]
|
293
|
+
def vpc_endpoint: () -> Types::VpcEndpoint
|
294
|
+
end
|
295
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#create_vpc_endpoint-instance_method
|
296
|
+
def create_vpc_endpoint: (
|
297
|
+
domain_arn: ::String,
|
298
|
+
vpc_options: {
|
299
|
+
subnet_ids: Array[::String]?,
|
300
|
+
security_group_ids: Array[::String]?
|
301
|
+
},
|
302
|
+
?client_token: ::String
|
303
|
+
) -> _CreateVpcEndpointResponseSuccess
|
304
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcEndpointResponseSuccess
|
305
|
+
|
306
|
+
interface _DeleteElasticsearchDomainResponseSuccess
|
307
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteElasticsearchDomainResponse]
|
308
|
+
def domain_status: () -> Types::ElasticsearchDomainStatus
|
309
|
+
end
|
310
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_elasticsearch_domain-instance_method
|
311
|
+
def delete_elasticsearch_domain: (
|
312
|
+
domain_name: ::String
|
313
|
+
) -> _DeleteElasticsearchDomainResponseSuccess
|
314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteElasticsearchDomainResponseSuccess
|
315
|
+
|
316
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_elasticsearch_service_role-instance_method
|
317
|
+
def delete_elasticsearch_service_role: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
318
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
319
|
+
|
320
|
+
interface _DeleteInboundCrossClusterSearchConnectionResponseSuccess
|
321
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInboundCrossClusterSearchConnectionResponse]
|
322
|
+
def cross_cluster_search_connection: () -> Types::InboundCrossClusterSearchConnection
|
323
|
+
end
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_inbound_cross_cluster_search_connection-instance_method
|
325
|
+
def delete_inbound_cross_cluster_search_connection: (
|
326
|
+
cross_cluster_search_connection_id: ::String
|
327
|
+
) -> _DeleteInboundCrossClusterSearchConnectionResponseSuccess
|
328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInboundCrossClusterSearchConnectionResponseSuccess
|
329
|
+
|
330
|
+
interface _DeleteOutboundCrossClusterSearchConnectionResponseSuccess
|
331
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOutboundCrossClusterSearchConnectionResponse]
|
332
|
+
def cross_cluster_search_connection: () -> Types::OutboundCrossClusterSearchConnection
|
333
|
+
end
|
334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_outbound_cross_cluster_search_connection-instance_method
|
335
|
+
def delete_outbound_cross_cluster_search_connection: (
|
336
|
+
cross_cluster_search_connection_id: ::String
|
337
|
+
) -> _DeleteOutboundCrossClusterSearchConnectionResponseSuccess
|
338
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOutboundCrossClusterSearchConnectionResponseSuccess
|
339
|
+
|
340
|
+
interface _DeletePackageResponseSuccess
|
341
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePackageResponse]
|
342
|
+
def package_details: () -> Types::PackageDetails
|
343
|
+
end
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_package-instance_method
|
345
|
+
def delete_package: (
|
346
|
+
package_id: ::String
|
347
|
+
) -> _DeletePackageResponseSuccess
|
348
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePackageResponseSuccess
|
349
|
+
|
350
|
+
interface _DeleteVpcEndpointResponseSuccess
|
351
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcEndpointResponse]
|
352
|
+
def vpc_endpoint_summary: () -> Types::VpcEndpointSummary
|
353
|
+
end
|
354
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#delete_vpc_endpoint-instance_method
|
355
|
+
def delete_vpc_endpoint: (
|
356
|
+
vpc_endpoint_id: ::String
|
357
|
+
) -> _DeleteVpcEndpointResponseSuccess
|
358
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcEndpointResponseSuccess
|
359
|
+
|
360
|
+
interface _DescribeDomainAutoTunesResponseSuccess
|
361
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainAutoTunesResponse]
|
362
|
+
def auto_tunes: () -> ::Array[Types::AutoTune]
|
363
|
+
def next_token: () -> ::String
|
364
|
+
end
|
365
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_domain_auto_tunes-instance_method
|
366
|
+
def describe_domain_auto_tunes: (
|
367
|
+
domain_name: ::String,
|
368
|
+
?max_results: ::Integer,
|
369
|
+
?next_token: ::String
|
370
|
+
) -> _DescribeDomainAutoTunesResponseSuccess
|
371
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainAutoTunesResponseSuccess
|
372
|
+
|
373
|
+
interface _DescribeDomainChangeProgressResponseSuccess
|
374
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainChangeProgressResponse]
|
375
|
+
def change_progress_status: () -> Types::ChangeProgressStatusDetails
|
376
|
+
end
|
377
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_domain_change_progress-instance_method
|
378
|
+
def describe_domain_change_progress: (
|
379
|
+
domain_name: ::String,
|
380
|
+
?change_id: ::String
|
381
|
+
) -> _DescribeDomainChangeProgressResponseSuccess
|
382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainChangeProgressResponseSuccess
|
383
|
+
|
384
|
+
interface _DescribeElasticsearchDomainResponseSuccess
|
385
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticsearchDomainResponse]
|
386
|
+
def domain_status: () -> Types::ElasticsearchDomainStatus
|
387
|
+
end
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_elasticsearch_domain-instance_method
|
389
|
+
def describe_elasticsearch_domain: (
|
390
|
+
domain_name: ::String
|
391
|
+
) -> _DescribeElasticsearchDomainResponseSuccess
|
392
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticsearchDomainResponseSuccess
|
393
|
+
|
394
|
+
interface _DescribeElasticsearchDomainConfigResponseSuccess
|
395
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticsearchDomainConfigResponse]
|
396
|
+
def domain_config: () -> Types::ElasticsearchDomainConfig
|
397
|
+
end
|
398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_elasticsearch_domain_config-instance_method
|
399
|
+
def describe_elasticsearch_domain_config: (
|
400
|
+
domain_name: ::String
|
401
|
+
) -> _DescribeElasticsearchDomainConfigResponseSuccess
|
402
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticsearchDomainConfigResponseSuccess
|
403
|
+
|
404
|
+
interface _DescribeElasticsearchDomainsResponseSuccess
|
405
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticsearchDomainsResponse]
|
406
|
+
def domain_status_list: () -> ::Array[Types::ElasticsearchDomainStatus]
|
407
|
+
end
|
408
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_elasticsearch_domains-instance_method
|
409
|
+
def describe_elasticsearch_domains: (
|
410
|
+
domain_names: Array[::String]
|
411
|
+
) -> _DescribeElasticsearchDomainsResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticsearchDomainsResponseSuccess
|
413
|
+
|
414
|
+
interface _DescribeElasticsearchInstanceTypeLimitsResponseSuccess
|
415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeElasticsearchInstanceTypeLimitsResponse]
|
416
|
+
def limits_by_role: () -> ::Hash[::String, Types::Limits]
|
417
|
+
end
|
418
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_elasticsearch_instance_type_limits-instance_method
|
419
|
+
def describe_elasticsearch_instance_type_limits: (
|
420
|
+
?domain_name: ::String,
|
421
|
+
instance_type: ("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch"),
|
422
|
+
elasticsearch_version: ::String
|
423
|
+
) -> _DescribeElasticsearchInstanceTypeLimitsResponseSuccess
|
424
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeElasticsearchInstanceTypeLimitsResponseSuccess
|
425
|
+
|
426
|
+
interface _DescribeInboundCrossClusterSearchConnectionsResponseSuccess
|
427
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInboundCrossClusterSearchConnectionsResponse]
|
428
|
+
def cross_cluster_search_connections: () -> ::Array[Types::InboundCrossClusterSearchConnection]
|
429
|
+
def next_token: () -> ::String
|
430
|
+
end
|
431
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_inbound_cross_cluster_search_connections-instance_method
|
432
|
+
def describe_inbound_cross_cluster_search_connections: (
|
433
|
+
?filters: Array[
|
434
|
+
{
|
435
|
+
name: ::String?,
|
436
|
+
values: Array[::String]?
|
437
|
+
},
|
438
|
+
],
|
439
|
+
?max_results: ::Integer,
|
440
|
+
?next_token: ::String
|
441
|
+
) -> _DescribeInboundCrossClusterSearchConnectionsResponseSuccess
|
442
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInboundCrossClusterSearchConnectionsResponseSuccess
|
443
|
+
|
444
|
+
interface _DescribeOutboundCrossClusterSearchConnectionsResponseSuccess
|
445
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOutboundCrossClusterSearchConnectionsResponse]
|
446
|
+
def cross_cluster_search_connections: () -> ::Array[Types::OutboundCrossClusterSearchConnection]
|
447
|
+
def next_token: () -> ::String
|
448
|
+
end
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_outbound_cross_cluster_search_connections-instance_method
|
450
|
+
def describe_outbound_cross_cluster_search_connections: (
|
451
|
+
?filters: Array[
|
452
|
+
{
|
453
|
+
name: ::String?,
|
454
|
+
values: Array[::String]?
|
455
|
+
},
|
456
|
+
],
|
457
|
+
?max_results: ::Integer,
|
458
|
+
?next_token: ::String
|
459
|
+
) -> _DescribeOutboundCrossClusterSearchConnectionsResponseSuccess
|
460
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOutboundCrossClusterSearchConnectionsResponseSuccess
|
461
|
+
|
462
|
+
interface _DescribePackagesResponseSuccess
|
463
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribePackagesResponse]
|
464
|
+
def package_details_list: () -> ::Array[Types::PackageDetails]
|
465
|
+
def next_token: () -> ::String
|
466
|
+
end
|
467
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_packages-instance_method
|
468
|
+
def describe_packages: (
|
469
|
+
?filters: Array[
|
470
|
+
{
|
471
|
+
name: ("PackageID" | "PackageName" | "PackageStatus")?,
|
472
|
+
value: Array[::String]?
|
473
|
+
},
|
474
|
+
],
|
475
|
+
?max_results: ::Integer,
|
476
|
+
?next_token: ::String
|
477
|
+
) -> _DescribePackagesResponseSuccess
|
478
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePackagesResponseSuccess
|
479
|
+
|
480
|
+
interface _DescribeReservedElasticsearchInstanceOfferingsResponseSuccess
|
481
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReservedElasticsearchInstanceOfferingsResponse]
|
482
|
+
def next_token: () -> ::String
|
483
|
+
def reserved_elasticsearch_instance_offerings: () -> ::Array[Types::ReservedElasticsearchInstanceOffering]
|
484
|
+
end
|
485
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_reserved_elasticsearch_instance_offerings-instance_method
|
486
|
+
def describe_reserved_elasticsearch_instance_offerings: (
|
487
|
+
?reserved_elasticsearch_instance_offering_id: ::String,
|
488
|
+
?max_results: ::Integer,
|
489
|
+
?next_token: ::String
|
490
|
+
) -> _DescribeReservedElasticsearchInstanceOfferingsResponseSuccess
|
491
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReservedElasticsearchInstanceOfferingsResponseSuccess
|
492
|
+
|
493
|
+
interface _DescribeReservedElasticsearchInstancesResponseSuccess
|
494
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReservedElasticsearchInstancesResponse]
|
495
|
+
def next_token: () -> ::String
|
496
|
+
def reserved_elasticsearch_instances: () -> ::Array[Types::ReservedElasticsearchInstance]
|
497
|
+
end
|
498
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_reserved_elasticsearch_instances-instance_method
|
499
|
+
def describe_reserved_elasticsearch_instances: (
|
500
|
+
?reserved_elasticsearch_instance_id: ::String,
|
501
|
+
?max_results: ::Integer,
|
502
|
+
?next_token: ::String
|
503
|
+
) -> _DescribeReservedElasticsearchInstancesResponseSuccess
|
504
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReservedElasticsearchInstancesResponseSuccess
|
505
|
+
|
506
|
+
interface _DescribeVpcEndpointsResponseSuccess
|
507
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcEndpointsResponse]
|
508
|
+
def vpc_endpoints: () -> ::Array[Types::VpcEndpoint]
|
509
|
+
def vpc_endpoint_errors: () -> ::Array[Types::VpcEndpointError]
|
510
|
+
end
|
511
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#describe_vpc_endpoints-instance_method
|
512
|
+
def describe_vpc_endpoints: (
|
513
|
+
vpc_endpoint_ids: Array[::String]
|
514
|
+
) -> _DescribeVpcEndpointsResponseSuccess
|
515
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcEndpointsResponseSuccess
|
516
|
+
|
517
|
+
interface _DissociatePackageResponseSuccess
|
518
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DissociatePackageResponse]
|
519
|
+
def domain_package_details: () -> Types::DomainPackageDetails
|
520
|
+
end
|
521
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#dissociate_package-instance_method
|
522
|
+
def dissociate_package: (
|
523
|
+
package_id: ::String,
|
524
|
+
domain_name: ::String
|
525
|
+
) -> _DissociatePackageResponseSuccess
|
526
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DissociatePackageResponseSuccess
|
527
|
+
|
528
|
+
interface _GetCompatibleElasticsearchVersionsResponseSuccess
|
529
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCompatibleElasticsearchVersionsResponse]
|
530
|
+
def compatible_elasticsearch_versions: () -> ::Array[Types::CompatibleVersionsMap]
|
531
|
+
end
|
532
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#get_compatible_elasticsearch_versions-instance_method
|
533
|
+
def get_compatible_elasticsearch_versions: (
|
534
|
+
?domain_name: ::String
|
535
|
+
) -> _GetCompatibleElasticsearchVersionsResponseSuccess
|
536
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCompatibleElasticsearchVersionsResponseSuccess
|
537
|
+
|
538
|
+
interface _GetPackageVersionHistoryResponseSuccess
|
539
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPackageVersionHistoryResponse]
|
540
|
+
def package_id: () -> ::String
|
541
|
+
def package_version_history_list: () -> ::Array[Types::PackageVersionHistory]
|
542
|
+
def next_token: () -> ::String
|
543
|
+
end
|
544
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#get_package_version_history-instance_method
|
545
|
+
def get_package_version_history: (
|
546
|
+
package_id: ::String,
|
547
|
+
?max_results: ::Integer,
|
548
|
+
?next_token: ::String
|
549
|
+
) -> _GetPackageVersionHistoryResponseSuccess
|
550
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPackageVersionHistoryResponseSuccess
|
551
|
+
|
552
|
+
interface _GetUpgradeHistoryResponseSuccess
|
553
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUpgradeHistoryResponse]
|
554
|
+
def upgrade_histories: () -> ::Array[Types::UpgradeHistory]
|
555
|
+
def next_token: () -> ::String
|
556
|
+
end
|
557
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#get_upgrade_history-instance_method
|
558
|
+
def get_upgrade_history: (
|
559
|
+
domain_name: ::String,
|
560
|
+
?max_results: ::Integer,
|
561
|
+
?next_token: ::String
|
562
|
+
) -> _GetUpgradeHistoryResponseSuccess
|
563
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUpgradeHistoryResponseSuccess
|
564
|
+
|
565
|
+
interface _GetUpgradeStatusResponseSuccess
|
566
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUpgradeStatusResponse]
|
567
|
+
def upgrade_step: () -> ("PRE_UPGRADE_CHECK" | "SNAPSHOT" | "UPGRADE")
|
568
|
+
def step_status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
|
569
|
+
def upgrade_name: () -> ::String
|
570
|
+
end
|
571
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#get_upgrade_status-instance_method
|
572
|
+
def get_upgrade_status: (
|
573
|
+
domain_name: ::String
|
574
|
+
) -> _GetUpgradeStatusResponseSuccess
|
575
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUpgradeStatusResponseSuccess
|
576
|
+
|
577
|
+
interface _ListDomainNamesResponseSuccess
|
578
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainNamesResponse]
|
579
|
+
def domain_names: () -> ::Array[Types::DomainInfo]
|
580
|
+
end
|
581
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_domain_names-instance_method
|
582
|
+
def list_domain_names: (
|
583
|
+
?engine_type: ("OpenSearch" | "Elasticsearch")
|
584
|
+
) -> _ListDomainNamesResponseSuccess
|
585
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainNamesResponseSuccess
|
586
|
+
|
587
|
+
interface _ListDomainsForPackageResponseSuccess
|
588
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsForPackageResponse]
|
589
|
+
def domain_package_details_list: () -> ::Array[Types::DomainPackageDetails]
|
590
|
+
def next_token: () -> ::String
|
591
|
+
end
|
592
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_domains_for_package-instance_method
|
593
|
+
def list_domains_for_package: (
|
594
|
+
package_id: ::String,
|
595
|
+
?max_results: ::Integer,
|
596
|
+
?next_token: ::String
|
597
|
+
) -> _ListDomainsForPackageResponseSuccess
|
598
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsForPackageResponseSuccess
|
599
|
+
|
600
|
+
interface _ListElasticsearchInstanceTypesResponseSuccess
|
601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListElasticsearchInstanceTypesResponse]
|
602
|
+
def elasticsearch_instance_types: () -> ::Array[("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch")]
|
603
|
+
def next_token: () -> ::String
|
604
|
+
end
|
605
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_elasticsearch_instance_types-instance_method
|
606
|
+
def list_elasticsearch_instance_types: (
|
607
|
+
elasticsearch_version: ::String,
|
608
|
+
?domain_name: ::String,
|
609
|
+
?max_results: ::Integer,
|
610
|
+
?next_token: ::String
|
611
|
+
) -> _ListElasticsearchInstanceTypesResponseSuccess
|
612
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListElasticsearchInstanceTypesResponseSuccess
|
613
|
+
|
614
|
+
interface _ListElasticsearchVersionsResponseSuccess
|
615
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListElasticsearchVersionsResponse]
|
616
|
+
def elasticsearch_versions: () -> ::Array[::String]
|
617
|
+
def next_token: () -> ::String
|
618
|
+
end
|
619
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_elasticsearch_versions-instance_method
|
620
|
+
def list_elasticsearch_versions: (
|
621
|
+
?max_results: ::Integer,
|
622
|
+
?next_token: ::String
|
623
|
+
) -> _ListElasticsearchVersionsResponseSuccess
|
624
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListElasticsearchVersionsResponseSuccess
|
625
|
+
|
626
|
+
interface _ListPackagesForDomainResponseSuccess
|
627
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPackagesForDomainResponse]
|
628
|
+
def domain_package_details_list: () -> ::Array[Types::DomainPackageDetails]
|
629
|
+
def next_token: () -> ::String
|
630
|
+
end
|
631
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_packages_for_domain-instance_method
|
632
|
+
def list_packages_for_domain: (
|
633
|
+
domain_name: ::String,
|
634
|
+
?max_results: ::Integer,
|
635
|
+
?next_token: ::String
|
636
|
+
) -> _ListPackagesForDomainResponseSuccess
|
637
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPackagesForDomainResponseSuccess
|
638
|
+
|
639
|
+
interface _ListTagsResponseSuccess
|
640
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsResponse]
|
641
|
+
def tag_list: () -> ::Array[Types::Tag]
|
642
|
+
end
|
643
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_tags-instance_method
|
644
|
+
def list_tags: (
|
645
|
+
arn: ::String
|
646
|
+
) -> _ListTagsResponseSuccess
|
647
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
|
648
|
+
|
649
|
+
interface _ListVpcEndpointAccessResponseSuccess
|
650
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcEndpointAccessResponse]
|
651
|
+
def authorized_principal_list: () -> ::Array[Types::AuthorizedPrincipal]
|
652
|
+
def next_token: () -> ::String
|
653
|
+
end
|
654
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_vpc_endpoint_access-instance_method
|
655
|
+
def list_vpc_endpoint_access: (
|
656
|
+
domain_name: ::String,
|
657
|
+
?next_token: ::String
|
658
|
+
) -> _ListVpcEndpointAccessResponseSuccess
|
659
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcEndpointAccessResponseSuccess
|
660
|
+
|
661
|
+
interface _ListVpcEndpointsResponseSuccess
|
662
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcEndpointsResponse]
|
663
|
+
def vpc_endpoint_summary_list: () -> ::Array[Types::VpcEndpointSummary]
|
664
|
+
def next_token: () -> ::String
|
665
|
+
end
|
666
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_vpc_endpoints-instance_method
|
667
|
+
def list_vpc_endpoints: (
|
668
|
+
?next_token: ::String
|
669
|
+
) -> _ListVpcEndpointsResponseSuccess
|
670
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcEndpointsResponseSuccess
|
671
|
+
|
672
|
+
interface _ListVpcEndpointsForDomainResponseSuccess
|
673
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcEndpointsForDomainResponse]
|
674
|
+
def vpc_endpoint_summary_list: () -> ::Array[Types::VpcEndpointSummary]
|
675
|
+
def next_token: () -> ::String
|
676
|
+
end
|
677
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#list_vpc_endpoints_for_domain-instance_method
|
678
|
+
def list_vpc_endpoints_for_domain: (
|
679
|
+
domain_name: ::String,
|
680
|
+
?next_token: ::String
|
681
|
+
) -> _ListVpcEndpointsForDomainResponseSuccess
|
682
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcEndpointsForDomainResponseSuccess
|
683
|
+
|
684
|
+
interface _PurchaseReservedElasticsearchInstanceOfferingResponseSuccess
|
685
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PurchaseReservedElasticsearchInstanceOfferingResponse]
|
686
|
+
def reserved_elasticsearch_instance_id: () -> ::String
|
687
|
+
def reservation_name: () -> ::String
|
688
|
+
end
|
689
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#purchase_reserved_elasticsearch_instance_offering-instance_method
|
690
|
+
def purchase_reserved_elasticsearch_instance_offering: (
|
691
|
+
reserved_elasticsearch_instance_offering_id: ::String,
|
692
|
+
reservation_name: ::String,
|
693
|
+
?instance_count: ::Integer
|
694
|
+
) -> _PurchaseReservedElasticsearchInstanceOfferingResponseSuccess
|
695
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PurchaseReservedElasticsearchInstanceOfferingResponseSuccess
|
696
|
+
|
697
|
+
interface _RejectInboundCrossClusterSearchConnectionResponseSuccess
|
698
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectInboundCrossClusterSearchConnectionResponse]
|
699
|
+
def cross_cluster_search_connection: () -> Types::InboundCrossClusterSearchConnection
|
700
|
+
end
|
701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#reject_inbound_cross_cluster_search_connection-instance_method
|
702
|
+
def reject_inbound_cross_cluster_search_connection: (
|
703
|
+
cross_cluster_search_connection_id: ::String
|
704
|
+
) -> _RejectInboundCrossClusterSearchConnectionResponseSuccess
|
705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectInboundCrossClusterSearchConnectionResponseSuccess
|
706
|
+
|
707
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#remove_tags-instance_method
|
708
|
+
def remove_tags: (
|
709
|
+
arn: ::String,
|
710
|
+
tag_keys: Array[::String]
|
711
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
712
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
713
|
+
|
714
|
+
interface _RevokeVpcEndpointAccessResponseSuccess
|
715
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RevokeVpcEndpointAccessResponse]
|
716
|
+
end
|
717
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#revoke_vpc_endpoint_access-instance_method
|
718
|
+
def revoke_vpc_endpoint_access: (
|
719
|
+
domain_name: ::String,
|
720
|
+
account: ::String
|
721
|
+
) -> _RevokeVpcEndpointAccessResponseSuccess
|
722
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokeVpcEndpointAccessResponseSuccess
|
723
|
+
|
724
|
+
interface _StartElasticsearchServiceSoftwareUpdateResponseSuccess
|
725
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartElasticsearchServiceSoftwareUpdateResponse]
|
726
|
+
def service_software_options: () -> Types::ServiceSoftwareOptions
|
727
|
+
end
|
728
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#start_elasticsearch_service_software_update-instance_method
|
729
|
+
def start_elasticsearch_service_software_update: (
|
730
|
+
domain_name: ::String
|
731
|
+
) -> _StartElasticsearchServiceSoftwareUpdateResponseSuccess
|
732
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartElasticsearchServiceSoftwareUpdateResponseSuccess
|
733
|
+
|
734
|
+
interface _UpdateElasticsearchDomainConfigResponseSuccess
|
735
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateElasticsearchDomainConfigResponse]
|
736
|
+
def domain_config: () -> Types::ElasticsearchDomainConfig
|
737
|
+
def dry_run_results: () -> Types::DryRunResults
|
738
|
+
end
|
739
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#update_elasticsearch_domain_config-instance_method
|
740
|
+
def update_elasticsearch_domain_config: (
|
741
|
+
domain_name: ::String,
|
742
|
+
?elasticsearch_cluster_config: {
|
743
|
+
instance_type: ("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch")?,
|
744
|
+
instance_count: ::Integer?,
|
745
|
+
dedicated_master_enabled: bool?,
|
746
|
+
zone_awareness_enabled: bool?,
|
747
|
+
zone_awareness_config: {
|
748
|
+
availability_zone_count: ::Integer?
|
749
|
+
}?,
|
750
|
+
dedicated_master_type: ("m3.medium.elasticsearch" | "m3.large.elasticsearch" | "m3.xlarge.elasticsearch" | "m3.2xlarge.elasticsearch" | "m4.large.elasticsearch" | "m4.xlarge.elasticsearch" | "m4.2xlarge.elasticsearch" | "m4.4xlarge.elasticsearch" | "m4.10xlarge.elasticsearch" | "m5.large.elasticsearch" | "m5.xlarge.elasticsearch" | "m5.2xlarge.elasticsearch" | "m5.4xlarge.elasticsearch" | "m5.12xlarge.elasticsearch" | "r5.large.elasticsearch" | "r5.xlarge.elasticsearch" | "r5.2xlarge.elasticsearch" | "r5.4xlarge.elasticsearch" | "r5.12xlarge.elasticsearch" | "c5.large.elasticsearch" | "c5.xlarge.elasticsearch" | "c5.2xlarge.elasticsearch" | "c5.4xlarge.elasticsearch" | "c5.9xlarge.elasticsearch" | "c5.18xlarge.elasticsearch" | "ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch" | "t2.micro.elasticsearch" | "t2.small.elasticsearch" | "t2.medium.elasticsearch" | "r3.large.elasticsearch" | "r3.xlarge.elasticsearch" | "r3.2xlarge.elasticsearch" | "r3.4xlarge.elasticsearch" | "r3.8xlarge.elasticsearch" | "i2.xlarge.elasticsearch" | "i2.2xlarge.elasticsearch" | "d2.xlarge.elasticsearch" | "d2.2xlarge.elasticsearch" | "d2.4xlarge.elasticsearch" | "d2.8xlarge.elasticsearch" | "c4.large.elasticsearch" | "c4.xlarge.elasticsearch" | "c4.2xlarge.elasticsearch" | "c4.4xlarge.elasticsearch" | "c4.8xlarge.elasticsearch" | "r4.large.elasticsearch" | "r4.xlarge.elasticsearch" | "r4.2xlarge.elasticsearch" | "r4.4xlarge.elasticsearch" | "r4.8xlarge.elasticsearch" | "r4.16xlarge.elasticsearch" | "i3.large.elasticsearch" | "i3.xlarge.elasticsearch" | "i3.2xlarge.elasticsearch" | "i3.4xlarge.elasticsearch" | "i3.8xlarge.elasticsearch" | "i3.16xlarge.elasticsearch")?,
|
751
|
+
dedicated_master_count: ::Integer?,
|
752
|
+
warm_enabled: bool?,
|
753
|
+
warm_type: ("ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch")?,
|
754
|
+
warm_count: ::Integer?,
|
755
|
+
cold_storage_options: {
|
756
|
+
enabled: bool
|
757
|
+
}?
|
758
|
+
},
|
759
|
+
?ebs_options: {
|
760
|
+
ebs_enabled: bool?,
|
761
|
+
volume_type: ("standard" | "gp2" | "io1" | "gp3")?,
|
762
|
+
volume_size: ::Integer?,
|
763
|
+
iops: ::Integer?,
|
764
|
+
throughput: ::Integer?
|
765
|
+
},
|
766
|
+
?snapshot_options: {
|
767
|
+
automated_snapshot_start_hour: ::Integer?
|
768
|
+
},
|
769
|
+
?vpc_options: {
|
770
|
+
subnet_ids: Array[::String]?,
|
771
|
+
security_group_ids: Array[::String]?
|
772
|
+
},
|
773
|
+
?cognito_options: {
|
774
|
+
enabled: bool?,
|
775
|
+
user_pool_id: ::String?,
|
776
|
+
identity_pool_id: ::String?,
|
777
|
+
role_arn: ::String?
|
778
|
+
},
|
779
|
+
?advanced_options: Hash[::String, ::String],
|
780
|
+
?access_policies: ::String,
|
781
|
+
?log_publishing_options: Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), {
|
782
|
+
cloud_watch_logs_log_group_arn: ::String?,
|
783
|
+
enabled: bool?
|
784
|
+
}],
|
785
|
+
?domain_endpoint_options: {
|
786
|
+
enforce_https: bool?,
|
787
|
+
tls_security_policy: ("Policy-Min-TLS-1-0-2019-07" | "Policy-Min-TLS-1-2-2019-07" | "Policy-Min-TLS-1-2-PFS-2023-10")?,
|
788
|
+
custom_endpoint_enabled: bool?,
|
789
|
+
custom_endpoint: ::String?,
|
790
|
+
custom_endpoint_certificate_arn: ::String?
|
791
|
+
},
|
792
|
+
?advanced_security_options: {
|
793
|
+
enabled: bool?,
|
794
|
+
internal_user_database_enabled: bool?,
|
795
|
+
master_user_options: {
|
796
|
+
master_user_arn: ::String?,
|
797
|
+
master_user_name: ::String?,
|
798
|
+
master_user_password: ::String?
|
799
|
+
}?,
|
800
|
+
saml_options: {
|
801
|
+
enabled: bool?,
|
802
|
+
idp: {
|
803
|
+
metadata_content: ::String,
|
804
|
+
entity_id: ::String
|
805
|
+
}?,
|
806
|
+
master_user_name: ::String?,
|
807
|
+
master_backend_role: ::String?,
|
808
|
+
subject_key: ::String?,
|
809
|
+
roles_key: ::String?,
|
810
|
+
session_timeout_minutes: ::Integer?
|
811
|
+
}?,
|
812
|
+
anonymous_auth_enabled: bool?
|
813
|
+
},
|
814
|
+
?node_to_node_encryption_options: {
|
815
|
+
enabled: bool?
|
816
|
+
},
|
817
|
+
?encryption_at_rest_options: {
|
818
|
+
enabled: bool?,
|
819
|
+
kms_key_id: ::String?
|
820
|
+
},
|
821
|
+
?auto_tune_options: {
|
822
|
+
desired_state: ("ENABLED" | "DISABLED")?,
|
823
|
+
rollback_on_disable: ("NO_ROLLBACK" | "DEFAULT_ROLLBACK")?,
|
824
|
+
maintenance_schedules: Array[
|
825
|
+
{
|
826
|
+
start_at: ::Time?,
|
827
|
+
duration: {
|
828
|
+
value: ::Integer?,
|
829
|
+
unit: ("HOURS")?
|
830
|
+
}?,
|
831
|
+
cron_expression_for_recurrence: ::String?
|
832
|
+
},
|
833
|
+
]?
|
834
|
+
},
|
835
|
+
?dry_run: bool
|
836
|
+
) -> _UpdateElasticsearchDomainConfigResponseSuccess
|
837
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateElasticsearchDomainConfigResponseSuccess
|
838
|
+
|
839
|
+
interface _UpdatePackageResponseSuccess
|
840
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePackageResponse]
|
841
|
+
def package_details: () -> Types::PackageDetails
|
842
|
+
end
|
843
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#update_package-instance_method
|
844
|
+
def update_package: (
|
845
|
+
package_id: ::String,
|
846
|
+
package_source: {
|
847
|
+
s3_bucket_name: ::String?,
|
848
|
+
s3_key: ::String?
|
849
|
+
},
|
850
|
+
?package_description: ::String,
|
851
|
+
?commit_message: ::String
|
852
|
+
) -> _UpdatePackageResponseSuccess
|
853
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePackageResponseSuccess
|
854
|
+
|
855
|
+
interface _UpdateVpcEndpointResponseSuccess
|
856
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVpcEndpointResponse]
|
857
|
+
def vpc_endpoint: () -> Types::VpcEndpoint
|
858
|
+
end
|
859
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#update_vpc_endpoint-instance_method
|
860
|
+
def update_vpc_endpoint: (
|
861
|
+
vpc_endpoint_id: ::String,
|
862
|
+
vpc_options: {
|
863
|
+
subnet_ids: Array[::String]?,
|
864
|
+
security_group_ids: Array[::String]?
|
865
|
+
}
|
866
|
+
) -> _UpdateVpcEndpointResponseSuccess
|
867
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcEndpointResponseSuccess
|
868
|
+
|
869
|
+
interface _UpgradeElasticsearchDomainResponseSuccess
|
870
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpgradeElasticsearchDomainResponse]
|
871
|
+
def domain_name: () -> ::String
|
872
|
+
def target_version: () -> ::String
|
873
|
+
def perform_check_only: () -> bool
|
874
|
+
def change_progress_details: () -> Types::ChangeProgressDetails
|
875
|
+
end
|
876
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#upgrade_elasticsearch_domain-instance_method
|
877
|
+
def upgrade_elasticsearch_domain: (
|
878
|
+
domain_name: ::String,
|
879
|
+
target_version: ::String,
|
880
|
+
?perform_check_only: bool
|
881
|
+
) -> _UpgradeElasticsearchDomainResponseSuccess
|
882
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpgradeElasticsearchDomainResponseSuccess
|
883
|
+
end
|
884
|
+
end
|
885
|
+
end
|
886
|
+
|