aws-sdk-opensearchservice 1.20.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: 4c5cfd56efea6e7bd6bc1a4b6b92c68a47b32e14ea8e7c5b0878d04b03e3ce41
4
- data.tar.gz: 38d0d1623aab5647650a8a3f781b9eb2a1a1c8e41a9f2230c653cb55c9fb78ad
3
+ metadata.gz: c213146d11577d939478e8975e32aa14be7c43a6434270907b8b3a1cdf2f5967
4
+ data.tar.gz: b6fa59b7279b69d2e4e8112a176c501d5f5f8cde31a77b53b27da6d09901f5bf
5
5
  SHA512:
6
- metadata.gz: 61e8e67d222b44f4b30357a1508db97ae85cfd92b9b340fb3af1069e7ee05c427d695b285069862941bbed07adf7a6441299c3ee3bffd8c51874b2245898b2cb
7
- data.tar.gz: dfaaad9c16e625905ddb5187b581f53d66a6688298ed463286d8acceac5ed73ecb7b1808775453640ffc362b5e6c1a2a64533121732c5017acdfae32495dce78
6
+ metadata.gz: cdccec3fe588a7fc1da929d730ea1eb368a575143be0a0d630ba028d83a7f6014c5dba3e861b70a6eeccfdf0b7d48eee56210f948dc969f234164607c6029556
7
+ data.tar.gz: 8d1d096c16f6a1c0df02cc6222dbfcb2a23f9f51b0f79e7ec987010f60cdb4565c588c9fa700bffe5d257151c27ff365f8a186061c57a1de27dd35ec10352445
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.21.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.20.0 (2023-05-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.22.0
@@ -275,6 +275,11 @@ module Aws::OpenSearchService
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -940,6 +945,9 @@ module Aws::OpenSearchService
940
945
  # @option params [String] :connection_mode
941
946
  # The connection mode.
942
947
  #
948
+ # @option params [Types::ConnectionProperties] :connection_properties
949
+ # The `ConnectionProperties` for the outbound connection.
950
+ #
943
951
  # @return [Types::CreateOutboundConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
944
952
  #
945
953
  # * {Types::CreateOutboundConnectionResponse#local_domain_info #local_domain_info} => Types::DomainInformationContainer
@@ -969,6 +977,12 @@ module Aws::OpenSearchService
969
977
  # },
970
978
  # connection_alias: "ConnectionAlias", # required
971
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
+ # },
972
986
  # })
973
987
  #
974
988
  # @example Response structure
@@ -985,6 +999,7 @@ module Aws::OpenSearchService
985
999
  # resp.connection_id #=> String
986
1000
  # resp.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
987
1001
  # resp.connection_properties.endpoint #=> String
1002
+ # resp.connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
988
1003
  #
989
1004
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnection AWS API Documentation
990
1005
  #
@@ -1294,6 +1309,7 @@ module Aws::OpenSearchService
1294
1309
  # resp.connection.connection_status.message #=> String
1295
1310
  # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
1296
1311
  # resp.connection.connection_properties.endpoint #=> String
1312
+ # resp.connection.connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
1297
1313
  #
1298
1314
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteOutboundConnection AWS API Documentation
1299
1315
  #
@@ -2295,6 +2311,7 @@ module Aws::OpenSearchService
2295
2311
  # resp.connections[0].connection_status.message #=> String
2296
2312
  # resp.connections[0].connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
2297
2313
  # resp.connections[0].connection_properties.endpoint #=> String
2314
+ # resp.connections[0].connection_properties.cross_cluster_search.skip_unavailable #=> String, one of "ENABLED", "DISABLED"
2298
2315
  # resp.next_token #=> String
2299
2316
  #
2300
2317
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeOutboundConnections AWS API Documentation
@@ -4120,7 +4137,7 @@ module Aws::OpenSearchService
4120
4137
  params: params,
4121
4138
  config: config)
4122
4139
  context[:gem_name] = 'aws-sdk-opensearchservice'
4123
- context[:gem_version] = '1.20.0'
4140
+ context[:gem_version] = '1.22.0'
4124
4141
  Seahorse::Client::Request.new(handlers, context)
4125
4142
  end
4126
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.20.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.20.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-11 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement