aws-sdk-elasticsearchservice 1.32.0 → 1.37.1

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
- SHA1:
3
- metadata.gz: e5216afb691bac3ea5145b14ccc77d008fc5e115
4
- data.tar.gz: 4c4c6bc3f786a4a4e3769c19b816c65d192723ff
2
+ SHA256:
3
+ metadata.gz: bf1accf3b3f4a9344a21d077280ab5221d623dda1d65c73fca9777a8d2bdfda9
4
+ data.tar.gz: 4bb7fba6769e00e7df79544c47ac1e6298d7dd4290f4bbc116c509106530bfee
5
5
  SHA512:
6
- metadata.gz: e34c4a1317d6113ec63553c6031b18987423469e998566e152dfe4c1e110846f3c7b374528b53fb95065ef631e37a59c9634dd17d492a76020947b95874940bb
7
- data.tar.gz: 9a15112b0f84f554cc898bd4424384aa80f4b5cb3a4f1df9a06e93cf88d7edb871b783e70195358a9c848075f26366b0463c04e31833d69b3e69a12d1cce67dd
6
+ metadata.gz: 5bb491bfa8cf056234c2dfd120250ed029250ac2af637f89062e3bf36c782021c6a30f2d3214bdc88b7c29aea52f23b42ba568339b12b5e64f0c09bb7d208faf
7
+ data.tar.gz: d127f0b91525550546c4a2e41983e39440cc9e102983c9647f324c734e325d6810cee6ec6330f5e0e54d7388611eba54c87af0fc735c060c3e2a1c42f9e5f9dc
@@ -25,7 +25,7 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
25
25
  # structure.
26
26
  #
27
27
  # elasticsearch_service = Aws::ElasticsearchService::Client.new
28
- # resp = elasticsearch_service.add_tags(params)
28
+ # resp = elasticsearch_service.accept_inbound_cross_cluster_search_connection(params)
29
29
  #
30
30
  # See {Client} for more information.
31
31
  #
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
45
45
  # @service
46
46
  module Aws::ElasticsearchService
47
47
 
48
- GEM_VERSION = '1.32.0'
48
+ GEM_VERSION = '1.37.1'
49
49
 
50
50
  end
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
30
 
@@ -69,6 +70,7 @@ module Aws::ElasticsearchService
69
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
72
74
  add_plugin(Aws::Plugins::SignatureV4)
73
75
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
76
 
@@ -105,7 +107,7 @@ module Aws::ElasticsearchService
105
107
  # @option options [required, String] :region
106
108
  # The AWS region to connect to. The configured `:region` is
107
109
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
109
111
  #
110
112
  # * `Aws.config[:region]`
111
113
  # * `ENV['AWS_REGION']`
@@ -161,7 +163,7 @@ module Aws::ElasticsearchService
161
163
  # @option options [String] :endpoint
162
164
  # The client endpoint is normally constructed from the `:region`
163
165
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
167
  #
166
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +178,7 @@ module Aws::ElasticsearchService
176
178
  # requests fetching endpoints information. Defaults to 60 sec.
177
179
  #
178
180
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
182
  #
181
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
184
  # The log formatter.
@@ -308,6 +310,41 @@ module Aws::ElasticsearchService
308
310
 
309
311
  # @!group API Operations
310
312
 
313
+ # Allows the destination domain owner to accept an inbound cross-cluster
314
+ # search connection request.
315
+ #
316
+ # @option params [required, String] :cross_cluster_search_connection_id
317
+ # The id of the inbound connection that you want to accept.
318
+ #
319
+ # @return [Types::AcceptInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
320
+ #
321
+ # * {Types::AcceptInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
322
+ #
323
+ # @example Request syntax with placeholder values
324
+ #
325
+ # resp = client.accept_inbound_cross_cluster_search_connection({
326
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
327
+ # })
328
+ #
329
+ # @example Response structure
330
+ #
331
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
332
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
333
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
334
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
335
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
336
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
337
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
338
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
339
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
340
+ #
341
+ # @overload accept_inbound_cross_cluster_search_connection(params = {})
342
+ # @param [Hash] params ({})
343
+ def accept_inbound_cross_cluster_search_connection(params = {}, options = {})
344
+ req = build_request(:accept_inbound_cross_cluster_search_connection, params)
345
+ req.send_request(options)
346
+ end
347
+
311
348
  # Attaches tags to an existing Elasticsearch domain. Tags are a set of
312
349
  # case-sensitive key value pairs. An Elasticsearch domain may have up to
313
350
  # 10 tags. See [ Tagging Amazon Elasticsearch Service Domains for more
@@ -410,6 +447,7 @@ module Aws::ElasticsearchService
410
447
  # resp.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
411
448
  # resp.service_software_options.description #=> String
412
449
  # resp.service_software_options.automated_update_date #=> Time
450
+ # resp.service_software_options.optional_deployment #=> Boolean
413
451
  #
414
452
  # @overload cancel_elasticsearch_service_software_update(params = {})
415
453
  # @param [Hash] params ({})
@@ -632,6 +670,7 @@ module Aws::ElasticsearchService
632
670
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
633
671
  # resp.domain_status.service_software_options.description #=> String
634
672
  # resp.domain_status.service_software_options.automated_update_date #=> Time
673
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
635
674
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
636
675
  # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
637
676
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -644,6 +683,64 @@ module Aws::ElasticsearchService
644
683
  req.send_request(options)
645
684
  end
646
685
 
686
+ # Creates a new cross-cluster search connection from a source domain to
687
+ # a destination domain.
688
+ #
689
+ # @option params [required, Types::DomainInformation] :source_domain_info
690
+ # Specifies the `DomainInformation` for the source Elasticsearch domain.
691
+ #
692
+ # @option params [required, Types::DomainInformation] :destination_domain_info
693
+ # Specifies the `DomainInformation` for the destination Elasticsearch
694
+ # domain.
695
+ #
696
+ # @option params [required, String] :connection_alias
697
+ # Specifies the connection alias that will be used by the customer for
698
+ # this connection.
699
+ #
700
+ # @return [Types::CreateOutboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
701
+ #
702
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#source_domain_info #source_domain_info} => Types::DomainInformation
703
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#destination_domain_info #destination_domain_info} => Types::DomainInformation
704
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#connection_alias #connection_alias} => String
705
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#connection_status #connection_status} => Types::OutboundCrossClusterSearchConnectionStatus
706
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection_id #cross_cluster_search_connection_id} => String
707
+ #
708
+ # @example Request syntax with placeholder values
709
+ #
710
+ # resp = client.create_outbound_cross_cluster_search_connection({
711
+ # source_domain_info: { # required
712
+ # owner_id: "OwnerId",
713
+ # domain_name: "DomainName", # required
714
+ # region: "Region",
715
+ # },
716
+ # destination_domain_info: { # required
717
+ # owner_id: "OwnerId",
718
+ # domain_name: "DomainName", # required
719
+ # region: "Region",
720
+ # },
721
+ # connection_alias: "ConnectionAlias", # required
722
+ # })
723
+ #
724
+ # @example Response structure
725
+ #
726
+ # resp.source_domain_info.owner_id #=> String
727
+ # resp.source_domain_info.domain_name #=> String
728
+ # resp.source_domain_info.region #=> String
729
+ # resp.destination_domain_info.owner_id #=> String
730
+ # resp.destination_domain_info.domain_name #=> String
731
+ # resp.destination_domain_info.region #=> String
732
+ # resp.connection_alias #=> String
733
+ # resp.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
734
+ # resp.connection_status.message #=> String
735
+ # resp.cross_cluster_search_connection_id #=> String
736
+ #
737
+ # @overload create_outbound_cross_cluster_search_connection(params = {})
738
+ # @param [Hash] params ({})
739
+ def create_outbound_cross_cluster_search_connection(params = {}, options = {})
740
+ req = build_request(:create_outbound_cross_cluster_search_connection, params)
741
+ req.send_request(options)
742
+ end
743
+
647
744
  # Create a package for use with Amazon ES domains.
648
745
  #
649
746
  # @option params [required, String] :package_name
@@ -764,6 +861,7 @@ module Aws::ElasticsearchService
764
861
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
765
862
  # resp.domain_status.service_software_options.description #=> String
766
863
  # resp.domain_status.service_software_options.automated_update_date #=> Time
864
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
767
865
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
768
866
  # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
769
867
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -796,6 +894,77 @@ module Aws::ElasticsearchService
796
894
  req.send_request(options)
797
895
  end
798
896
 
897
+ # Allows the destination domain owner to delete an existing inbound
898
+ # cross-cluster search connection.
899
+ #
900
+ # @option params [required, String] :cross_cluster_search_connection_id
901
+ # The id of the inbound connection that you want to permanently delete.
902
+ #
903
+ # @return [Types::DeleteInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
904
+ #
905
+ # * {Types::DeleteInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
906
+ #
907
+ # @example Request syntax with placeholder values
908
+ #
909
+ # resp = client.delete_inbound_cross_cluster_search_connection({
910
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
911
+ # })
912
+ #
913
+ # @example Response structure
914
+ #
915
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
916
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
917
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
918
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
919
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
920
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
921
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
922
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
923
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
924
+ #
925
+ # @overload delete_inbound_cross_cluster_search_connection(params = {})
926
+ # @param [Hash] params ({})
927
+ def delete_inbound_cross_cluster_search_connection(params = {}, options = {})
928
+ req = build_request(:delete_inbound_cross_cluster_search_connection, params)
929
+ req.send_request(options)
930
+ end
931
+
932
+ # Allows the source domain owner to delete an existing outbound
933
+ # cross-cluster search connection.
934
+ #
935
+ # @option params [required, String] :cross_cluster_search_connection_id
936
+ # The id of the outbound connection that you want to permanently delete.
937
+ #
938
+ # @return [Types::DeleteOutboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
939
+ #
940
+ # * {Types::DeleteOutboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::OutboundCrossClusterSearchConnection
941
+ #
942
+ # @example Request syntax with placeholder values
943
+ #
944
+ # resp = client.delete_outbound_cross_cluster_search_connection({
945
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
946
+ # })
947
+ #
948
+ # @example Response structure
949
+ #
950
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
951
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
952
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
953
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
954
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
955
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
956
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
957
+ # resp.cross_cluster_search_connection.connection_alias #=> String
958
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
959
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
960
+ #
961
+ # @overload delete_outbound_cross_cluster_search_connection(params = {})
962
+ # @param [Hash] params ({})
963
+ def delete_outbound_cross_cluster_search_connection(params = {}, options = {})
964
+ req = build_request(:delete_outbound_cross_cluster_search_connection, params)
965
+ req.send_request(options)
966
+ end
967
+
799
968
  # Delete the package.
800
969
  #
801
970
  # @option params [required, String] :package_id
@@ -902,6 +1071,7 @@ module Aws::ElasticsearchService
902
1071
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
903
1072
  # resp.domain_status.service_software_options.description #=> String
904
1073
  # resp.domain_status.service_software_options.automated_update_date #=> Time
1074
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
905
1075
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
906
1076
  # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
907
1077
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -1119,6 +1289,7 @@ module Aws::ElasticsearchService
1119
1289
  # resp.domain_status_list[0].service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
1120
1290
  # resp.domain_status_list[0].service_software_options.description #=> String
1121
1291
  # resp.domain_status_list[0].service_software_options.automated_update_date #=> Time
1292
+ # resp.domain_status_list[0].service_software_options.optional_deployment #=> Boolean
1122
1293
  # resp.domain_status_list[0].domain_endpoint_options.enforce_https #=> Boolean
1123
1294
  # resp.domain_status_list[0].domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
1124
1295
  # resp.domain_status_list[0].advanced_security_options.enabled #=> Boolean
@@ -1183,6 +1354,129 @@ module Aws::ElasticsearchService
1183
1354
  req.send_request(options)
1184
1355
  end
1185
1356
 
1357
+ # Lists all the inbound cross-cluster search connections for a
1358
+ # destination domain.
1359
+ #
1360
+ # @option params [Array<Types::Filter>] :filters
1361
+ # A list of filters used to match properties for inbound cross-cluster
1362
+ # search connection. Available `Filter` names for this operation are: *
1363
+ # cross-cluster-search-connection-id
1364
+ # * source-domain-info.domain-name
1365
+ # * source-domain-info.owner-id
1366
+ # * source-domain-info.region
1367
+ # * destination-domain-info.domain-name
1368
+ #
1369
+ # @option params [Integer] :max_results
1370
+ # Set this value to limit the number of results returned. If not
1371
+ # specified, defaults to 100.
1372
+ #
1373
+ # @option params [String] :next_token
1374
+ # NextToken is sent in case the earlier API call results contain the
1375
+ # NextToken. It is used for pagination.
1376
+ #
1377
+ # @return [Types::DescribeInboundCrossClusterSearchConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1378
+ #
1379
+ # * {Types::DescribeInboundCrossClusterSearchConnectionsResponse#cross_cluster_search_connections #cross_cluster_search_connections} => Array&lt;Types::InboundCrossClusterSearchConnection&gt;
1380
+ # * {Types::DescribeInboundCrossClusterSearchConnectionsResponse#next_token #next_token} => String
1381
+ #
1382
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1383
+ #
1384
+ # @example Request syntax with placeholder values
1385
+ #
1386
+ # resp = client.describe_inbound_cross_cluster_search_connections({
1387
+ # filters: [
1388
+ # {
1389
+ # name: "NonEmptyString",
1390
+ # values: ["NonEmptyString"],
1391
+ # },
1392
+ # ],
1393
+ # max_results: 1,
1394
+ # next_token: "NextToken",
1395
+ # })
1396
+ #
1397
+ # @example Response structure
1398
+ #
1399
+ # resp.cross_cluster_search_connections #=> Array
1400
+ # resp.cross_cluster_search_connections[0].source_domain_info.owner_id #=> String
1401
+ # resp.cross_cluster_search_connections[0].source_domain_info.domain_name #=> String
1402
+ # resp.cross_cluster_search_connections[0].source_domain_info.region #=> String
1403
+ # resp.cross_cluster_search_connections[0].destination_domain_info.owner_id #=> String
1404
+ # resp.cross_cluster_search_connections[0].destination_domain_info.domain_name #=> String
1405
+ # resp.cross_cluster_search_connections[0].destination_domain_info.region #=> String
1406
+ # resp.cross_cluster_search_connections[0].cross_cluster_search_connection_id #=> String
1407
+ # resp.cross_cluster_search_connections[0].connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
1408
+ # resp.cross_cluster_search_connections[0].connection_status.message #=> String
1409
+ # resp.next_token #=> String
1410
+ #
1411
+ # @overload describe_inbound_cross_cluster_search_connections(params = {})
1412
+ # @param [Hash] params ({})
1413
+ def describe_inbound_cross_cluster_search_connections(params = {}, options = {})
1414
+ req = build_request(:describe_inbound_cross_cluster_search_connections, params)
1415
+ req.send_request(options)
1416
+ end
1417
+
1418
+ # Lists all the outbound cross-cluster search connections for a source
1419
+ # domain.
1420
+ #
1421
+ # @option params [Array<Types::Filter>] :filters
1422
+ # A list of filters used to match properties for outbound cross-cluster
1423
+ # search connection. Available `Filter` names for this operation are: *
1424
+ # cross-cluster-search-connection-id
1425
+ # * destination-domain-info.domain-name
1426
+ # * destination-domain-info.owner-id
1427
+ # * destination-domain-info.region
1428
+ # * source-domain-info.domain-name
1429
+ #
1430
+ # @option params [Integer] :max_results
1431
+ # Set this value to limit the number of results returned. If not
1432
+ # specified, defaults to 100.
1433
+ #
1434
+ # @option params [String] :next_token
1435
+ # NextToken is sent in case the earlier API call results contain the
1436
+ # NextToken. It is used for pagination.
1437
+ #
1438
+ # @return [Types::DescribeOutboundCrossClusterSearchConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1439
+ #
1440
+ # * {Types::DescribeOutboundCrossClusterSearchConnectionsResponse#cross_cluster_search_connections #cross_cluster_search_connections} => Array&lt;Types::OutboundCrossClusterSearchConnection&gt;
1441
+ # * {Types::DescribeOutboundCrossClusterSearchConnectionsResponse#next_token #next_token} => String
1442
+ #
1443
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1444
+ #
1445
+ # @example Request syntax with placeholder values
1446
+ #
1447
+ # resp = client.describe_outbound_cross_cluster_search_connections({
1448
+ # filters: [
1449
+ # {
1450
+ # name: "NonEmptyString",
1451
+ # values: ["NonEmptyString"],
1452
+ # },
1453
+ # ],
1454
+ # max_results: 1,
1455
+ # next_token: "NextToken",
1456
+ # })
1457
+ #
1458
+ # @example Response structure
1459
+ #
1460
+ # resp.cross_cluster_search_connections #=> Array
1461
+ # resp.cross_cluster_search_connections[0].source_domain_info.owner_id #=> String
1462
+ # resp.cross_cluster_search_connections[0].source_domain_info.domain_name #=> String
1463
+ # resp.cross_cluster_search_connections[0].source_domain_info.region #=> String
1464
+ # resp.cross_cluster_search_connections[0].destination_domain_info.owner_id #=> String
1465
+ # resp.cross_cluster_search_connections[0].destination_domain_info.domain_name #=> String
1466
+ # resp.cross_cluster_search_connections[0].destination_domain_info.region #=> String
1467
+ # resp.cross_cluster_search_connections[0].cross_cluster_search_connection_id #=> String
1468
+ # resp.cross_cluster_search_connections[0].connection_alias #=> String
1469
+ # resp.cross_cluster_search_connections[0].connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
1470
+ # resp.cross_cluster_search_connections[0].connection_status.message #=> String
1471
+ # resp.next_token #=> String
1472
+ #
1473
+ # @overload describe_outbound_cross_cluster_search_connections(params = {})
1474
+ # @param [Hash] params ({})
1475
+ def describe_outbound_cross_cluster_search_connections(params = {}, options = {})
1476
+ req = build_request(:describe_outbound_cross_cluster_search_connections, params)
1477
+ req.send_request(options)
1478
+ end
1479
+
1186
1480
  # Describes all packages available to Amazon ES. Includes options for
1187
1481
  # filtering, limiting the number of results, and pagination.
1188
1482
  #
@@ -1777,6 +2071,41 @@ module Aws::ElasticsearchService
1777
2071
  req.send_request(options)
1778
2072
  end
1779
2073
 
2074
+ # Allows the destination domain owner to reject an inbound cross-cluster
2075
+ # search connection request.
2076
+ #
2077
+ # @option params [required, String] :cross_cluster_search_connection_id
2078
+ # The id of the inbound connection that you want to reject.
2079
+ #
2080
+ # @return [Types::RejectInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2081
+ #
2082
+ # * {Types::RejectInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
2083
+ #
2084
+ # @example Request syntax with placeholder values
2085
+ #
2086
+ # resp = client.reject_inbound_cross_cluster_search_connection({
2087
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
2088
+ # })
2089
+ #
2090
+ # @example Response structure
2091
+ #
2092
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
2093
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
2094
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
2095
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
2096
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
2097
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
2098
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
2099
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
2100
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
2101
+ #
2102
+ # @overload reject_inbound_cross_cluster_search_connection(params = {})
2103
+ # @param [Hash] params ({})
2104
+ def reject_inbound_cross_cluster_search_connection(params = {}, options = {})
2105
+ req = build_request(:reject_inbound_cross_cluster_search_connection, params)
2106
+ req.send_request(options)
2107
+ end
2108
+
1780
2109
  # Removes the specified set of tags from the specified Elasticsearch
1781
2110
  # domain.
1782
2111
  #
@@ -1829,6 +2158,7 @@ module Aws::ElasticsearchService
1829
2158
  # resp.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
1830
2159
  # resp.service_software_options.description #=> String
1831
2160
  # resp.service_software_options.automated_update_date #=> Time
2161
+ # resp.service_software_options.optional_deployment #=> Boolean
1832
2162
  #
1833
2163
  # @overload start_elasticsearch_service_software_update(params = {})
1834
2164
  # @param [Hash] params ({})
@@ -2135,7 +2465,7 @@ module Aws::ElasticsearchService
2135
2465
  params: params,
2136
2466
  config: config)
2137
2467
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2138
- context[:gem_version] = '1.32.0'
2468
+ context[:gem_version] = '1.37.1'
2139
2469
  Seahorse::Client::Request.new(handlers, context)
2140
2470
  end
2141
2471