aws-sdk-opensearchservice 1.0.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +30 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +17 -1
- data/lib/aws-sdk-opensearchservice/types.rb +72 -5
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b367f578048941d46256fafa0af15b376451efe5582d1234fc74d18cb3b178e
|
4
|
+
data.tar.gz: d16cccc51af8f49afcdf0eb9a87c82b1fc82ff8c8c0c50aaf89d3556f16faaa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1aa7e38bd4b857fa49d0396bf4a8200a090299e23aa9d4be86a960cfddf959f1b2c272776be2b991c2d2ec9352dd054e489418054fe2cef011a3879305950dd
|
7
|
+
data.tar.gz: c4228390a44b18dfa47c0ba56dff6fe2d7f388beca0ee20f6b758bc91f37f29cf00e2485420f9560af1ec2c4dd6751cb54dc130ea6f0a9ff985b4be2d5e18ad4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2021-11-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds an optional parameter dry-run for the UpdateDomainConfig API to perform basic validation checks, and detect the deployment type that will be required for the configuration change, without actually applying the change.
|
8
|
+
|
9
|
+
1.3.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.2.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.1.0 (2021-09-17)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds an optional parameter in the ListDomainNames API to filter domains based on the engine type (OpenSearch/Elasticsearch).
|
23
|
+
|
4
24
|
1.0.0 (2021-09-08)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -275,6 +275,15 @@ module Aws::OpenSearchService
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -2065,14 +2074,25 @@ module Aws::OpenSearchService
|
|
2065
2074
|
|
2066
2075
|
# Returns the names of all domains owned by the current user's account.
|
2067
2076
|
#
|
2077
|
+
# @option params [String] :engine_type
|
2078
|
+
# Optional parameter to filter the output by domain engine type.
|
2079
|
+
# Acceptable values are 'Elasticsearch' and 'OpenSearch'.
|
2080
|
+
#
|
2068
2081
|
# @return [Types::ListDomainNamesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2069
2082
|
#
|
2070
2083
|
# * {Types::ListDomainNamesResponse#domain_names #domain_names} => Array<Types::DomainInfo>
|
2071
2084
|
#
|
2085
|
+
# @example Request syntax with placeholder values
|
2086
|
+
#
|
2087
|
+
# resp = client.list_domain_names({
|
2088
|
+
# engine_type: "OpenSearch", # accepts OpenSearch, Elasticsearch
|
2089
|
+
# })
|
2090
|
+
#
|
2072
2091
|
# @example Response structure
|
2073
2092
|
#
|
2074
2093
|
# resp.domain_names #=> Array
|
2075
2094
|
# resp.domain_names[0].domain_name #=> String
|
2095
|
+
# resp.domain_names[0].engine_type #=> String, one of "OpenSearch", "Elasticsearch"
|
2076
2096
|
#
|
2077
2097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDomainNames AWS API Documentation
|
2078
2098
|
#
|
@@ -2521,9 +2541,15 @@ module Aws::OpenSearchService
|
|
2521
2541
|
# @option params [Types::AutoTuneOptions] :auto_tune_options
|
2522
2542
|
# Specifies Auto-Tune options.
|
2523
2543
|
#
|
2544
|
+
# @option params [Boolean] :dry_run
|
2545
|
+
# This flag, when set to True, specifies whether the `UpdateDomain`
|
2546
|
+
# request should return the results of validation checks (DryRunResults)
|
2547
|
+
# without actually applying the change.
|
2548
|
+
#
|
2524
2549
|
# @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2525
2550
|
#
|
2526
2551
|
# * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
|
2552
|
+
# * {Types::UpdateDomainConfigResponse#dry_run_results #dry_run_results} => Types::DryRunResults
|
2527
2553
|
#
|
2528
2554
|
# @example Request syntax with placeholder values
|
2529
2555
|
#
|
@@ -2624,6 +2650,7 @@ module Aws::OpenSearchService
|
|
2624
2650
|
# },
|
2625
2651
|
# ],
|
2626
2652
|
# },
|
2653
|
+
# dry_run: false,
|
2627
2654
|
# })
|
2628
2655
|
#
|
2629
2656
|
# @example Response structure
|
@@ -2756,6 +2783,8 @@ module Aws::OpenSearchService
|
|
2756
2783
|
# resp.domain_config.auto_tune_options.status.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
2757
2784
|
# resp.domain_config.auto_tune_options.status.error_message #=> String
|
2758
2785
|
# resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
|
2786
|
+
# resp.dry_run_results.deployment_type #=> String
|
2787
|
+
# resp.dry_run_results.message #=> String
|
2759
2788
|
#
|
2760
2789
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfig AWS API Documentation
|
2761
2790
|
#
|
@@ -2905,7 +2934,7 @@ module Aws::OpenSearchService
|
|
2905
2934
|
params: params,
|
2906
2935
|
config: config)
|
2907
2936
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
2908
|
-
context[:gem_version] = '1.
|
2937
|
+
context[:gem_version] = '1.4.0'
|
2909
2938
|
Seahorse::Client::Request.new(handlers, context)
|
2910
2939
|
end
|
2911
2940
|
|
@@ -78,6 +78,7 @@ module Aws::OpenSearchService
|
|
78
78
|
DeletePackageResponse = Shapes::StructureShape.new(name: 'DeletePackageResponse')
|
79
79
|
DeploymentCloseDateTimeStamp = Shapes::TimestampShape.new(name: 'DeploymentCloseDateTimeStamp')
|
80
80
|
DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
|
81
|
+
DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
|
81
82
|
DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
|
82
83
|
DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
|
83
84
|
DescribeDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeDomainConfigRequest')
|
@@ -122,6 +123,8 @@ module Aws::OpenSearchService
|
|
122
123
|
DomainStatus = Shapes::StructureShape.new(name: 'DomainStatus')
|
123
124
|
DomainStatusList = Shapes::ListShape.new(name: 'DomainStatusList')
|
124
125
|
Double = Shapes::FloatShape.new(name: 'Double')
|
126
|
+
DryRun = Shapes::BooleanShape.new(name: 'DryRun')
|
127
|
+
DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
|
125
128
|
Duration = Shapes::StructureShape.new(name: 'Duration')
|
126
129
|
DurationValue = Shapes::IntegerShape.new(name: 'DurationValue')
|
127
130
|
EBSOptions = Shapes::StructureShape.new(name: 'EBSOptions')
|
@@ -129,6 +132,7 @@ module Aws::OpenSearchService
|
|
129
132
|
EncryptionAtRestOptions = Shapes::StructureShape.new(name: 'EncryptionAtRestOptions')
|
130
133
|
EncryptionAtRestOptionsStatus = Shapes::StructureShape.new(name: 'EncryptionAtRestOptionsStatus')
|
131
134
|
EndpointsMap = Shapes::MapShape.new(name: 'EndpointsMap')
|
135
|
+
EngineType = Shapes::StringShape.new(name: 'EngineType')
|
132
136
|
ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
|
133
137
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
134
138
|
ErrorType = Shapes::StringShape.new(name: 'ErrorType')
|
@@ -170,6 +174,7 @@ module Aws::OpenSearchService
|
|
170
174
|
LimitValueList = Shapes::ListShape.new(name: 'LimitValueList')
|
171
175
|
Limits = Shapes::StructureShape.new(name: 'Limits')
|
172
176
|
LimitsByRole = Shapes::MapShape.new(name: 'LimitsByRole')
|
177
|
+
ListDomainNamesRequest = Shapes::StructureShape.new(name: 'ListDomainNamesRequest')
|
173
178
|
ListDomainNamesResponse = Shapes::StructureShape.new(name: 'ListDomainNamesResponse')
|
174
179
|
ListDomainsForPackageRequest = Shapes::StructureShape.new(name: 'ListDomainsForPackageRequest')
|
175
180
|
ListDomainsForPackageResponse = Shapes::StructureShape.new(name: 'ListDomainsForPackageResponse')
|
@@ -189,6 +194,7 @@ module Aws::OpenSearchService
|
|
189
194
|
MasterUserOptions = Shapes::StructureShape.new(name: 'MasterUserOptions')
|
190
195
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
191
196
|
MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
|
197
|
+
Message = Shapes::StringShape.new(name: 'Message')
|
192
198
|
MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
|
193
199
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
194
200
|
NodeToNodeEncryptionOptions = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptions')
|
@@ -631,6 +637,7 @@ module Aws::OpenSearchService
|
|
631
637
|
DomainEndpointOptionsStatus.struct_class = Types::DomainEndpointOptionsStatus
|
632
638
|
|
633
639
|
DomainInfo.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
|
640
|
+
DomainInfo.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "EngineType"))
|
634
641
|
DomainInfo.struct_class = Types::DomainInfo
|
635
642
|
|
636
643
|
DomainInfoList.member = Shapes::ShapeRef.new(shape: DomainInfo)
|
@@ -681,6 +688,10 @@ module Aws::OpenSearchService
|
|
681
688
|
|
682
689
|
DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
|
683
690
|
|
691
|
+
DryRunResults.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "DeploymentType"))
|
692
|
+
DryRunResults.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
693
|
+
DryRunResults.struct_class = Types::DryRunResults
|
694
|
+
|
684
695
|
Duration.add_member(:value, Shapes::ShapeRef.new(shape: DurationValue, location_name: "Value"))
|
685
696
|
Duration.add_member(:unit, Shapes::ShapeRef.new(shape: TimeUnit, location_name: "Unit"))
|
686
697
|
Duration.struct_class = Types::Duration
|
@@ -801,6 +812,9 @@ module Aws::OpenSearchService
|
|
801
812
|
LimitsByRole.key = Shapes::ShapeRef.new(shape: InstanceRole)
|
802
813
|
LimitsByRole.value = Shapes::ShapeRef.new(shape: Limits)
|
803
814
|
|
815
|
+
ListDomainNamesRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location: "querystring", location_name: "engineType"))
|
816
|
+
ListDomainNamesRequest.struct_class = Types::ListDomainNamesRequest
|
817
|
+
|
804
818
|
ListDomainNamesResponse.add_member(:domain_names, Shapes::ShapeRef.new(shape: DomainInfoList, location_name: "DomainNames"))
|
805
819
|
ListDomainNamesResponse.struct_class = Types::ListDomainNamesResponse
|
806
820
|
|
@@ -1056,9 +1070,11 @@ module Aws::OpenSearchService
|
|
1056
1070
|
UpdateDomainConfigRequest.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptions, location_name: "NodeToNodeEncryptionOptions"))
|
1057
1071
|
UpdateDomainConfigRequest.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsInput, location_name: "AdvancedSecurityOptions"))
|
1058
1072
|
UpdateDomainConfigRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptions, location_name: "AutoTuneOptions"))
|
1073
|
+
UpdateDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
1059
1074
|
UpdateDomainConfigRequest.struct_class = Types::UpdateDomainConfigRequest
|
1060
1075
|
|
1061
1076
|
UpdateDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: DomainConfig, required: true, location_name: "DomainConfig"))
|
1077
|
+
UpdateDomainConfigResponse.add_member(:dry_run_results, Shapes::ShapeRef.new(shape: DryRunResults, location_name: "DryRunResults"))
|
1062
1078
|
UpdateDomainConfigResponse.struct_class = Types::UpdateDomainConfigResponse
|
1063
1079
|
|
1064
1080
|
UpdatePackageRequest.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, required: true, location_name: "PackageID"))
|
@@ -1515,7 +1531,7 @@ module Aws::OpenSearchService
|
|
1515
1531
|
o.name = "ListDomainNames"
|
1516
1532
|
o.http_method = "GET"
|
1517
1533
|
o.http_request_uri = "/2021-01-01/domain"
|
1518
|
-
o.input = Shapes::ShapeRef.new(shape:
|
1534
|
+
o.input = Shapes::ShapeRef.new(shape: ListDomainNamesRequest)
|
1519
1535
|
o.output = Shapes::ShapeRef.new(shape: ListDomainNamesResponse)
|
1520
1536
|
o.errors << Shapes::ShapeRef.new(shape: BaseException)
|
1521
1537
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
@@ -753,6 +753,7 @@ module Aws::OpenSearchService
|
|
753
753
|
# @return [Integer]
|
754
754
|
#
|
755
755
|
# @!attribute [rw] cold_storage_options
|
756
|
+
# Specifies the `ColdStorageOptions` config for a Domain
|
756
757
|
# @return [Types::ColdStorageOptions]
|
757
758
|
#
|
758
759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ClusterConfig AWS API Documentation
|
@@ -859,6 +860,8 @@ module Aws::OpenSearchService
|
|
859
860
|
include Aws::Structure
|
860
861
|
end
|
861
862
|
|
863
|
+
# Specifies the configuration for cold storage options such as enabled
|
864
|
+
#
|
862
865
|
# @note When making an API call, you may pass ColdStorageOptions
|
863
866
|
# data as a hash:
|
864
867
|
#
|
@@ -867,6 +870,7 @@ module Aws::OpenSearchService
|
|
867
870
|
# }
|
868
871
|
#
|
869
872
|
# @!attribute [rw] enabled
|
873
|
+
# Enable cold storage option. Accepted values true or false
|
870
874
|
# @return [Boolean]
|
871
875
|
#
|
872
876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ColdStorageOptions AWS API Documentation
|
@@ -2236,10 +2240,15 @@ module Aws::OpenSearchService
|
|
2236
2240
|
# The `DomainName`.
|
2237
2241
|
# @return [String]
|
2238
2242
|
#
|
2243
|
+
# @!attribute [rw] engine_type
|
2244
|
+
# Specifies the `EngineType` of the domain.
|
2245
|
+
# @return [String]
|
2246
|
+
#
|
2239
2247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainInfo AWS API Documentation
|
2240
2248
|
#
|
2241
2249
|
class DomainInfo < Struct.new(
|
2242
|
-
:domain_name
|
2250
|
+
:domain_name,
|
2251
|
+
:engine_type)
|
2243
2252
|
SENSITIVE = []
|
2244
2253
|
include Aws::Structure
|
2245
2254
|
end
|
@@ -2482,6 +2491,29 @@ module Aws::OpenSearchService
|
|
2482
2491
|
include Aws::Structure
|
2483
2492
|
end
|
2484
2493
|
|
2494
|
+
# @!attribute [rw] deployment_type
|
2495
|
+
# Specifies the way in which Amazon OpenSearch Service applies the
|
2496
|
+
# update. Possible responses are `Blue/Green` (the update requires a
|
2497
|
+
# blue/green deployment), `DynamicUpdate` (no blue/green required),
|
2498
|
+
# `Undetermined` (the domain is undergoing an update and can't
|
2499
|
+
# predict the deployment type; try again after the update is
|
2500
|
+
# complete), and `None` (the request doesn't include any
|
2501
|
+
# configuration changes).
|
2502
|
+
# @return [String]
|
2503
|
+
#
|
2504
|
+
# @!attribute [rw] message
|
2505
|
+
# Contains an optional message associated with the DryRunResults.
|
2506
|
+
# @return [String]
|
2507
|
+
#
|
2508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DryRunResults AWS API Documentation
|
2509
|
+
#
|
2510
|
+
class DryRunResults < Struct.new(
|
2511
|
+
:deployment_type,
|
2512
|
+
:message)
|
2513
|
+
SENSITIVE = []
|
2514
|
+
include Aws::Structure
|
2515
|
+
end
|
2516
|
+
|
2485
2517
|
# The maintenance schedule duration: duration value and duration unit.
|
2486
2518
|
# See [ Auto-Tune for Amazon OpenSearch Service ][1] for more
|
2487
2519
|
# information.
|
@@ -3090,11 +3122,33 @@ module Aws::OpenSearchService
|
|
3090
3122
|
include Aws::Structure
|
3091
3123
|
end
|
3092
3124
|
|
3125
|
+
# Container for the parameters to the `ListDomainNames` operation.
|
3126
|
+
#
|
3127
|
+
# @note When making an API call, you may pass ListDomainNamesRequest
|
3128
|
+
# data as a hash:
|
3129
|
+
#
|
3130
|
+
# {
|
3131
|
+
# engine_type: "OpenSearch", # accepts OpenSearch, Elasticsearch
|
3132
|
+
# }
|
3133
|
+
#
|
3134
|
+
# @!attribute [rw] engine_type
|
3135
|
+
# Optional parameter to filter the output by domain engine type.
|
3136
|
+
# Acceptable values are 'Elasticsearch' and 'OpenSearch'.
|
3137
|
+
# @return [String]
|
3138
|
+
#
|
3139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDomainNamesRequest AWS API Documentation
|
3140
|
+
#
|
3141
|
+
class ListDomainNamesRequest < Struct.new(
|
3142
|
+
:engine_type)
|
3143
|
+
SENSITIVE = []
|
3144
|
+
include Aws::Structure
|
3145
|
+
end
|
3146
|
+
|
3093
3147
|
# The result of a `ListDomainNames` operation. Contains the names of all
|
3094
|
-
# domains owned by this account.
|
3148
|
+
# domains owned by this account and their respective engine types.
|
3095
3149
|
#
|
3096
3150
|
# @!attribute [rw] domain_names
|
3097
|
-
# List of domain names.
|
3151
|
+
# List of domain names and respective engine types.
|
3098
3152
|
# @return [Array<Types::DomainInfo>]
|
3099
3153
|
#
|
3100
3154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDomainNamesResponse AWS API Documentation
|
@@ -4498,6 +4552,7 @@ module Aws::OpenSearchService
|
|
4498
4552
|
# },
|
4499
4553
|
# ],
|
4500
4554
|
# },
|
4555
|
+
# dry_run: false,
|
4501
4556
|
# }
|
4502
4557
|
#
|
4503
4558
|
# @!attribute [rw] domain_name
|
@@ -4580,6 +4635,12 @@ module Aws::OpenSearchService
|
|
4580
4635
|
# Specifies Auto-Tune options.
|
4581
4636
|
# @return [Types::AutoTuneOptions]
|
4582
4637
|
#
|
4638
|
+
# @!attribute [rw] dry_run
|
4639
|
+
# This flag, when set to True, specifies whether the `UpdateDomain`
|
4640
|
+
# request should return the results of validation checks
|
4641
|
+
# (DryRunResults) without actually applying the change.
|
4642
|
+
# @return [Boolean]
|
4643
|
+
#
|
4583
4644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigRequest AWS API Documentation
|
4584
4645
|
#
|
4585
4646
|
class UpdateDomainConfigRequest < Struct.new(
|
@@ -4596,7 +4657,8 @@ module Aws::OpenSearchService
|
|
4596
4657
|
:domain_endpoint_options,
|
4597
4658
|
:node_to_node_encryption_options,
|
4598
4659
|
:advanced_security_options,
|
4599
|
-
:auto_tune_options
|
4660
|
+
:auto_tune_options,
|
4661
|
+
:dry_run)
|
4600
4662
|
SENSITIVE = []
|
4601
4663
|
include Aws::Structure
|
4602
4664
|
end
|
@@ -4608,10 +4670,15 @@ module Aws::OpenSearchService
|
|
4608
4670
|
# The status of the updated domain.
|
4609
4671
|
# @return [Types::DomainConfig]
|
4610
4672
|
#
|
4673
|
+
# @!attribute [rw] dry_run_results
|
4674
|
+
# Contains result of DryRun.
|
4675
|
+
# @return [Types::DryRunResults]
|
4676
|
+
#
|
4611
4677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigResponse AWS API Documentation
|
4612
4678
|
#
|
4613
4679
|
class UpdateDomainConfigResponse < Struct.new(
|
4614
|
-
:domain_config
|
4680
|
+
:domain_config,
|
4681
|
+
:dry_run_results)
|
4615
4682
|
SENSITIVE = []
|
4616
4683
|
include Aws::Structure
|
4617
4684
|
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.
|
4
|
+
version: 1.4.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: 2021-
|
11
|
+
date: 2021-11-23 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.
|
22
|
+
version: 3.122.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.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|