aws-sdk-elasticsearchservice 1.31.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 004206072f3b830908d5d55d38b840e47493c7a0446f962d7614507d563a3ac0
4
- data.tar.gz: ce7926f710c665858ee5088fd0bcf7995fa5995ed86d55b951fda56d7ec0006b
3
+ metadata.gz: 4178e7c4b03b1486aed9272aa4fc508ecf27ee78d462198a195c191f246dd8b2
4
+ data.tar.gz: 52cee5cfecb885f138e40d31fa455f8e50d1366d35622fecd4e465fa1f5184ed
5
5
  SHA512:
6
- metadata.gz: c040b723ad1bfd362c3f66f43f0639a0349e3cf45b28643b06ed5178c2f623a35c0a4ff6868575954b4824f407a3c598ee4038863c2d0bd7d57c7f3c1f0f1f97
7
- data.tar.gz: 25360d137cefadb9c7abf14b4120a2ede632b1c13df4737c9ee648f0afb2bae4e4cc51c38e5a585f6c933166a58bacd2fb4098be076a0ea4f96b2e88e28465cd
6
+ metadata.gz: 7c849441ede8218a50510a8faf5ae72176816b6c5ea17f16ee6f14ac3768aa3afc9065d13856c8491d4111c612e31f536fc157c4ea8eb70319ec46ab2aa7750e
7
+ data.tar.gz: 3c6ee07a73a0acf8ee0e737485746cab3f96bfebdc0c20b6d71f0cc560bac9c9fadbef6441c203eb5a73ec27555ef5f4e3931b17b547ff41621d31fa89b5c695
@@ -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.31.0'
48
+ GEM_VERSION = '1.36.0'
49
49
 
50
50
  end
@@ -105,7 +105,7 @@ module Aws::ElasticsearchService
105
105
  # @option options [required, String] :region
106
106
  # The AWS region to connect to. The configured `:region` is
107
107
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
109
109
  #
110
110
  # * `Aws.config[:region]`
111
111
  # * `ENV['AWS_REGION']`
@@ -161,7 +161,7 @@ module Aws::ElasticsearchService
161
161
  # @option options [String] :endpoint
162
162
  # The client endpoint is normally constructed from the `:region`
163
163
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
165
165
  #
166
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +176,7 @@ module Aws::ElasticsearchService
176
176
  # requests fetching endpoints information. Defaults to 60 sec.
177
177
  #
178
178
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
179
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
180
  #
181
181
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
182
  # The log formatter.
@@ -269,8 +269,7 @@ module Aws::ElasticsearchService
269
269
  #
270
270
  # @option options [Integer] :http_read_timeout (60) The default
271
271
  # number of seconds to wait for response data. This value can
272
- # safely be set
273
- # per-request on the session yielded by {#session_for}.
272
+ # safely be set per-request on the session.
274
273
  #
275
274
  # @option options [Float] :http_idle_timeout (5) The number of
276
275
  # seconds a connection is allowed to sit idle before it is
@@ -282,7 +281,7 @@ module Aws::ElasticsearchService
282
281
  # request body. This option has no effect unless the request has
283
282
  # "Expect" header set to "100-continue". Defaults to `nil` which
284
283
  # disables this behaviour. This value can safely be set per
285
- # request on the session yielded by {#session_for}.
284
+ # request on the session.
286
285
  #
287
286
  # @option options [Boolean] :http_wire_trace (false) When `true`,
288
287
  # HTTP debug output will be sent to the `:logger`.
@@ -309,6 +308,41 @@ module Aws::ElasticsearchService
309
308
 
310
309
  # @!group API Operations
311
310
 
311
+ # Allows the destination domain owner to accept an inbound cross-cluster
312
+ # search connection request.
313
+ #
314
+ # @option params [required, String] :cross_cluster_search_connection_id
315
+ # The id of the inbound connection that you want to accept.
316
+ #
317
+ # @return [Types::AcceptInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
318
+ #
319
+ # * {Types::AcceptInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
320
+ #
321
+ # @example Request syntax with placeholder values
322
+ #
323
+ # resp = client.accept_inbound_cross_cluster_search_connection({
324
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
325
+ # })
326
+ #
327
+ # @example Response structure
328
+ #
329
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
330
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
331
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
332
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
333
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
334
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
335
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
336
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
337
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
338
+ #
339
+ # @overload accept_inbound_cross_cluster_search_connection(params = {})
340
+ # @param [Hash] params ({})
341
+ def accept_inbound_cross_cluster_search_connection(params = {}, options = {})
342
+ req = build_request(:accept_inbound_cross_cluster_search_connection, params)
343
+ req.send_request(options)
344
+ end
345
+
312
346
  # Attaches tags to an existing Elasticsearch domain. Tags are a set of
313
347
  # case-sensitive key value pairs. An Elasticsearch domain may have up to
314
348
  # 10 tags. See [ Tagging Amazon Elasticsearch Service Domains for more
@@ -345,6 +379,45 @@ module Aws::ElasticsearchService
345
379
  req.send_request(options)
346
380
  end
347
381
 
382
+ # Associates a package with an Amazon ES domain.
383
+ #
384
+ # @option params [required, String] :package_id
385
+ # Internal ID of the package that you want to associate with a domain.
386
+ # Use `DescribePackages` to find this value.
387
+ #
388
+ # @option params [required, String] :domain_name
389
+ # Name of the domain that you want to associate the package with.
390
+ #
391
+ # @return [Types::AssociatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
392
+ #
393
+ # * {Types::AssociatePackageResponse#domain_package_details #domain_package_details} => Types::DomainPackageDetails
394
+ #
395
+ # @example Request syntax with placeholder values
396
+ #
397
+ # resp = client.associate_package({
398
+ # package_id: "PackageID", # required
399
+ # domain_name: "DomainName", # required
400
+ # })
401
+ #
402
+ # @example Response structure
403
+ #
404
+ # resp.domain_package_details.package_id #=> String
405
+ # resp.domain_package_details.package_name #=> String
406
+ # resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY"
407
+ # resp.domain_package_details.last_updated #=> Time
408
+ # resp.domain_package_details.domain_name #=> String
409
+ # resp.domain_package_details.domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
410
+ # resp.domain_package_details.reference_path #=> String
411
+ # resp.domain_package_details.error_details.error_type #=> String
412
+ # resp.domain_package_details.error_details.error_message #=> String
413
+ #
414
+ # @overload associate_package(params = {})
415
+ # @param [Hash] params ({})
416
+ def associate_package(params = {}, options = {})
417
+ req = build_request(:associate_package, params)
418
+ req.send_request(options)
419
+ end
420
+
348
421
  # Cancels a scheduled service software update for an Amazon ES domain.
349
422
  # You can only perform this operation before the `AutomatedUpdateDate`
350
423
  # and when the `UpdateStatus` is in the `PENDING_UPDATE` state.
@@ -372,6 +445,7 @@ module Aws::ElasticsearchService
372
445
  # resp.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
373
446
  # resp.service_software_options.description #=> String
374
447
  # resp.service_software_options.automated_update_date #=> Time
448
+ # resp.service_software_options.optional_deployment #=> Boolean
375
449
  #
376
450
  # @overload cancel_elasticsearch_service_software_update(params = {})
377
451
  # @param [Hash] params ({})
@@ -594,6 +668,7 @@ module Aws::ElasticsearchService
594
668
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
595
669
  # resp.domain_status.service_software_options.description #=> String
596
670
  # resp.domain_status.service_software_options.automated_update_date #=> Time
671
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
597
672
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
598
673
  # 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"
599
674
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -606,6 +681,112 @@ module Aws::ElasticsearchService
606
681
  req.send_request(options)
607
682
  end
608
683
 
684
+ # Creates a new cross-cluster search connection from a source domain to
685
+ # a destination domain.
686
+ #
687
+ # @option params [required, Types::DomainInformation] :source_domain_info
688
+ # Specifies the `DomainInformation` for the source Elasticsearch domain.
689
+ #
690
+ # @option params [required, Types::DomainInformation] :destination_domain_info
691
+ # Specifies the `DomainInformation` for the destination Elasticsearch
692
+ # domain.
693
+ #
694
+ # @option params [required, String] :connection_alias
695
+ # Specifies the connection alias that will be used by the customer for
696
+ # this connection.
697
+ #
698
+ # @return [Types::CreateOutboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
699
+ #
700
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#source_domain_info #source_domain_info} => Types::DomainInformation
701
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#destination_domain_info #destination_domain_info} => Types::DomainInformation
702
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#connection_alias #connection_alias} => String
703
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#connection_status #connection_status} => Types::OutboundCrossClusterSearchConnectionStatus
704
+ # * {Types::CreateOutboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection_id #cross_cluster_search_connection_id} => String
705
+ #
706
+ # @example Request syntax with placeholder values
707
+ #
708
+ # resp = client.create_outbound_cross_cluster_search_connection({
709
+ # source_domain_info: { # required
710
+ # owner_id: "OwnerId",
711
+ # domain_name: "DomainName", # required
712
+ # region: "Region",
713
+ # },
714
+ # destination_domain_info: { # required
715
+ # owner_id: "OwnerId",
716
+ # domain_name: "DomainName", # required
717
+ # region: "Region",
718
+ # },
719
+ # connection_alias: "ConnectionAlias", # required
720
+ # })
721
+ #
722
+ # @example Response structure
723
+ #
724
+ # resp.source_domain_info.owner_id #=> String
725
+ # resp.source_domain_info.domain_name #=> String
726
+ # resp.source_domain_info.region #=> String
727
+ # resp.destination_domain_info.owner_id #=> String
728
+ # resp.destination_domain_info.domain_name #=> String
729
+ # resp.destination_domain_info.region #=> String
730
+ # resp.connection_alias #=> String
731
+ # resp.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
732
+ # resp.connection_status.message #=> String
733
+ # resp.cross_cluster_search_connection_id #=> String
734
+ #
735
+ # @overload create_outbound_cross_cluster_search_connection(params = {})
736
+ # @param [Hash] params ({})
737
+ def create_outbound_cross_cluster_search_connection(params = {}, options = {})
738
+ req = build_request(:create_outbound_cross_cluster_search_connection, params)
739
+ req.send_request(options)
740
+ end
741
+
742
+ # Create a package for use with Amazon ES domains.
743
+ #
744
+ # @option params [required, String] :package_name
745
+ # Unique identifier for the package.
746
+ #
747
+ # @option params [required, String] :package_type
748
+ # Type of package. Currently supports only TXT-DICTIONARY.
749
+ #
750
+ # @option params [String] :package_description
751
+ # Description of the package.
752
+ #
753
+ # @option params [required, Types::PackageSource] :package_source
754
+ # The customer S3 location `PackageSource` for importing the package.
755
+ #
756
+ # @return [Types::CreatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
757
+ #
758
+ # * {Types::CreatePackageResponse#package_details #package_details} => Types::PackageDetails
759
+ #
760
+ # @example Request syntax with placeholder values
761
+ #
762
+ # resp = client.create_package({
763
+ # package_name: "PackageName", # required
764
+ # package_type: "TXT-DICTIONARY", # required, accepts TXT-DICTIONARY
765
+ # package_description: "PackageDescription",
766
+ # package_source: { # required
767
+ # s3_bucket_name: "S3BucketName",
768
+ # s3_key: "S3Key",
769
+ # },
770
+ # })
771
+ #
772
+ # @example Response structure
773
+ #
774
+ # resp.package_details.package_id #=> String
775
+ # resp.package_details.package_name #=> String
776
+ # resp.package_details.package_type #=> String, one of "TXT-DICTIONARY"
777
+ # resp.package_details.package_description #=> String
778
+ # resp.package_details.package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
779
+ # resp.package_details.created_at #=> Time
780
+ # resp.package_details.error_details.error_type #=> String
781
+ # resp.package_details.error_details.error_message #=> String
782
+ #
783
+ # @overload create_package(params = {})
784
+ # @param [Hash] params ({})
785
+ def create_package(params = {}, options = {})
786
+ req = build_request(:create_package, params)
787
+ req.send_request(options)
788
+ end
789
+
609
790
  # Permanently deletes the specified Elasticsearch domain and all of its
610
791
  # data. Once a domain is deleted, it cannot be recovered.
611
792
  #
@@ -678,6 +859,7 @@ module Aws::ElasticsearchService
678
859
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
679
860
  # resp.domain_status.service_software_options.description #=> String
680
861
  # resp.domain_status.service_software_options.automated_update_date #=> Time
862
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
681
863
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
682
864
  # 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"
683
865
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -710,6 +892,111 @@ module Aws::ElasticsearchService
710
892
  req.send_request(options)
711
893
  end
712
894
 
895
+ # Allows the destination domain owner to delete an existing inbound
896
+ # cross-cluster search connection.
897
+ #
898
+ # @option params [required, String] :cross_cluster_search_connection_id
899
+ # The id of the inbound connection that you want to permanently delete.
900
+ #
901
+ # @return [Types::DeleteInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
902
+ #
903
+ # * {Types::DeleteInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
904
+ #
905
+ # @example Request syntax with placeholder values
906
+ #
907
+ # resp = client.delete_inbound_cross_cluster_search_connection({
908
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
909
+ # })
910
+ #
911
+ # @example Response structure
912
+ #
913
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
914
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
915
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
916
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
917
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
918
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
919
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
920
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
921
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
922
+ #
923
+ # @overload delete_inbound_cross_cluster_search_connection(params = {})
924
+ # @param [Hash] params ({})
925
+ def delete_inbound_cross_cluster_search_connection(params = {}, options = {})
926
+ req = build_request(:delete_inbound_cross_cluster_search_connection, params)
927
+ req.send_request(options)
928
+ end
929
+
930
+ # Allows the source domain owner to delete an existing outbound
931
+ # cross-cluster search connection.
932
+ #
933
+ # @option params [required, String] :cross_cluster_search_connection_id
934
+ # The id of the outbound connection that you want to permanently delete.
935
+ #
936
+ # @return [Types::DeleteOutboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
937
+ #
938
+ # * {Types::DeleteOutboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::OutboundCrossClusterSearchConnection
939
+ #
940
+ # @example Request syntax with placeholder values
941
+ #
942
+ # resp = client.delete_outbound_cross_cluster_search_connection({
943
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
944
+ # })
945
+ #
946
+ # @example Response structure
947
+ #
948
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
949
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
950
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
951
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
952
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
953
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
954
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
955
+ # resp.cross_cluster_search_connection.connection_alias #=> String
956
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
957
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
958
+ #
959
+ # @overload delete_outbound_cross_cluster_search_connection(params = {})
960
+ # @param [Hash] params ({})
961
+ def delete_outbound_cross_cluster_search_connection(params = {}, options = {})
962
+ req = build_request(:delete_outbound_cross_cluster_search_connection, params)
963
+ req.send_request(options)
964
+ end
965
+
966
+ # Delete the package.
967
+ #
968
+ # @option params [required, String] :package_id
969
+ # Internal ID of the package that you want to delete. Use
970
+ # `DescribePackages` to find this value.
971
+ #
972
+ # @return [Types::DeletePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
973
+ #
974
+ # * {Types::DeletePackageResponse#package_details #package_details} => Types::PackageDetails
975
+ #
976
+ # @example Request syntax with placeholder values
977
+ #
978
+ # resp = client.delete_package({
979
+ # package_id: "PackageID", # required
980
+ # })
981
+ #
982
+ # @example Response structure
983
+ #
984
+ # resp.package_details.package_id #=> String
985
+ # resp.package_details.package_name #=> String
986
+ # resp.package_details.package_type #=> String, one of "TXT-DICTIONARY"
987
+ # resp.package_details.package_description #=> String
988
+ # resp.package_details.package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
989
+ # resp.package_details.created_at #=> Time
990
+ # resp.package_details.error_details.error_type #=> String
991
+ # resp.package_details.error_details.error_message #=> String
992
+ #
993
+ # @overload delete_package(params = {})
994
+ # @param [Hash] params ({})
995
+ def delete_package(params = {}, options = {})
996
+ req = build_request(:delete_package, params)
997
+ req.send_request(options)
998
+ end
999
+
713
1000
  # Returns domain configuration information about the specified
714
1001
  # Elasticsearch domain, including the domain ID, domain endpoint, and
715
1002
  # domain ARN.
@@ -782,6 +1069,7 @@ module Aws::ElasticsearchService
782
1069
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
783
1070
  # resp.domain_status.service_software_options.description #=> String
784
1071
  # resp.domain_status.service_software_options.automated_update_date #=> Time
1072
+ # resp.domain_status.service_software_options.optional_deployment #=> Boolean
785
1073
  # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
786
1074
  # 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"
787
1075
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
@@ -999,6 +1287,7 @@ module Aws::ElasticsearchService
999
1287
  # resp.domain_status_list[0].service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
1000
1288
  # resp.domain_status_list[0].service_software_options.description #=> String
1001
1289
  # resp.domain_status_list[0].service_software_options.automated_update_date #=> Time
1290
+ # resp.domain_status_list[0].service_software_options.optional_deployment #=> Boolean
1002
1291
  # resp.domain_status_list[0].domain_endpoint_options.enforce_https #=> Boolean
1003
1292
  # 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"
1004
1293
  # resp.domain_status_list[0].advanced_security_options.enabled #=> Boolean
@@ -1063,6 +1352,184 @@ module Aws::ElasticsearchService
1063
1352
  req.send_request(options)
1064
1353
  end
1065
1354
 
1355
+ # Lists all the inbound cross-cluster search connections for a
1356
+ # destination domain.
1357
+ #
1358
+ # @option params [Array<Types::Filter>] :filters
1359
+ # A list of filters used to match properties for inbound cross-cluster
1360
+ # search connection. Available `Filter` names for this operation are: *
1361
+ # cross-cluster-search-connection-id
1362
+ # * source-domain-info.domain-name
1363
+ # * source-domain-info.owner-id
1364
+ # * source-domain-info.region
1365
+ # * destination-domain-info.domain-name
1366
+ #
1367
+ # @option params [Integer] :max_results
1368
+ # Set this value to limit the number of results returned. If not
1369
+ # specified, defaults to 100.
1370
+ #
1371
+ # @option params [String] :next_token
1372
+ # NextToken is sent in case the earlier API call results contain the
1373
+ # NextToken. It is used for pagination.
1374
+ #
1375
+ # @return [Types::DescribeInboundCrossClusterSearchConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1376
+ #
1377
+ # * {Types::DescribeInboundCrossClusterSearchConnectionsResponse#cross_cluster_search_connections #cross_cluster_search_connections} => Array&lt;Types::InboundCrossClusterSearchConnection&gt;
1378
+ # * {Types::DescribeInboundCrossClusterSearchConnectionsResponse#next_token #next_token} => String
1379
+ #
1380
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1381
+ #
1382
+ # @example Request syntax with placeholder values
1383
+ #
1384
+ # resp = client.describe_inbound_cross_cluster_search_connections({
1385
+ # filters: [
1386
+ # {
1387
+ # name: "NonEmptyString",
1388
+ # values: ["NonEmptyString"],
1389
+ # },
1390
+ # ],
1391
+ # max_results: 1,
1392
+ # next_token: "NextToken",
1393
+ # })
1394
+ #
1395
+ # @example Response structure
1396
+ #
1397
+ # resp.cross_cluster_search_connections #=> Array
1398
+ # resp.cross_cluster_search_connections[0].source_domain_info.owner_id #=> String
1399
+ # resp.cross_cluster_search_connections[0].source_domain_info.domain_name #=> String
1400
+ # resp.cross_cluster_search_connections[0].source_domain_info.region #=> String
1401
+ # resp.cross_cluster_search_connections[0].destination_domain_info.owner_id #=> String
1402
+ # resp.cross_cluster_search_connections[0].destination_domain_info.domain_name #=> String
1403
+ # resp.cross_cluster_search_connections[0].destination_domain_info.region #=> String
1404
+ # resp.cross_cluster_search_connections[0].cross_cluster_search_connection_id #=> String
1405
+ # resp.cross_cluster_search_connections[0].connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
1406
+ # resp.cross_cluster_search_connections[0].connection_status.message #=> String
1407
+ # resp.next_token #=> String
1408
+ #
1409
+ # @overload describe_inbound_cross_cluster_search_connections(params = {})
1410
+ # @param [Hash] params ({})
1411
+ def describe_inbound_cross_cluster_search_connections(params = {}, options = {})
1412
+ req = build_request(:describe_inbound_cross_cluster_search_connections, params)
1413
+ req.send_request(options)
1414
+ end
1415
+
1416
+ # Lists all the outbound cross-cluster search connections for a source
1417
+ # domain.
1418
+ #
1419
+ # @option params [Array<Types::Filter>] :filters
1420
+ # A list of filters used to match properties for outbound cross-cluster
1421
+ # search connection. Available `Filter` names for this operation are: *
1422
+ # cross-cluster-search-connection-id
1423
+ # * destination-domain-info.domain-name
1424
+ # * destination-domain-info.owner-id
1425
+ # * destination-domain-info.region
1426
+ # * source-domain-info.domain-name
1427
+ #
1428
+ # @option params [Integer] :max_results
1429
+ # Set this value to limit the number of results returned. If not
1430
+ # specified, defaults to 100.
1431
+ #
1432
+ # @option params [String] :next_token
1433
+ # NextToken is sent in case the earlier API call results contain the
1434
+ # NextToken. It is used for pagination.
1435
+ #
1436
+ # @return [Types::DescribeOutboundCrossClusterSearchConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1437
+ #
1438
+ # * {Types::DescribeOutboundCrossClusterSearchConnectionsResponse#cross_cluster_search_connections #cross_cluster_search_connections} => Array&lt;Types::OutboundCrossClusterSearchConnection&gt;
1439
+ # * {Types::DescribeOutboundCrossClusterSearchConnectionsResponse#next_token #next_token} => String
1440
+ #
1441
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1442
+ #
1443
+ # @example Request syntax with placeholder values
1444
+ #
1445
+ # resp = client.describe_outbound_cross_cluster_search_connections({
1446
+ # filters: [
1447
+ # {
1448
+ # name: "NonEmptyString",
1449
+ # values: ["NonEmptyString"],
1450
+ # },
1451
+ # ],
1452
+ # max_results: 1,
1453
+ # next_token: "NextToken",
1454
+ # })
1455
+ #
1456
+ # @example Response structure
1457
+ #
1458
+ # resp.cross_cluster_search_connections #=> Array
1459
+ # resp.cross_cluster_search_connections[0].source_domain_info.owner_id #=> String
1460
+ # resp.cross_cluster_search_connections[0].source_domain_info.domain_name #=> String
1461
+ # resp.cross_cluster_search_connections[0].source_domain_info.region #=> String
1462
+ # resp.cross_cluster_search_connections[0].destination_domain_info.owner_id #=> String
1463
+ # resp.cross_cluster_search_connections[0].destination_domain_info.domain_name #=> String
1464
+ # resp.cross_cluster_search_connections[0].destination_domain_info.region #=> String
1465
+ # resp.cross_cluster_search_connections[0].cross_cluster_search_connection_id #=> String
1466
+ # resp.cross_cluster_search_connections[0].connection_alias #=> String
1467
+ # resp.cross_cluster_search_connections[0].connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "VALIDATING", "VALIDATION_FAILED", "PROVISIONING", "ACTIVE", "REJECTED", "DELETING", "DELETED"
1468
+ # resp.cross_cluster_search_connections[0].connection_status.message #=> String
1469
+ # resp.next_token #=> String
1470
+ #
1471
+ # @overload describe_outbound_cross_cluster_search_connections(params = {})
1472
+ # @param [Hash] params ({})
1473
+ def describe_outbound_cross_cluster_search_connections(params = {}, options = {})
1474
+ req = build_request(:describe_outbound_cross_cluster_search_connections, params)
1475
+ req.send_request(options)
1476
+ end
1477
+
1478
+ # Describes all packages available to Amazon ES. Includes options for
1479
+ # filtering, limiting the number of results, and pagination.
1480
+ #
1481
+ # @option params [Array<Types::DescribePackagesFilter>] :filters
1482
+ # Only returns packages that match the `DescribePackagesFilterList`
1483
+ # values.
1484
+ #
1485
+ # @option params [Integer] :max_results
1486
+ # Limits results to a maximum number of packages.
1487
+ #
1488
+ # @option params [String] :next_token
1489
+ # Used for pagination. Only necessary if a previous API call includes a
1490
+ # non-null NextToken value. If provided, returns results for the next
1491
+ # page.
1492
+ #
1493
+ # @return [Types::DescribePackagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1494
+ #
1495
+ # * {Types::DescribePackagesResponse#package_details_list #package_details_list} => Array&lt;Types::PackageDetails&gt;
1496
+ # * {Types::DescribePackagesResponse#next_token #next_token} => String
1497
+ #
1498
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1499
+ #
1500
+ # @example Request syntax with placeholder values
1501
+ #
1502
+ # resp = client.describe_packages({
1503
+ # filters: [
1504
+ # {
1505
+ # name: "PackageID", # accepts PackageID, PackageName, PackageStatus
1506
+ # value: ["DescribePackagesFilterValue"],
1507
+ # },
1508
+ # ],
1509
+ # max_results: 1,
1510
+ # next_token: "NextToken",
1511
+ # })
1512
+ #
1513
+ # @example Response structure
1514
+ #
1515
+ # resp.package_details_list #=> Array
1516
+ # resp.package_details_list[0].package_id #=> String
1517
+ # resp.package_details_list[0].package_name #=> String
1518
+ # resp.package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY"
1519
+ # resp.package_details_list[0].package_description #=> String
1520
+ # resp.package_details_list[0].package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
1521
+ # resp.package_details_list[0].created_at #=> Time
1522
+ # resp.package_details_list[0].error_details.error_type #=> String
1523
+ # resp.package_details_list[0].error_details.error_message #=> String
1524
+ # resp.next_token #=> String
1525
+ #
1526
+ # @overload describe_packages(params = {})
1527
+ # @param [Hash] params ({})
1528
+ def describe_packages(params = {}, options = {})
1529
+ req = build_request(:describe_packages, params)
1530
+ req.send_request(options)
1531
+ end
1532
+
1066
1533
  # Lists available reserved Elasticsearch instance offerings.
1067
1534
  #
1068
1535
  # @option params [String] :reserved_elasticsearch_instance_offering_id
@@ -1083,6 +1550,8 @@ module Aws::ElasticsearchService
1083
1550
  # * {Types::DescribeReservedElasticsearchInstanceOfferingsResponse#next_token #next_token} => String
1084
1551
  # * {Types::DescribeReservedElasticsearchInstanceOfferingsResponse#reserved_elasticsearch_instance_offerings #reserved_elasticsearch_instance_offerings} => Array&lt;Types::ReservedElasticsearchInstanceOffering&gt;
1085
1552
  #
1553
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1554
+ #
1086
1555
  # @example Request syntax with placeholder values
1087
1556
  #
1088
1557
  # resp = client.describe_reserved_elasticsearch_instance_offerings({
@@ -1134,6 +1603,8 @@ module Aws::ElasticsearchService
1134
1603
  # * {Types::DescribeReservedElasticsearchInstancesResponse#next_token #next_token} => String
1135
1604
  # * {Types::DescribeReservedElasticsearchInstancesResponse#reserved_elasticsearch_instances #reserved_elasticsearch_instances} => Array&lt;Types::ReservedElasticsearchInstance&gt;
1136
1605
  #
1606
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1607
+ #
1137
1608
  # @example Request syntax with placeholder values
1138
1609
  #
1139
1610
  # resp = client.describe_reserved_elasticsearch_instances({
@@ -1169,6 +1640,45 @@ module Aws::ElasticsearchService
1169
1640
  req.send_request(options)
1170
1641
  end
1171
1642
 
1643
+ # Dissociates a package from the Amazon ES domain.
1644
+ #
1645
+ # @option params [required, String] :package_id
1646
+ # Internal ID of the package that you want to associate with a domain.
1647
+ # Use `DescribePackages` to find this value.
1648
+ #
1649
+ # @option params [required, String] :domain_name
1650
+ # Name of the domain that you want to associate the package with.
1651
+ #
1652
+ # @return [Types::DissociatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1653
+ #
1654
+ # * {Types::DissociatePackageResponse#domain_package_details #domain_package_details} => Types::DomainPackageDetails
1655
+ #
1656
+ # @example Request syntax with placeholder values
1657
+ #
1658
+ # resp = client.dissociate_package({
1659
+ # package_id: "PackageID", # required
1660
+ # domain_name: "DomainName", # required
1661
+ # })
1662
+ #
1663
+ # @example Response structure
1664
+ #
1665
+ # resp.domain_package_details.package_id #=> String
1666
+ # resp.domain_package_details.package_name #=> String
1667
+ # resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY"
1668
+ # resp.domain_package_details.last_updated #=> Time
1669
+ # resp.domain_package_details.domain_name #=> String
1670
+ # resp.domain_package_details.domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
1671
+ # resp.domain_package_details.reference_path #=> String
1672
+ # resp.domain_package_details.error_details.error_type #=> String
1673
+ # resp.domain_package_details.error_details.error_message #=> String
1674
+ #
1675
+ # @overload dissociate_package(params = {})
1676
+ # @param [Hash] params ({})
1677
+ def dissociate_package(params = {}, options = {})
1678
+ req = build_request(:dissociate_package, params)
1679
+ req.send_request(options)
1680
+ end
1681
+
1172
1682
  # Returns a list of upgrade compatible Elastisearch versions. You can
1173
1683
  # optionally pass a ` DomainName ` to get all upgrade compatible
1174
1684
  # Elasticsearch versions for that specific domain.
@@ -1225,6 +1735,8 @@ module Aws::ElasticsearchService
1225
1735
  # * {Types::GetUpgradeHistoryResponse#upgrade_histories #upgrade_histories} => Array&lt;Types::UpgradeHistory&gt;
1226
1736
  # * {Types::GetUpgradeHistoryResponse#next_token #next_token} => String
1227
1737
  #
1738
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1739
+ #
1228
1740
  # @example Request syntax with placeholder values
1229
1741
  #
1230
1742
  # resp = client.get_upgrade_history({
@@ -1307,6 +1819,55 @@ module Aws::ElasticsearchService
1307
1819
  req.send_request(options)
1308
1820
  end
1309
1821
 
1822
+ # Lists all Amazon ES domains associated with the package.
1823
+ #
1824
+ # @option params [required, String] :package_id
1825
+ # The package for which to list domains.
1826
+ #
1827
+ # @option params [Integer] :max_results
1828
+ # Limits results to a maximum number of domains.
1829
+ #
1830
+ # @option params [String] :next_token
1831
+ # Used for pagination. Only necessary if a previous API call includes a
1832
+ # non-null NextToken value. If provided, returns results for the next
1833
+ # page.
1834
+ #
1835
+ # @return [Types::ListDomainsForPackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1836
+ #
1837
+ # * {Types::ListDomainsForPackageResponse#domain_package_details_list #domain_package_details_list} => Array&lt;Types::DomainPackageDetails&gt;
1838
+ # * {Types::ListDomainsForPackageResponse#next_token #next_token} => String
1839
+ #
1840
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1841
+ #
1842
+ # @example Request syntax with placeholder values
1843
+ #
1844
+ # resp = client.list_domains_for_package({
1845
+ # package_id: "PackageID", # required
1846
+ # max_results: 1,
1847
+ # next_token: "NextToken",
1848
+ # })
1849
+ #
1850
+ # @example Response structure
1851
+ #
1852
+ # resp.domain_package_details_list #=> Array
1853
+ # resp.domain_package_details_list[0].package_id #=> String
1854
+ # resp.domain_package_details_list[0].package_name #=> String
1855
+ # resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY"
1856
+ # resp.domain_package_details_list[0].last_updated #=> Time
1857
+ # resp.domain_package_details_list[0].domain_name #=> String
1858
+ # resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
1859
+ # resp.domain_package_details_list[0].reference_path #=> String
1860
+ # resp.domain_package_details_list[0].error_details.error_type #=> String
1861
+ # resp.domain_package_details_list[0].error_details.error_message #=> String
1862
+ # resp.next_token #=> String
1863
+ #
1864
+ # @overload list_domains_for_package(params = {})
1865
+ # @param [Hash] params ({})
1866
+ def list_domains_for_package(params = {}, options = {})
1867
+ req = build_request(:list_domains_for_package, params)
1868
+ req.send_request(options)
1869
+ end
1870
+
1310
1871
  # List all Elasticsearch instance types that are supported for given
1311
1872
  # ElasticsearchVersion
1312
1873
  #
@@ -1332,6 +1893,8 @@ module Aws::ElasticsearchService
1332
1893
  # * {Types::ListElasticsearchInstanceTypesResponse#elasticsearch_instance_types #elasticsearch_instance_types} => Array&lt;String&gt;
1333
1894
  # * {Types::ListElasticsearchInstanceTypesResponse#next_token #next_token} => String
1334
1895
  #
1896
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1897
+ #
1335
1898
  # @example Request syntax with placeholder values
1336
1899
  #
1337
1900
  # resp = client.list_elasticsearch_instance_types({
@@ -1370,6 +1933,8 @@ module Aws::ElasticsearchService
1370
1933
  # * {Types::ListElasticsearchVersionsResponse#elasticsearch_versions #elasticsearch_versions} => Array&lt;String&gt;
1371
1934
  # * {Types::ListElasticsearchVersionsResponse#next_token #next_token} => String
1372
1935
  #
1936
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1937
+ #
1373
1938
  # @example Request syntax with placeholder values
1374
1939
  #
1375
1940
  # resp = client.list_elasticsearch_versions({
@@ -1390,6 +1955,55 @@ module Aws::ElasticsearchService
1390
1955
  req.send_request(options)
1391
1956
  end
1392
1957
 
1958
+ # Lists all packages associated with the Amazon ES domain.
1959
+ #
1960
+ # @option params [required, String] :domain_name
1961
+ # The name of the domain for which you want to list associated packages.
1962
+ #
1963
+ # @option params [Integer] :max_results
1964
+ # Limits results to a maximum number of packages.
1965
+ #
1966
+ # @option params [String] :next_token
1967
+ # Used for pagination. Only necessary if a previous API call includes a
1968
+ # non-null NextToken value. If provided, returns results for the next
1969
+ # page.
1970
+ #
1971
+ # @return [Types::ListPackagesForDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1972
+ #
1973
+ # * {Types::ListPackagesForDomainResponse#domain_package_details_list #domain_package_details_list} => Array&lt;Types::DomainPackageDetails&gt;
1974
+ # * {Types::ListPackagesForDomainResponse#next_token #next_token} => String
1975
+ #
1976
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1977
+ #
1978
+ # @example Request syntax with placeholder values
1979
+ #
1980
+ # resp = client.list_packages_for_domain({
1981
+ # domain_name: "DomainName", # required
1982
+ # max_results: 1,
1983
+ # next_token: "NextToken",
1984
+ # })
1985
+ #
1986
+ # @example Response structure
1987
+ #
1988
+ # resp.domain_package_details_list #=> Array
1989
+ # resp.domain_package_details_list[0].package_id #=> String
1990
+ # resp.domain_package_details_list[0].package_name #=> String
1991
+ # resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY"
1992
+ # resp.domain_package_details_list[0].last_updated #=> Time
1993
+ # resp.domain_package_details_list[0].domain_name #=> String
1994
+ # resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
1995
+ # resp.domain_package_details_list[0].reference_path #=> String
1996
+ # resp.domain_package_details_list[0].error_details.error_type #=> String
1997
+ # resp.domain_package_details_list[0].error_details.error_message #=> String
1998
+ # resp.next_token #=> String
1999
+ #
2000
+ # @overload list_packages_for_domain(params = {})
2001
+ # @param [Hash] params ({})
2002
+ def list_packages_for_domain(params = {}, options = {})
2003
+ req = build_request(:list_packages_for_domain, params)
2004
+ req.send_request(options)
2005
+ end
2006
+
1393
2007
  # Returns all tags for the given Elasticsearch domain.
1394
2008
  #
1395
2009
  # @option params [required, String] :arn
@@ -1455,6 +2069,41 @@ module Aws::ElasticsearchService
1455
2069
  req.send_request(options)
1456
2070
  end
1457
2071
 
2072
+ # Allows the destination domain owner to reject an inbound cross-cluster
2073
+ # search connection request.
2074
+ #
2075
+ # @option params [required, String] :cross_cluster_search_connection_id
2076
+ # The id of the inbound connection that you want to reject.
2077
+ #
2078
+ # @return [Types::RejectInboundCrossClusterSearchConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2079
+ #
2080
+ # * {Types::RejectInboundCrossClusterSearchConnectionResponse#cross_cluster_search_connection #cross_cluster_search_connection} => Types::InboundCrossClusterSearchConnection
2081
+ #
2082
+ # @example Request syntax with placeholder values
2083
+ #
2084
+ # resp = client.reject_inbound_cross_cluster_search_connection({
2085
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
2086
+ # })
2087
+ #
2088
+ # @example Response structure
2089
+ #
2090
+ # resp.cross_cluster_search_connection.source_domain_info.owner_id #=> String
2091
+ # resp.cross_cluster_search_connection.source_domain_info.domain_name #=> String
2092
+ # resp.cross_cluster_search_connection.source_domain_info.region #=> String
2093
+ # resp.cross_cluster_search_connection.destination_domain_info.owner_id #=> String
2094
+ # resp.cross_cluster_search_connection.destination_domain_info.domain_name #=> String
2095
+ # resp.cross_cluster_search_connection.destination_domain_info.region #=> String
2096
+ # resp.cross_cluster_search_connection.cross_cluster_search_connection_id #=> String
2097
+ # resp.cross_cluster_search_connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "REJECTING", "REJECTED", "DELETING", "DELETED"
2098
+ # resp.cross_cluster_search_connection.connection_status.message #=> String
2099
+ #
2100
+ # @overload reject_inbound_cross_cluster_search_connection(params = {})
2101
+ # @param [Hash] params ({})
2102
+ def reject_inbound_cross_cluster_search_connection(params = {}, options = {})
2103
+ req = build_request(:reject_inbound_cross_cluster_search_connection, params)
2104
+ req.send_request(options)
2105
+ end
2106
+
1458
2107
  # Removes the specified set of tags from the specified Elasticsearch
1459
2108
  # domain.
1460
2109
  #
@@ -1507,6 +2156,7 @@ module Aws::ElasticsearchService
1507
2156
  # resp.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
1508
2157
  # resp.service_software_options.description #=> String
1509
2158
  # resp.service_software_options.automated_update_date #=> Time
2159
+ # resp.service_software_options.optional_deployment #=> Boolean
1510
2160
  #
1511
2161
  # @overload start_elasticsearch_service_software_update(params = {})
1512
2162
  # @param [Hash] params ({})
@@ -1813,7 +2463,7 @@ module Aws::ElasticsearchService
1813
2463
  params: params,
1814
2464
  config: config)
1815
2465
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
1816
- context[:gem_version] = '1.31.0'
2466
+ context[:gem_version] = '1.36.0'
1817
2467
  Seahorse::Client::Request.new(handlers, context)
1818
2468
  end
1819
2469