aws-sdk-elasticsearchservice 1.35.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: 9cd2277d9b70813460ecaf2b5043979dc45116f422b952ecbef6ed57d2f2e125
4
- data.tar.gz: 1ffeef5345a23be3387e5667923c668db12b4be7a6847b90090661aece408e79
3
+ metadata.gz: 4178e7c4b03b1486aed9272aa4fc508ecf27ee78d462198a195c191f246dd8b2
4
+ data.tar.gz: 52cee5cfecb885f138e40d31fa455f8e50d1366d35622fecd4e465fa1f5184ed
5
5
  SHA512:
6
- metadata.gz: 0c40710d284111afdc5ba7837b4b26d87c3032c6fab99a7f277c00f07cd1d13ec9d580cde305b6aaba42afedeef3c4fb2f401540f7f73414262ae1a77e75634f
7
- data.tar.gz: e7c1789ba4e9f5f0e4045219c2063004ad41b527e956bb718522bd3a38d75332b3df8fdebe0b4f61bf1ae6ca66928b1f3d6f8ec466d6d8a8634b222d6d8723c0
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.35.0'
48
+ GEM_VERSION = '1.36.0'
49
49
 
50
50
  end
@@ -308,6 +308,41 @@ module Aws::ElasticsearchService
308
308
 
309
309
  # @!group API Operations
310
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
+
311
346
  # Attaches tags to an existing Elasticsearch domain. Tags are a set of
312
347
  # case-sensitive key value pairs. An Elasticsearch domain may have up to
313
348
  # 10 tags. See [ Tagging Amazon Elasticsearch Service Domains for more
@@ -646,6 +681,64 @@ module Aws::ElasticsearchService
646
681
  req.send_request(options)
647
682
  end
648
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
+
649
742
  # Create a package for use with Amazon ES domains.
650
743
  #
651
744
  # @option params [required, String] :package_name
@@ -799,6 +892,77 @@ module Aws::ElasticsearchService
799
892
  req.send_request(options)
800
893
  end
801
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
+
802
966
  # Delete the package.
803
967
  #
804
968
  # @option params [required, String] :package_id
@@ -1188,6 +1352,129 @@ module Aws::ElasticsearchService
1188
1352
  req.send_request(options)
1189
1353
  end
1190
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
+
1191
1478
  # Describes all packages available to Amazon ES. Includes options for
1192
1479
  # filtering, limiting the number of results, and pagination.
1193
1480
  #
@@ -1782,6 +2069,41 @@ module Aws::ElasticsearchService
1782
2069
  req.send_request(options)
1783
2070
  end
1784
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
+
1785
2107
  # Removes the specified set of tags from the specified Elasticsearch
1786
2108
  # domain.
1787
2109
  #
@@ -2141,7 +2463,7 @@ module Aws::ElasticsearchService
2141
2463
  params: params,
2142
2464
  config: config)
2143
2465
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2144
- context[:gem_version] = '1.35.0'
2466
+ context[:gem_version] = '1.36.0'
2145
2467
  Seahorse::Client::Request.new(handlers, context)
2146
2468
  end
2147
2469
 
@@ -12,6 +12,8 @@ module Aws::ElasticsearchService
12
12
  include Seahorse::Model
13
13
 
14
14
  ARN = Shapes::StringShape.new(name: 'ARN')
15
+ AcceptInboundCrossClusterSearchConnectionRequest = Shapes::StructureShape.new(name: 'AcceptInboundCrossClusterSearchConnectionRequest')
16
+ AcceptInboundCrossClusterSearchConnectionResponse = Shapes::StructureShape.new(name: 'AcceptInboundCrossClusterSearchConnectionResponse')
15
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
16
18
  AccessPoliciesStatus = Shapes::StructureShape.new(name: 'AccessPoliciesStatus')
17
19
  AddTagsRequest = Shapes::StructureShape.new(name: 'AddTagsRequest')
@@ -34,13 +36,22 @@ module Aws::ElasticsearchService
34
36
  CompatibleElasticsearchVersionsList = Shapes::ListShape.new(name: 'CompatibleElasticsearchVersionsList')
35
37
  CompatibleVersionsMap = Shapes::StructureShape.new(name: 'CompatibleVersionsMap')
36
38
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
39
+ ConnectionAlias = Shapes::StringShape.new(name: 'ConnectionAlias')
37
40
  CreateElasticsearchDomainRequest = Shapes::StructureShape.new(name: 'CreateElasticsearchDomainRequest')
38
41
  CreateElasticsearchDomainResponse = Shapes::StructureShape.new(name: 'CreateElasticsearchDomainResponse')
42
+ CreateOutboundCrossClusterSearchConnectionRequest = Shapes::StructureShape.new(name: 'CreateOutboundCrossClusterSearchConnectionRequest')
43
+ CreateOutboundCrossClusterSearchConnectionResponse = Shapes::StructureShape.new(name: 'CreateOutboundCrossClusterSearchConnectionResponse')
39
44
  CreatePackageRequest = Shapes::StructureShape.new(name: 'CreatePackageRequest')
40
45
  CreatePackageResponse = Shapes::StructureShape.new(name: 'CreatePackageResponse')
41
46
  CreatedAt = Shapes::TimestampShape.new(name: 'CreatedAt')
47
+ CrossClusterSearchConnectionId = Shapes::StringShape.new(name: 'CrossClusterSearchConnectionId')
48
+ CrossClusterSearchConnectionStatusMessage = Shapes::StringShape.new(name: 'CrossClusterSearchConnectionStatusMessage')
42
49
  DeleteElasticsearchDomainRequest = Shapes::StructureShape.new(name: 'DeleteElasticsearchDomainRequest')
43
50
  DeleteElasticsearchDomainResponse = Shapes::StructureShape.new(name: 'DeleteElasticsearchDomainResponse')
51
+ DeleteInboundCrossClusterSearchConnectionRequest = Shapes::StructureShape.new(name: 'DeleteInboundCrossClusterSearchConnectionRequest')
52
+ DeleteInboundCrossClusterSearchConnectionResponse = Shapes::StructureShape.new(name: 'DeleteInboundCrossClusterSearchConnectionResponse')
53
+ DeleteOutboundCrossClusterSearchConnectionRequest = Shapes::StructureShape.new(name: 'DeleteOutboundCrossClusterSearchConnectionRequest')
54
+ DeleteOutboundCrossClusterSearchConnectionResponse = Shapes::StructureShape.new(name: 'DeleteOutboundCrossClusterSearchConnectionResponse')
44
55
  DeletePackageRequest = Shapes::StructureShape.new(name: 'DeletePackageRequest')
45
56
  DeletePackageResponse = Shapes::StructureShape.new(name: 'DeletePackageResponse')
46
57
  DeploymentCloseDateTimeStamp = Shapes::TimestampShape.new(name: 'DeploymentCloseDateTimeStamp')
@@ -53,6 +64,10 @@ module Aws::ElasticsearchService
53
64
  DescribeElasticsearchDomainsResponse = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainsResponse')
54
65
  DescribeElasticsearchInstanceTypeLimitsRequest = Shapes::StructureShape.new(name: 'DescribeElasticsearchInstanceTypeLimitsRequest')
55
66
  DescribeElasticsearchInstanceTypeLimitsResponse = Shapes::StructureShape.new(name: 'DescribeElasticsearchInstanceTypeLimitsResponse')
67
+ DescribeInboundCrossClusterSearchConnectionsRequest = Shapes::StructureShape.new(name: 'DescribeInboundCrossClusterSearchConnectionsRequest')
68
+ DescribeInboundCrossClusterSearchConnectionsResponse = Shapes::StructureShape.new(name: 'DescribeInboundCrossClusterSearchConnectionsResponse')
69
+ DescribeOutboundCrossClusterSearchConnectionsRequest = Shapes::StructureShape.new(name: 'DescribeOutboundCrossClusterSearchConnectionsRequest')
70
+ DescribeOutboundCrossClusterSearchConnectionsResponse = Shapes::StructureShape.new(name: 'DescribeOutboundCrossClusterSearchConnectionsResponse')
56
71
  DescribePackagesFilter = Shapes::StructureShape.new(name: 'DescribePackagesFilter')
57
72
  DescribePackagesFilterList = Shapes::ListShape.new(name: 'DescribePackagesFilterList')
58
73
  DescribePackagesFilterName = Shapes::StringShape.new(name: 'DescribePackagesFilterName')
@@ -72,6 +87,7 @@ module Aws::ElasticsearchService
72
87
  DomainId = Shapes::StringShape.new(name: 'DomainId')
73
88
  DomainInfo = Shapes::StructureShape.new(name: 'DomainInfo')
74
89
  DomainInfoList = Shapes::ListShape.new(name: 'DomainInfoList')
90
+ DomainInformation = Shapes::StructureShape.new(name: 'DomainInformation')
75
91
  DomainName = Shapes::StringShape.new(name: 'DomainName')
76
92
  DomainNameList = Shapes::ListShape.new(name: 'DomainNameList')
77
93
  DomainPackageDetails = Shapes::StructureShape.new(name: 'DomainPackageDetails')
@@ -97,6 +113,8 @@ module Aws::ElasticsearchService
97
113
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
98
114
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
99
115
  ErrorType = Shapes::StringShape.new(name: 'ErrorType')
116
+ Filter = Shapes::StructureShape.new(name: 'Filter')
117
+ FilterList = Shapes::ListShape.new(name: 'FilterList')
100
118
  GUID = Shapes::StringShape.new(name: 'GUID')
101
119
  GetCompatibleElasticsearchVersionsRequest = Shapes::StructureShape.new(name: 'GetCompatibleElasticsearchVersionsRequest')
102
120
  GetCompatibleElasticsearchVersionsResponse = Shapes::StructureShape.new(name: 'GetCompatibleElasticsearchVersionsResponse')
@@ -105,6 +123,10 @@ module Aws::ElasticsearchService
105
123
  GetUpgradeStatusRequest = Shapes::StructureShape.new(name: 'GetUpgradeStatusRequest')
106
124
  GetUpgradeStatusResponse = Shapes::StructureShape.new(name: 'GetUpgradeStatusResponse')
107
125
  IdentityPoolId = Shapes::StringShape.new(name: 'IdentityPoolId')
126
+ InboundCrossClusterSearchConnection = Shapes::StructureShape.new(name: 'InboundCrossClusterSearchConnection')
127
+ InboundCrossClusterSearchConnectionStatus = Shapes::StructureShape.new(name: 'InboundCrossClusterSearchConnectionStatus')
128
+ InboundCrossClusterSearchConnectionStatusCode = Shapes::StringShape.new(name: 'InboundCrossClusterSearchConnectionStatusCode')
129
+ InboundCrossClusterSearchConnections = Shapes::ListShape.new(name: 'InboundCrossClusterSearchConnections')
108
130
  InstanceCount = Shapes::IntegerShape.new(name: 'InstanceCount')
109
131
  InstanceCountLimits = Shapes::StructureShape.new(name: 'InstanceCountLimits')
110
132
  InstanceLimits = Shapes::StructureShape.new(name: 'InstanceLimits')
@@ -112,6 +134,7 @@ module Aws::ElasticsearchService
112
134
  Integer = Shapes::IntegerShape.new(name: 'Integer')
113
135
  IntegerClass = Shapes::IntegerShape.new(name: 'IntegerClass')
114
136
  InternalException = Shapes::StructureShape.new(name: 'InternalException')
137
+ InvalidPaginationTokenException = Shapes::StructureShape.new(name: 'InvalidPaginationTokenException')
115
138
  InvalidTypeException = Shapes::StructureShape.new(name: 'InvalidTypeException')
116
139
  Issue = Shapes::StringShape.new(name: 'Issue')
117
140
  Issues = Shapes::ListShape.new(name: 'Issues')
@@ -145,8 +168,14 @@ module Aws::ElasticsearchService
145
168
  NextToken = Shapes::StringShape.new(name: 'NextToken')
146
169
  NodeToNodeEncryptionOptions = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptions')
147
170
  NodeToNodeEncryptionOptionsStatus = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptionsStatus')
171
+ NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
148
172
  OptionState = Shapes::StringShape.new(name: 'OptionState')
149
173
  OptionStatus = Shapes::StructureShape.new(name: 'OptionStatus')
174
+ OutboundCrossClusterSearchConnection = Shapes::StructureShape.new(name: 'OutboundCrossClusterSearchConnection')
175
+ OutboundCrossClusterSearchConnectionStatus = Shapes::StructureShape.new(name: 'OutboundCrossClusterSearchConnectionStatus')
176
+ OutboundCrossClusterSearchConnectionStatusCode = Shapes::StringShape.new(name: 'OutboundCrossClusterSearchConnectionStatusCode')
177
+ OutboundCrossClusterSearchConnections = Shapes::ListShape.new(name: 'OutboundCrossClusterSearchConnections')
178
+ OwnerId = Shapes::StringShape.new(name: 'OwnerId')
150
179
  PackageDescription = Shapes::StringShape.new(name: 'PackageDescription')
151
180
  PackageDetails = Shapes::StructureShape.new(name: 'PackageDetails')
152
181
  PackageDetailsList = Shapes::ListShape.new(name: 'PackageDetailsList')
@@ -162,6 +191,9 @@ module Aws::ElasticsearchService
162
191
  RecurringCharge = Shapes::StructureShape.new(name: 'RecurringCharge')
163
192
  RecurringChargeList = Shapes::ListShape.new(name: 'RecurringChargeList')
164
193
  ReferencePath = Shapes::StringShape.new(name: 'ReferencePath')
194
+ Region = Shapes::StringShape.new(name: 'Region')
195
+ RejectInboundCrossClusterSearchConnectionRequest = Shapes::StructureShape.new(name: 'RejectInboundCrossClusterSearchConnectionRequest')
196
+ RejectInboundCrossClusterSearchConnectionResponse = Shapes::StructureShape.new(name: 'RejectInboundCrossClusterSearchConnectionResponse')
165
197
  RemoveTagsRequest = Shapes::StructureShape.new(name: 'RemoveTagsRequest')
166
198
  ReservationToken = Shapes::StringShape.new(name: 'ReservationToken')
167
199
  ReservedElasticsearchInstance = Shapes::StructureShape.new(name: 'ReservedElasticsearchInstance')
@@ -213,9 +245,16 @@ module Aws::ElasticsearchService
213
245
  VPCDerivedInfoStatus = Shapes::StructureShape.new(name: 'VPCDerivedInfoStatus')
214
246
  VPCOptions = Shapes::StructureShape.new(name: 'VPCOptions')
215
247
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
248
+ ValueStringList = Shapes::ListShape.new(name: 'ValueStringList')
216
249
  VolumeType = Shapes::StringShape.new(name: 'VolumeType')
217
250
  ZoneAwarenessConfig = Shapes::StructureShape.new(name: 'ZoneAwarenessConfig')
218
251
 
252
+ AcceptInboundCrossClusterSearchConnectionRequest.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, required: true, location: "uri", location_name: "ConnectionId"))
253
+ AcceptInboundCrossClusterSearchConnectionRequest.struct_class = Types::AcceptInboundCrossClusterSearchConnectionRequest
254
+
255
+ AcceptInboundCrossClusterSearchConnectionResponse.add_member(:cross_cluster_search_connection, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnection, location_name: "CrossClusterSearchConnection"))
256
+ AcceptInboundCrossClusterSearchConnectionResponse.struct_class = Types::AcceptInboundCrossClusterSearchConnectionResponse
257
+
219
258
  AccessDeniedException.struct_class = Types::AccessDeniedException
220
259
 
221
260
  AccessPoliciesStatus.add_member(:options, Shapes::ShapeRef.new(shape: PolicyDocument, required: true, location_name: "Options"))
@@ -305,6 +344,18 @@ module Aws::ElasticsearchService
305
344
  CreateElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
306
345
  CreateElasticsearchDomainResponse.struct_class = Types::CreateElasticsearchDomainResponse
307
346
 
347
+ CreateOutboundCrossClusterSearchConnectionRequest.add_member(:source_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, required: true, location_name: "SourceDomainInfo"))
348
+ CreateOutboundCrossClusterSearchConnectionRequest.add_member(:destination_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, required: true, location_name: "DestinationDomainInfo"))
349
+ CreateOutboundCrossClusterSearchConnectionRequest.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, required: true, location_name: "ConnectionAlias"))
350
+ CreateOutboundCrossClusterSearchConnectionRequest.struct_class = Types::CreateOutboundCrossClusterSearchConnectionRequest
351
+
352
+ CreateOutboundCrossClusterSearchConnectionResponse.add_member(:source_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "SourceDomainInfo"))
353
+ CreateOutboundCrossClusterSearchConnectionResponse.add_member(:destination_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "DestinationDomainInfo"))
354
+ CreateOutboundCrossClusterSearchConnectionResponse.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, location_name: "ConnectionAlias"))
355
+ CreateOutboundCrossClusterSearchConnectionResponse.add_member(:connection_status, Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnectionStatus, location_name: "ConnectionStatus"))
356
+ CreateOutboundCrossClusterSearchConnectionResponse.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, location_name: "CrossClusterSearchConnectionId"))
357
+ CreateOutboundCrossClusterSearchConnectionResponse.struct_class = Types::CreateOutboundCrossClusterSearchConnectionResponse
358
+
308
359
  CreatePackageRequest.add_member(:package_name, Shapes::ShapeRef.new(shape: PackageName, required: true, location_name: "PackageName"))
309
360
  CreatePackageRequest.add_member(:package_type, Shapes::ShapeRef.new(shape: PackageType, required: true, location_name: "PackageType"))
310
361
  CreatePackageRequest.add_member(:package_description, Shapes::ShapeRef.new(shape: PackageDescription, location_name: "PackageDescription"))
@@ -320,6 +371,18 @@ module Aws::ElasticsearchService
320
371
  DeleteElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
321
372
  DeleteElasticsearchDomainResponse.struct_class = Types::DeleteElasticsearchDomainResponse
322
373
 
374
+ DeleteInboundCrossClusterSearchConnectionRequest.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, required: true, location: "uri", location_name: "ConnectionId"))
375
+ DeleteInboundCrossClusterSearchConnectionRequest.struct_class = Types::DeleteInboundCrossClusterSearchConnectionRequest
376
+
377
+ DeleteInboundCrossClusterSearchConnectionResponse.add_member(:cross_cluster_search_connection, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnection, location_name: "CrossClusterSearchConnection"))
378
+ DeleteInboundCrossClusterSearchConnectionResponse.struct_class = Types::DeleteInboundCrossClusterSearchConnectionResponse
379
+
380
+ DeleteOutboundCrossClusterSearchConnectionRequest.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, required: true, location: "uri", location_name: "ConnectionId"))
381
+ DeleteOutboundCrossClusterSearchConnectionRequest.struct_class = Types::DeleteOutboundCrossClusterSearchConnectionRequest
382
+
383
+ DeleteOutboundCrossClusterSearchConnectionResponse.add_member(:cross_cluster_search_connection, Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnection, location_name: "CrossClusterSearchConnection"))
384
+ DeleteOutboundCrossClusterSearchConnectionResponse.struct_class = Types::DeleteOutboundCrossClusterSearchConnectionResponse
385
+
323
386
  DeletePackageRequest.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, required: true, location: "uri", location_name: "PackageID"))
324
387
  DeletePackageRequest.struct_class = Types::DeletePackageRequest
325
388
 
@@ -352,6 +415,24 @@ module Aws::ElasticsearchService
352
415
  DescribeElasticsearchInstanceTypeLimitsResponse.add_member(:limits_by_role, Shapes::ShapeRef.new(shape: LimitsByRole, location_name: "LimitsByRole"))
353
416
  DescribeElasticsearchInstanceTypeLimitsResponse.struct_class = Types::DescribeElasticsearchInstanceTypeLimitsResponse
354
417
 
418
+ DescribeInboundCrossClusterSearchConnectionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
419
+ DescribeInboundCrossClusterSearchConnectionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
420
+ DescribeInboundCrossClusterSearchConnectionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
421
+ DescribeInboundCrossClusterSearchConnectionsRequest.struct_class = Types::DescribeInboundCrossClusterSearchConnectionsRequest
422
+
423
+ DescribeInboundCrossClusterSearchConnectionsResponse.add_member(:cross_cluster_search_connections, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnections, location_name: "CrossClusterSearchConnections"))
424
+ DescribeInboundCrossClusterSearchConnectionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
425
+ DescribeInboundCrossClusterSearchConnectionsResponse.struct_class = Types::DescribeInboundCrossClusterSearchConnectionsResponse
426
+
427
+ DescribeOutboundCrossClusterSearchConnectionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
428
+ DescribeOutboundCrossClusterSearchConnectionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
429
+ DescribeOutboundCrossClusterSearchConnectionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
430
+ DescribeOutboundCrossClusterSearchConnectionsRequest.struct_class = Types::DescribeOutboundCrossClusterSearchConnectionsRequest
431
+
432
+ DescribeOutboundCrossClusterSearchConnectionsResponse.add_member(:cross_cluster_search_connections, Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnections, location_name: "CrossClusterSearchConnections"))
433
+ DescribeOutboundCrossClusterSearchConnectionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
434
+ DescribeOutboundCrossClusterSearchConnectionsResponse.struct_class = Types::DescribeOutboundCrossClusterSearchConnectionsResponse
435
+
355
436
  DescribePackagesFilter.add_member(:name, Shapes::ShapeRef.new(shape: DescribePackagesFilterName, location_name: "Name"))
356
437
  DescribePackagesFilter.add_member(:value, Shapes::ShapeRef.new(shape: DescribePackagesFilterValues, location_name: "Value"))
357
438
  DescribePackagesFilter.struct_class = Types::DescribePackagesFilter
@@ -409,6 +490,11 @@ module Aws::ElasticsearchService
409
490
 
410
491
  DomainInfoList.member = Shapes::ShapeRef.new(shape: DomainInfo)
411
492
 
493
+ DomainInformation.add_member(:owner_id, Shapes::ShapeRef.new(shape: OwnerId, location_name: "OwnerId"))
494
+ DomainInformation.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
495
+ DomainInformation.add_member(:region, Shapes::ShapeRef.new(shape: Region, location_name: "Region"))
496
+ DomainInformation.struct_class = Types::DomainInformation
497
+
412
498
  DomainNameList.member = Shapes::ShapeRef.new(shape: DomainName)
413
499
 
414
500
  DomainPackageDetails.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, location_name: "PackageID"))
@@ -514,6 +600,12 @@ module Aws::ElasticsearchService
514
600
  ErrorDetails.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "ErrorMessage"))
515
601
  ErrorDetails.struct_class = Types::ErrorDetails
516
602
 
603
+ Filter.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Name"))
604
+ Filter.add_member(:values, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "Values"))
605
+ Filter.struct_class = Types::Filter
606
+
607
+ FilterList.member = Shapes::ShapeRef.new(shape: Filter)
608
+
517
609
  GetCompatibleElasticsearchVersionsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location: "querystring", location_name: "domainName"))
518
610
  GetCompatibleElasticsearchVersionsRequest.struct_class = Types::GetCompatibleElasticsearchVersionsRequest
519
611
 
@@ -537,6 +629,18 @@ module Aws::ElasticsearchService
537
629
  GetUpgradeStatusResponse.add_member(:upgrade_name, Shapes::ShapeRef.new(shape: UpgradeName, location_name: "UpgradeName"))
538
630
  GetUpgradeStatusResponse.struct_class = Types::GetUpgradeStatusResponse
539
631
 
632
+ InboundCrossClusterSearchConnection.add_member(:source_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "SourceDomainInfo"))
633
+ InboundCrossClusterSearchConnection.add_member(:destination_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "DestinationDomainInfo"))
634
+ InboundCrossClusterSearchConnection.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, location_name: "CrossClusterSearchConnectionId"))
635
+ InboundCrossClusterSearchConnection.add_member(:connection_status, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnectionStatus, location_name: "ConnectionStatus"))
636
+ InboundCrossClusterSearchConnection.struct_class = Types::InboundCrossClusterSearchConnection
637
+
638
+ InboundCrossClusterSearchConnectionStatus.add_member(:status_code, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnectionStatusCode, location_name: "StatusCode"))
639
+ InboundCrossClusterSearchConnectionStatus.add_member(:message, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionStatusMessage, location_name: "Message"))
640
+ InboundCrossClusterSearchConnectionStatus.struct_class = Types::InboundCrossClusterSearchConnectionStatus
641
+
642
+ InboundCrossClusterSearchConnections.member = Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnection)
643
+
540
644
  InstanceCountLimits.add_member(:minimum_instance_count, Shapes::ShapeRef.new(shape: MinimumInstanceCount, location_name: "MinimumInstanceCount"))
541
645
  InstanceCountLimits.add_member(:maximum_instance_count, Shapes::ShapeRef.new(shape: MaximumInstanceCount, location_name: "MaximumInstanceCount"))
542
646
  InstanceCountLimits.struct_class = Types::InstanceCountLimits
@@ -546,6 +650,8 @@ module Aws::ElasticsearchService
546
650
 
547
651
  InternalException.struct_class = Types::InternalException
548
652
 
653
+ InvalidPaginationTokenException.struct_class = Types::InvalidPaginationTokenException
654
+
549
655
  InvalidTypeException.struct_class = Types::InvalidTypeException
550
656
 
551
657
  Issues.member = Shapes::ShapeRef.new(shape: Issue)
@@ -637,6 +743,19 @@ module Aws::ElasticsearchService
637
743
  OptionStatus.add_member(:pending_deletion, Shapes::ShapeRef.new(shape: Boolean, location_name: "PendingDeletion"))
638
744
  OptionStatus.struct_class = Types::OptionStatus
639
745
 
746
+ OutboundCrossClusterSearchConnection.add_member(:source_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "SourceDomainInfo"))
747
+ OutboundCrossClusterSearchConnection.add_member(:destination_domain_info, Shapes::ShapeRef.new(shape: DomainInformation, location_name: "DestinationDomainInfo"))
748
+ OutboundCrossClusterSearchConnection.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, location_name: "CrossClusterSearchConnectionId"))
749
+ OutboundCrossClusterSearchConnection.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, location_name: "ConnectionAlias"))
750
+ OutboundCrossClusterSearchConnection.add_member(:connection_status, Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnectionStatus, location_name: "ConnectionStatus"))
751
+ OutboundCrossClusterSearchConnection.struct_class = Types::OutboundCrossClusterSearchConnection
752
+
753
+ OutboundCrossClusterSearchConnectionStatus.add_member(:status_code, Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnectionStatusCode, location_name: "StatusCode"))
754
+ OutboundCrossClusterSearchConnectionStatus.add_member(:message, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionStatusMessage, location_name: "Message"))
755
+ OutboundCrossClusterSearchConnectionStatus.struct_class = Types::OutboundCrossClusterSearchConnectionStatus
756
+
757
+ OutboundCrossClusterSearchConnections.member = Shapes::ShapeRef.new(shape: OutboundCrossClusterSearchConnection)
758
+
640
759
  PackageDetails.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, location_name: "PackageID"))
641
760
  PackageDetails.add_member(:package_name, Shapes::ShapeRef.new(shape: PackageName, location_name: "PackageName"))
642
761
  PackageDetails.add_member(:package_type, Shapes::ShapeRef.new(shape: PackageType, location_name: "PackageType"))
@@ -667,6 +786,12 @@ module Aws::ElasticsearchService
667
786
 
668
787
  RecurringChargeList.member = Shapes::ShapeRef.new(shape: RecurringCharge)
669
788
 
789
+ RejectInboundCrossClusterSearchConnectionRequest.add_member(:cross_cluster_search_connection_id, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionId, required: true, location: "uri", location_name: "ConnectionId"))
790
+ RejectInboundCrossClusterSearchConnectionRequest.struct_class = Types::RejectInboundCrossClusterSearchConnectionRequest
791
+
792
+ RejectInboundCrossClusterSearchConnectionResponse.add_member(:cross_cluster_search_connection, Shapes::ShapeRef.new(shape: InboundCrossClusterSearchConnection, location_name: "CrossClusterSearchConnection"))
793
+ RejectInboundCrossClusterSearchConnectionResponse.struct_class = Types::RejectInboundCrossClusterSearchConnectionResponse
794
+
670
795
  RemoveTagsRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ARN"))
671
796
  RemoveTagsRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "TagKeys"))
672
797
  RemoveTagsRequest.struct_class = Types::RemoveTagsRequest
@@ -806,6 +931,8 @@ module Aws::ElasticsearchService
806
931
 
807
932
  ValidationException.struct_class = Types::ValidationException
808
933
 
934
+ ValueStringList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
935
+
809
936
  ZoneAwarenessConfig.add_member(:availability_zone_count, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "AvailabilityZoneCount"))
810
937
  ZoneAwarenessConfig.struct_class = Types::ZoneAwarenessConfig
811
938
 
@@ -825,6 +952,17 @@ module Aws::ElasticsearchService
825
952
  "uid" => "es-2015-01-01",
826
953
  }
827
954
 
955
+ api.add_operation(:accept_inbound_cross_cluster_search_connection, Seahorse::Model::Operation.new.tap do |o|
956
+ o.name = "AcceptInboundCrossClusterSearchConnection"
957
+ o.http_method = "PUT"
958
+ o.http_request_uri = "/2015-01-01/es/ccs/inboundConnection/{ConnectionId}/accept"
959
+ o.input = Shapes::ShapeRef.new(shape: AcceptInboundCrossClusterSearchConnectionRequest)
960
+ o.output = Shapes::ShapeRef.new(shape: AcceptInboundCrossClusterSearchConnectionResponse)
961
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
962
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
963
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
964
+ end)
965
+
828
966
  api.add_operation(:add_tags, Seahorse::Model::Operation.new.tap do |o|
829
967
  o.name = "AddTags"
830
968
  o.http_method = "POST"
@@ -878,6 +1016,18 @@ module Aws::ElasticsearchService
878
1016
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
879
1017
  end)
880
1018
 
1019
+ api.add_operation(:create_outbound_cross_cluster_search_connection, Seahorse::Model::Operation.new.tap do |o|
1020
+ o.name = "CreateOutboundCrossClusterSearchConnection"
1021
+ o.http_method = "POST"
1022
+ o.http_request_uri = "/2015-01-01/es/ccs/outboundConnection"
1023
+ o.input = Shapes::ShapeRef.new(shape: CreateOutboundCrossClusterSearchConnectionRequest)
1024
+ o.output = Shapes::ShapeRef.new(shape: CreateOutboundCrossClusterSearchConnectionResponse)
1025
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1026
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1027
+ o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
1028
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1029
+ end)
1030
+
881
1031
  api.add_operation(:create_package, Seahorse::Model::Operation.new.tap do |o|
882
1032
  o.name = "CreatePackage"
883
1033
  o.http_method = "POST"
@@ -916,6 +1066,26 @@ module Aws::ElasticsearchService
916
1066
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
917
1067
  end)
918
1068
 
1069
+ api.add_operation(:delete_inbound_cross_cluster_search_connection, Seahorse::Model::Operation.new.tap do |o|
1070
+ o.name = "DeleteInboundCrossClusterSearchConnection"
1071
+ o.http_method = "DELETE"
1072
+ o.http_request_uri = "/2015-01-01/es/ccs/inboundConnection/{ConnectionId}"
1073
+ o.input = Shapes::ShapeRef.new(shape: DeleteInboundCrossClusterSearchConnectionRequest)
1074
+ o.output = Shapes::ShapeRef.new(shape: DeleteInboundCrossClusterSearchConnectionResponse)
1075
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1076
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1077
+ end)
1078
+
1079
+ api.add_operation(:delete_outbound_cross_cluster_search_connection, Seahorse::Model::Operation.new.tap do |o|
1080
+ o.name = "DeleteOutboundCrossClusterSearchConnection"
1081
+ o.http_method = "DELETE"
1082
+ o.http_request_uri = "/2015-01-01/es/ccs/outboundConnection/{ConnectionId}"
1083
+ o.input = Shapes::ShapeRef.new(shape: DeleteOutboundCrossClusterSearchConnectionRequest)
1084
+ o.output = Shapes::ShapeRef.new(shape: DeleteOutboundCrossClusterSearchConnectionResponse)
1085
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1086
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1087
+ end)
1088
+
919
1089
  api.add_operation(:delete_package, Seahorse::Model::Operation.new.tap do |o|
920
1090
  o.name = "DeletePackage"
921
1091
  o.http_method = "DELETE"
@@ -979,6 +1149,38 @@ module Aws::ElasticsearchService
979
1149
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
980
1150
  end)
981
1151
 
1152
+ api.add_operation(:describe_inbound_cross_cluster_search_connections, Seahorse::Model::Operation.new.tap do |o|
1153
+ o.name = "DescribeInboundCrossClusterSearchConnections"
1154
+ o.http_method = "POST"
1155
+ o.http_request_uri = "/2015-01-01/es/ccs/inboundConnection/search"
1156
+ o.input = Shapes::ShapeRef.new(shape: DescribeInboundCrossClusterSearchConnectionsRequest)
1157
+ o.output = Shapes::ShapeRef.new(shape: DescribeInboundCrossClusterSearchConnectionsResponse)
1158
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationTokenException)
1159
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1160
+ o[:pager] = Aws::Pager.new(
1161
+ limit_key: "max_results",
1162
+ tokens: {
1163
+ "next_token" => "next_token"
1164
+ }
1165
+ )
1166
+ end)
1167
+
1168
+ api.add_operation(:describe_outbound_cross_cluster_search_connections, Seahorse::Model::Operation.new.tap do |o|
1169
+ o.name = "DescribeOutboundCrossClusterSearchConnections"
1170
+ o.http_method = "POST"
1171
+ o.http_request_uri = "/2015-01-01/es/ccs/outboundConnection/search"
1172
+ o.input = Shapes::ShapeRef.new(shape: DescribeOutboundCrossClusterSearchConnectionsRequest)
1173
+ o.output = Shapes::ShapeRef.new(shape: DescribeOutboundCrossClusterSearchConnectionsResponse)
1174
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationTokenException)
1175
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1176
+ o[:pager] = Aws::Pager.new(
1177
+ limit_key: "max_results",
1178
+ tokens: {
1179
+ "next_token" => "next_token"
1180
+ }
1181
+ )
1182
+ end)
1183
+
982
1184
  api.add_operation(:describe_packages, Seahorse::Model::Operation.new.tap do |o|
983
1185
  o.name = "DescribePackages"
984
1186
  o.http_method = "POST"
@@ -1203,6 +1405,16 @@ module Aws::ElasticsearchService
1203
1405
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
1204
1406
  end)
1205
1407
 
1408
+ api.add_operation(:reject_inbound_cross_cluster_search_connection, Seahorse::Model::Operation.new.tap do |o|
1409
+ o.name = "RejectInboundCrossClusterSearchConnection"
1410
+ o.http_method = "PUT"
1411
+ o.http_request_uri = "/2015-01-01/es/ccs/inboundConnection/{ConnectionId}/reject"
1412
+ o.input = Shapes::ShapeRef.new(shape: RejectInboundCrossClusterSearchConnectionRequest)
1413
+ o.output = Shapes::ShapeRef.new(shape: RejectInboundCrossClusterSearchConnectionResponse)
1414
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1415
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1416
+ end)
1417
+
1206
1418
  api.add_operation(:remove_tags, Seahorse::Model::Operation.new.tap do |o|
1207
1419
  o.name = "RemoveTags"
1208
1420
  o.http_method = "POST"