aws-sdk-opensearchservice 1.21.0 → 1.22.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: d737302c9b885243c525a3b0929e11424ac67db7ccd920669af95b7a164ba41a
4
- data.tar.gz: 0d1b847388e9fd1da0dfa13ddc81ff2c743bd93148f480934d74d49cbe8d1cc0
3
+ metadata.gz: c213146d11577d939478e8975e32aa14be7c43a6434270907b8b3a1cdf2f5967
4
+ data.tar.gz: b6fa59b7279b69d2e4e8112a176c501d5f5f8cde31a77b53b27da6d09901f5bf
5
5
  SHA512:
6
- metadata.gz: 2d37b65fc9f70754ee1486d79e6ca412487b7a3ac7693270662e0ce5ff37ba7cfb10dd1ec77070ca29b227de176803a7fb4fb6640ff3f916fce28c6198101c30
7
- data.tar.gz: 875c7fcc69fe3fc64a87a67d297545a007294ecc34975bb6f145cd35cdd6d834f0d8ecb66749232040415fcf536f8aa3aee2b144b0e83490e58b9a6920978f13
6
+ metadata.gz: cdccec3fe588a7fc1da929d730ea1eb368a575143be0a0d630ba028d83a7f6014c5dba3e861b70a6eeccfdf0b7d48eee56210f948dc969f234164607c6029556
7
+ data.tar.gz: 8d1d096c16f6a1c0df02cc6222dbfcb2a23f9f51b0f79e7ec987010f60cdb4565c588c9fa700bffe5d257151c27ff365f8a186061c57a1de27dd35ec10352445
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2023-06-12)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for SkipUnavailable connection property for cross cluster search
8
+
4
9
  1.21.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -945,6 +945,9 @@ module Aws::OpenSearchService
945
945
  # @option params [String] :connection_mode
946
946
  # The connection mode.
947
947
  #
948
+ # @option params [Types::ConnectionProperties] :connection_properties
949
+ # The `ConnectionProperties` for the outbound connection.
950
+ #
948
951
  # @return [Types::CreateOutboundConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
949
952
  #
950
953
  # * {Types::CreateOutboundConnectionResponse#local_domain_info #local_domain_info} => Types::DomainInformationContainer
@@ -974,6 +977,12 @@ module Aws::OpenSearchService
974
977
  # },
975
978
  # connection_alias: "ConnectionAlias", # required
976
979
  # connection_mode: "DIRECT", # accepts DIRECT, VPC_ENDPOINT
980
+ # connection_properties: {
981
+ # endpoint: "Endpoint",
982
+ # cross_cluster_search: {
983
+ # skip_unavailable: "ENABLED", # accepts ENABLED, DISABLED
984
+ # },
985
+ # },
977
986
  # })
978
987
  #
979
988
  # @example Response structure
@@ -990,6 +999,7 @@ module Aws::OpenSearchService
990
999
  # resp.connection_id #=> String
991
1000
  # resp.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
992
1001
  # resp.connection_properties.endpoint #=> String
1002
+ # resp.connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
993
1003
  #
994
1004
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnection AWS API Documentation
995
1005
  #
@@ -1299,6 +1309,7 @@ module Aws::OpenSearchService
1299
1309
  # resp.connection.connection_status.message #=> String
1300
1310
  # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
1301
1311
  # resp.connection.connection_properties.endpoint #=> String
1312
+ # resp.connection.connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
1302
1313
  #
1303
1314
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteOutboundConnection AWS API Documentation
1304
1315
  #
@@ -2300,6 +2311,7 @@ module Aws::OpenSearchService
2300
2311
  # resp.connections[0].connection_status.message #=> String
2301
2312
  # resp.connections[0].connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
2302
2313
  # resp.connections[0].connection_properties.endpoint #=> String
2314
+ # resp.connections[0].connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
2303
2315
  # resp.next_token #=> String
2304
2316
  #
2305
2317
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeOutboundConnections AWS API Documentation
@@ -4125,7 +4137,7 @@ module Aws::OpenSearchService
4125
4137
  params: params,
4126
4138
  config: config)
4127
4139
  context[:gem_name] = 'aws-sdk-opensearchservice'
4128
- context[:gem_version] = '1.21.0'
4140
+ context[:gem_version] = '1.22.0'
4129
4141
  Seahorse::Client::Request.new(handlers, context)
4130
4142
  end
4131
4143
 
@@ -91,6 +91,7 @@ module Aws::OpenSearchService
91
91
  CreateVpcEndpointRequest = Shapes::StructureShape.new(name: 'CreateVpcEndpointRequest')
92
92
  CreateVpcEndpointResponse = Shapes::StructureShape.new(name: 'CreateVpcEndpointResponse')
93
93
  CreatedAt = Shapes::TimestampShape.new(name: 'CreatedAt')
94
+ CrossClusterSearchConnectionProperties = Shapes::StructureShape.new(name: 'CrossClusterSearchConnectionProperties')
94
95
  DeleteDomainRequest = Shapes::StructureShape.new(name: 'DeleteDomainRequest')
95
96
  DeleteDomainResponse = Shapes::StructureShape.new(name: 'DeleteDomainResponse')
96
97
  DeleteInboundConnectionRequest = Shapes::StructureShape.new(name: 'DeleteInboundConnectionRequest')
@@ -329,6 +330,7 @@ module Aws::OpenSearchService
329
330
  ScheduledBy = Shapes::StringShape.new(name: 'ScheduledBy')
330
331
  ServiceSoftwareOptions = Shapes::StructureShape.new(name: 'ServiceSoftwareOptions')
331
332
  ServiceUrl = Shapes::StringShape.new(name: 'ServiceUrl')
333
+ SkipUnavailableStatus = Shapes::StringShape.new(name: 'SkipUnavailableStatus')
332
334
  SlotList = Shapes::ListShape.new(name: 'SlotList')
333
335
  SlotNotAvailableException = Shapes::StructureShape.new(name: 'SlotNotAvailableException')
334
336
  SnapshotOptions = Shapes::StructureShape.new(name: 'SnapshotOptions')
@@ -601,6 +603,7 @@ module Aws::OpenSearchService
601
603
  ConflictException.struct_class = Types::ConflictException
602
604
 
603
605
  ConnectionProperties.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
606
+ ConnectionProperties.add_member(:cross_cluster_search, Shapes::ShapeRef.new(shape: CrossClusterSearchConnectionProperties, location_name: "CrossClusterSearch"))
604
607
  ConnectionProperties.struct_class = Types::ConnectionProperties
605
608
 
606
609
  CreateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
@@ -630,6 +633,7 @@ module Aws::OpenSearchService
630
633
  CreateOutboundConnectionRequest.add_member(:remote_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, required: true, location_name: "RemoteDomainInfo"))
631
634
  CreateOutboundConnectionRequest.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, required: true, location_name: "ConnectionAlias"))
632
635
  CreateOutboundConnectionRequest.add_member(:connection_mode, Shapes::ShapeRef.new(shape: ConnectionMode, location_name: "ConnectionMode"))
636
+ CreateOutboundConnectionRequest.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "ConnectionProperties"))
633
637
  CreateOutboundConnectionRequest.struct_class = Types::CreateOutboundConnectionRequest
634
638
 
635
639
  CreateOutboundConnectionResponse.add_member(:local_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, location_name: "LocalDomainInfo"))
@@ -658,6 +662,9 @@ module Aws::OpenSearchService
658
662
  CreateVpcEndpointResponse.add_member(:vpc_endpoint, Shapes::ShapeRef.new(shape: VpcEndpoint, required: true, location_name: "VpcEndpoint"))
659
663
  CreateVpcEndpointResponse.struct_class = Types::CreateVpcEndpointResponse
660
664
 
665
+ CrossClusterSearchConnectionProperties.add_member(:skip_unavailable, Shapes::ShapeRef.new(shape: SkipUnavailableStatus, location_name: "SkipUnavailable"))
666
+ CrossClusterSearchConnectionProperties.struct_class = Types::CrossClusterSearchConnectionProperties
667
+
661
668
  DeleteDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
662
669
  DeleteDomainRequest.struct_class = Types::DeleteDomainRequest
663
670
 
@@ -1071,13 +1071,21 @@ module Aws::OpenSearchService
1071
1071
  # The connection properties of an outbound connection.
1072
1072
  #
1073
1073
  # @!attribute [rw] endpoint
1074
- # The endpoint of the remote domain.
1074
+ # The Endpoint attribute cannot be modified.
1075
+ #
1076
+ # The endpoint of the remote domain. Applicable for VPC\_ENDPOINT
1077
+ # connection mode.
1075
1078
  # @return [String]
1076
1079
  #
1080
+ # @!attribute [rw] cross_cluster_search
1081
+ # The connection properties for cross cluster search.
1082
+ # @return [Types::CrossClusterSearchConnectionProperties]
1083
+ #
1077
1084
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ConnectionProperties AWS API Documentation
1078
1085
  #
1079
1086
  class ConnectionProperties < Struct.new(
1080
- :endpoint)
1087
+ :endpoint,
1088
+ :cross_cluster_search)
1081
1089
  SENSITIVE = []
1082
1090
  include Aws::Structure
1083
1091
  end
@@ -1274,13 +1282,18 @@ module Aws::OpenSearchService
1274
1282
  # The connection mode.
1275
1283
  # @return [String]
1276
1284
  #
1285
+ # @!attribute [rw] connection_properties
1286
+ # The `ConnectionProperties` for the outbound connection.
1287
+ # @return [Types::ConnectionProperties]
1288
+ #
1277
1289
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnectionRequest AWS API Documentation
1278
1290
  #
1279
1291
  class CreateOutboundConnectionRequest < Struct.new(
1280
1292
  :local_domain_info,
1281
1293
  :remote_domain_info,
1282
1294
  :connection_alias,
1283
- :connection_mode)
1295
+ :connection_mode,
1296
+ :connection_properties)
1284
1297
  SENSITIVE = []
1285
1298
  include Aws::Structure
1286
1299
  end
@@ -1410,6 +1423,20 @@ module Aws::OpenSearchService
1410
1423
  include Aws::Structure
1411
1424
  end
1412
1425
 
1426
+ # Cross cluster search specific connection properties.
1427
+ #
1428
+ # @!attribute [rw] skip_unavailable
1429
+ # Status of SkipUnavailable param for outbound connection.
1430
+ # @return [String]
1431
+ #
1432
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CrossClusterSearchConnectionProperties AWS API Documentation
1433
+ #
1434
+ class CrossClusterSearchConnectionProperties < Struct.new(
1435
+ :skip_unavailable)
1436
+ SENSITIVE = []
1437
+ include Aws::Structure
1438
+ end
1439
+
1413
1440
  # Container for the parameters to the `DeleteDomain` operation.
1414
1441
  #
1415
1442
  # @!attribute [rw] domain_name
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-opensearchservice/customizations'
52
52
  # @!group service
53
53
  module Aws::OpenSearchService
54
54
 
55
- GEM_VERSION = '1.21.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opensearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core