aws-sdk-opensearchservice 1.4.0 → 1.8.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: 1b367f578048941d46256fafa0af15b376451efe5582d1234fc74d18cb3b178e
4
- data.tar.gz: d16cccc51af8f49afcdf0eb9a87c82b1fc82ff8c8c0c50aaf89d3556f16faaa9
3
+ metadata.gz: 1e196e03c6ed26e508715203c76faeb4529b8c540f1ce35714f99e44d246faee
4
+ data.tar.gz: 2957fca98364204f96c8893eb43c3c654df4a5bcb22d4944071c3fd57758c99a
5
5
  SHA512:
6
- metadata.gz: b1aa7e38bd4b857fa49d0396bf4a8200a090299e23aa9d4be86a960cfddf959f1b2c272776be2b991c2d2ec9352dd054e489418054fe2cef011a3879305950dd
7
- data.tar.gz: c4228390a44b18dfa47c0ba56dff6fe2d7f388beca0ee20f6b758bc91f37f29cf00e2485420f9560af1ec2c4dd6751cb54dc130ea6f0a9ff985b4be2d5e18ad4
6
+ metadata.gz: 1bf2b36ca7cfa696aad9675c946ec6b309f29f5904fdc421cfa15c07caaf155e033e842b279b011dbb4db2f68b2c7bddf8f74bc25eb2086eb2f9412dae84b2f5
7
+ data.tar.gz: c59bf0d8ac5fafef6328069166bbd8022540e113e62d18261c0a048a8fde161e2a23f04578d5a0be55c2d09a68e470fcf7e027b4799431cc451e0736e7c4aeaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2022-01-27)
5
+ ------------------
6
+
7
+ * Feature - Allows customers to get progress updates for blue/green deployments
8
+
9
+ 1.7.0 (2022-01-06)
10
+ ------------------
11
+
12
+ * Feature - Amazon OpenSearch Service adds support for Fine Grained Access Control for existing domains running Elasticsearch version 6.7 and above
13
+
14
+ 1.6.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.5.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.4.0 (2021-11-23)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.8.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::OpenSearchService
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::OpenSearchService
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::OpenSearchService
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::OpenSearchService
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::OpenSearchService
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -671,6 +682,7 @@ module Aws::OpenSearchService
671
682
  # roles_key: "String",
672
683
  # session_timeout_minutes: 1,
673
684
  # },
685
+ # anonymous_auth_enabled: false,
674
686
  # },
675
687
  # tag_list: [
676
688
  # {
@@ -763,8 +775,12 @@ module Aws::OpenSearchService
763
775
  # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
764
776
  # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
765
777
  # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
778
+ # resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
779
+ # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
766
780
  # resp.domain_status.auto_tune_options.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"
767
781
  # resp.domain_status.auto_tune_options.error_message #=> String
782
+ # resp.domain_status.change_progress_details.change_id #=> String
783
+ # resp.domain_status.change_progress_details.message #=> String
768
784
  #
769
785
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
770
786
  #
@@ -976,8 +992,12 @@ module Aws::OpenSearchService
976
992
  # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
977
993
  # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
978
994
  # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
995
+ # resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
996
+ # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
979
997
  # resp.domain_status.auto_tune_options.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"
980
998
  # resp.domain_status.auto_tune_options.error_message #=> String
999
+ # resp.domain_status.change_progress_details.change_id #=> String
1000
+ # resp.domain_status.change_progress_details.message #=> String
981
1001
  #
982
1002
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
983
1003
  #
@@ -1187,8 +1207,12 @@ module Aws::OpenSearchService
1187
1207
  # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
1188
1208
  # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
1189
1209
  # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
1210
+ # resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
1211
+ # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
1190
1212
  # resp.domain_status.auto_tune_options.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"
1191
1213
  # resp.domain_status.auto_tune_options.error_message #=> String
1214
+ # resp.domain_status.change_progress_details.change_id #=> String
1215
+ # resp.domain_status.change_progress_details.message #=> String
1192
1216
  #
1193
1217
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
1194
1218
  #
@@ -1247,6 +1271,53 @@ module Aws::OpenSearchService
1247
1271
  req.send_request(options)
1248
1272
  end
1249
1273
 
1274
+ # Returns information about the current blue/green deployment happening
1275
+ # on a domain, including a change ID, status, and progress stages.
1276
+ #
1277
+ # @option params [required, String] :domain_name
1278
+ # The domain you want to get the progress information about.
1279
+ #
1280
+ # @option params [String] :change_id
1281
+ # The specific change ID for which you want to get progress information.
1282
+ # This is an optional parameter. If omitted, the service returns
1283
+ # information about the most recent configuration change.
1284
+ #
1285
+ # @return [Types::DescribeDomainChangeProgressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1286
+ #
1287
+ # * {Types::DescribeDomainChangeProgressResponse#change_progress_status #change_progress_status} => Types::ChangeProgressStatusDetails
1288
+ #
1289
+ # @example Request syntax with placeholder values
1290
+ #
1291
+ # resp = client.describe_domain_change_progress({
1292
+ # domain_name: "DomainName", # required
1293
+ # change_id: "GUID",
1294
+ # })
1295
+ #
1296
+ # @example Response structure
1297
+ #
1298
+ # resp.change_progress_status.change_id #=> String
1299
+ # resp.change_progress_status.start_time #=> Time
1300
+ # resp.change_progress_status.status #=> String, one of "PENDING", "PROCESSING", "COMPLETED", "FAILED"
1301
+ # resp.change_progress_status.pending_properties #=> Array
1302
+ # resp.change_progress_status.pending_properties[0] #=> String
1303
+ # resp.change_progress_status.completed_properties #=> Array
1304
+ # resp.change_progress_status.completed_properties[0] #=> String
1305
+ # resp.change_progress_status.total_number_of_stages #=> Integer
1306
+ # resp.change_progress_status.change_progress_stages #=> Array
1307
+ # resp.change_progress_status.change_progress_stages[0].name #=> String
1308
+ # resp.change_progress_status.change_progress_stages[0].status #=> String
1309
+ # resp.change_progress_status.change_progress_stages[0].description #=> String
1310
+ # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1311
+ #
1312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgress AWS API Documentation
1313
+ #
1314
+ # @overload describe_domain_change_progress(params = {})
1315
+ # @param [Hash] params ({})
1316
+ def describe_domain_change_progress(params = {}, options = {})
1317
+ req = build_request(:describe_domain_change_progress, params)
1318
+ req.send_request(options)
1319
+ end
1320
+
1250
1321
  # Provides cluster configuration information about the specified domain,
1251
1322
  # such as the state, creation date, update version, and update date for
1252
1323
  # cluster options.
@@ -1376,6 +1447,8 @@ module Aws::OpenSearchService
1376
1447
  # resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
1377
1448
  # resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
1378
1449
  # resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
1450
+ # resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
1451
+ # resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
1379
1452
  # resp.domain_config.advanced_security_options.status.creation_date #=> Time
1380
1453
  # resp.domain_config.advanced_security_options.status.update_date #=> Time
1381
1454
  # resp.domain_config.advanced_security_options.status.update_version #=> Integer
@@ -1394,6 +1467,8 @@ module Aws::OpenSearchService
1394
1467
  # 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"
1395
1468
  # resp.domain_config.auto_tune_options.status.error_message #=> String
1396
1469
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1470
+ # resp.domain_config.change_progress_details.change_id #=> String
1471
+ # resp.domain_config.change_progress_details.message #=> String
1397
1472
  #
1398
1473
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
1399
1474
  #
@@ -1491,8 +1566,12 @@ module Aws::OpenSearchService
1491
1566
  # resp.domain_status_list[0].advanced_security_options.saml_options.subject_key #=> String
1492
1567
  # resp.domain_status_list[0].advanced_security_options.saml_options.roles_key #=> String
1493
1568
  # resp.domain_status_list[0].advanced_security_options.saml_options.session_timeout_minutes #=> Integer
1569
+ # resp.domain_status_list[0].advanced_security_options.anonymous_auth_disable_date #=> Time
1570
+ # resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
1494
1571
  # resp.domain_status_list[0].auto_tune_options.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"
1495
1572
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1573
+ # resp.domain_status_list[0].change_progress_details.change_id #=> String
1574
+ # resp.domain_status_list[0].change_progress_details.message #=> String
1496
1575
  #
1497
1576
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
1498
1577
  #
@@ -2635,6 +2714,7 @@ module Aws::OpenSearchService
2635
2714
  # roles_key: "String",
2636
2715
  # session_timeout_minutes: 1,
2637
2716
  # },
2717
+ # anonymous_auth_enabled: false,
2638
2718
  # },
2639
2719
  # auto_tune_options: {
2640
2720
  # desired_state: "ENABLED", # accepts ENABLED, DISABLED
@@ -2765,6 +2845,8 @@ module Aws::OpenSearchService
2765
2845
  # resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
2766
2846
  # resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
2767
2847
  # resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
2848
+ # resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
2849
+ # resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
2768
2850
  # resp.domain_config.advanced_security_options.status.creation_date #=> Time
2769
2851
  # resp.domain_config.advanced_security_options.status.update_date #=> Time
2770
2852
  # resp.domain_config.advanced_security_options.status.update_version #=> Integer
@@ -2783,6 +2865,8 @@ module Aws::OpenSearchService
2783
2865
  # 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"
2784
2866
  # resp.domain_config.auto_tune_options.status.error_message #=> String
2785
2867
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
2868
+ # resp.domain_config.change_progress_details.change_id #=> String
2869
+ # resp.domain_config.change_progress_details.message #=> String
2786
2870
  # resp.dry_run_results.deployment_type #=> String
2787
2871
  # resp.dry_run_results.message #=> String
2788
2872
  #
@@ -2891,6 +2975,7 @@ module Aws::OpenSearchService
2891
2975
  # * {Types::UpgradeDomainResponse#target_version #target_version} => String
2892
2976
  # * {Types::UpgradeDomainResponse#perform_check_only #perform_check_only} => Boolean
2893
2977
  # * {Types::UpgradeDomainResponse#advanced_options #advanced_options} => Hash<String,String>
2978
+ # * {Types::UpgradeDomainResponse#change_progress_details #change_progress_details} => Types::ChangeProgressDetails
2894
2979
  #
2895
2980
  # @example Request syntax with placeholder values
2896
2981
  #
@@ -2911,6 +2996,8 @@ module Aws::OpenSearchService
2911
2996
  # resp.perform_check_only #=> Boolean
2912
2997
  # resp.advanced_options #=> Hash
2913
2998
  # resp.advanced_options["String"] #=> String
2999
+ # resp.change_progress_details.change_id #=> String
3000
+ # resp.change_progress_details.message #=> String
2914
3001
  #
2915
3002
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpgradeDomain AWS API Documentation
2916
3003
  #
@@ -2934,7 +3021,7 @@ module Aws::OpenSearchService
2934
3021
  params: params,
2935
3022
  config: config)
2936
3023
  context[:gem_name] = 'aws-sdk-opensearchservice'
2937
- context[:gem_version] = '1.4.0'
3024
+ context[:gem_version] = '1.8.0'
2938
3025
  Seahorse::Client::Request.new(handlers, context)
2939
3026
  end
2940
3027
 
@@ -48,6 +48,12 @@ module Aws::OpenSearchService
48
48
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
49
49
  CancelServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateRequest')
50
50
  CancelServiceSoftwareUpdateResponse = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateResponse')
51
+ ChangeProgressDetails = Shapes::StructureShape.new(name: 'ChangeProgressDetails')
52
+ ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
53
+ ChangeProgressStageList = Shapes::ListShape.new(name: 'ChangeProgressStageList')
54
+ ChangeProgressStageName = Shapes::StringShape.new(name: 'ChangeProgressStageName')
55
+ ChangeProgressStageStatus = Shapes::StringShape.new(name: 'ChangeProgressStageStatus')
56
+ ChangeProgressStatusDetails = Shapes::StructureShape.new(name: 'ChangeProgressStatusDetails')
51
57
  CloudWatchLogsLogGroupArn = Shapes::StringShape.new(name: 'CloudWatchLogsLogGroupArn')
52
58
  ClusterConfig = Shapes::StructureShape.new(name: 'ClusterConfig')
53
59
  ClusterConfigStatus = Shapes::StructureShape.new(name: 'ClusterConfigStatus')
@@ -81,6 +87,8 @@ module Aws::OpenSearchService
81
87
  DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
82
88
  DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
83
89
  DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
90
+ DescribeDomainChangeProgressRequest = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressRequest')
91
+ DescribeDomainChangeProgressResponse = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressResponse')
84
92
  DescribeDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeDomainConfigRequest')
85
93
  DescribeDomainConfigResponse = Shapes::StructureShape.new(name: 'DescribeDomainConfigResponse')
86
94
  DescribeDomainRequest = Shapes::StructureShape.new(name: 'DescribeDomainRequest')
@@ -104,6 +112,8 @@ module Aws::OpenSearchService
104
112
  DescribeReservedInstanceOfferingsResponse = Shapes::StructureShape.new(name: 'DescribeReservedInstanceOfferingsResponse')
105
113
  DescribeReservedInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedInstancesRequest')
106
114
  DescribeReservedInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReservedInstancesResponse')
115
+ Description = Shapes::StringShape.new(name: 'Description')
116
+ DisableTimestamp = Shapes::TimestampShape.new(name: 'DisableTimestamp')
107
117
  DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
108
118
  DissociatePackageRequest = Shapes::StructureShape.new(name: 'DissociatePackageRequest')
109
119
  DissociatePackageResponse = Shapes::StructureShape.new(name: 'DissociatePackageResponse')
@@ -208,6 +218,7 @@ module Aws::OpenSearchService
208
218
  OutboundConnectionStatus = Shapes::StructureShape.new(name: 'OutboundConnectionStatus')
209
219
  OutboundConnectionStatusCode = Shapes::StringShape.new(name: 'OutboundConnectionStatusCode')
210
220
  OutboundConnections = Shapes::ListShape.new(name: 'OutboundConnections')
221
+ OverallChangeStatus = Shapes::StringShape.new(name: 'OverallChangeStatus')
211
222
  OwnerId = Shapes::StringShape.new(name: 'OwnerId')
212
223
  PackageDescription = Shapes::StringShape.new(name: 'PackageDescription')
213
224
  PackageDetails = Shapes::StructureShape.new(name: 'PackageDetails')
@@ -274,6 +285,7 @@ module Aws::OpenSearchService
274
285
  TagList = Shapes::ListShape.new(name: 'TagList')
275
286
  TagValue = Shapes::StringShape.new(name: 'TagValue')
276
287
  TimeUnit = Shapes::StringShape.new(name: 'TimeUnit')
288
+ TotalNumberOfStages = Shapes::IntegerShape.new(name: 'TotalNumberOfStages')
277
289
  UIntValue = Shapes::IntegerShape.new(name: 'UIntValue')
278
290
  UpdateDomainConfigRequest = Shapes::StructureShape.new(name: 'UpdateDomainConfigRequest')
279
291
  UpdateDomainConfigResponse = Shapes::StructureShape.new(name: 'UpdateDomainConfigResponse')
@@ -339,12 +351,15 @@ module Aws::OpenSearchService
339
351
  AdvancedSecurityOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
340
352
  AdvancedSecurityOptions.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
341
353
  AdvancedSecurityOptions.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsOutput, location_name: "SAMLOptions"))
354
+ AdvancedSecurityOptions.add_member(:anonymous_auth_disable_date, Shapes::ShapeRef.new(shape: DisableTimestamp, location_name: "AnonymousAuthDisableDate"))
355
+ AdvancedSecurityOptions.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
342
356
  AdvancedSecurityOptions.struct_class = Types::AdvancedSecurityOptions
343
357
 
344
358
  AdvancedSecurityOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
345
359
  AdvancedSecurityOptionsInput.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
346
360
  AdvancedSecurityOptionsInput.add_member(:master_user_options, Shapes::ShapeRef.new(shape: MasterUserOptions, location_name: "MasterUserOptions"))
347
361
  AdvancedSecurityOptionsInput.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsInput, location_name: "SAMLOptions"))
362
+ AdvancedSecurityOptionsInput.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
348
363
  AdvancedSecurityOptionsInput.struct_class = Types::AdvancedSecurityOptionsInput
349
364
 
350
365
  AdvancedSecurityOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, required: true, location_name: "Options"))
@@ -408,6 +423,27 @@ module Aws::OpenSearchService
408
423
  CancelServiceSoftwareUpdateResponse.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
409
424
  CancelServiceSoftwareUpdateResponse.struct_class = Types::CancelServiceSoftwareUpdateResponse
410
425
 
426
+ ChangeProgressDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
427
+ ChangeProgressDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
428
+ ChangeProgressDetails.struct_class = Types::ChangeProgressDetails
429
+
430
+ ChangeProgressStage.add_member(:name, Shapes::ShapeRef.new(shape: ChangeProgressStageName, location_name: "Name"))
431
+ ChangeProgressStage.add_member(:status, Shapes::ShapeRef.new(shape: ChangeProgressStageStatus, location_name: "Status"))
432
+ ChangeProgressStage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
433
+ ChangeProgressStage.add_member(:last_updated, Shapes::ShapeRef.new(shape: LastUpdated, location_name: "LastUpdated"))
434
+ ChangeProgressStage.struct_class = Types::ChangeProgressStage
435
+
436
+ ChangeProgressStageList.member = Shapes::ShapeRef.new(shape: ChangeProgressStage)
437
+
438
+ ChangeProgressStatusDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
439
+ ChangeProgressStatusDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
440
+ ChangeProgressStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: OverallChangeStatus, location_name: "Status"))
441
+ ChangeProgressStatusDetails.add_member(:pending_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "PendingProperties"))
442
+ ChangeProgressStatusDetails.add_member(:completed_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "CompletedProperties"))
443
+ ChangeProgressStatusDetails.add_member(:total_number_of_stages, Shapes::ShapeRef.new(shape: TotalNumberOfStages, location_name: "TotalNumberOfStages"))
444
+ ChangeProgressStatusDetails.add_member(:change_progress_stages, Shapes::ShapeRef.new(shape: ChangeProgressStageList, location_name: "ChangeProgressStages"))
445
+ ChangeProgressStatusDetails.struct_class = Types::ChangeProgressStatusDetails
446
+
411
447
  ClusterConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: OpenSearchPartitionInstanceType, location_name: "InstanceType"))
412
448
  ClusterConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "InstanceCount"))
413
449
  ClusterConfig.add_member(:dedicated_master_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedMasterEnabled"))
@@ -521,6 +557,13 @@ module Aws::OpenSearchService
521
557
  DescribeDomainAutoTunesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
522
558
  DescribeDomainAutoTunesResponse.struct_class = Types::DescribeDomainAutoTunesResponse
523
559
 
560
+ DescribeDomainChangeProgressRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
561
+ DescribeDomainChangeProgressRequest.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location: "querystring", location_name: "changeid"))
562
+ DescribeDomainChangeProgressRequest.struct_class = Types::DescribeDomainChangeProgressRequest
563
+
564
+ DescribeDomainChangeProgressResponse.add_member(:change_progress_status, Shapes::ShapeRef.new(shape: ChangeProgressStatusDetails, location_name: "ChangeProgressStatus"))
565
+ DescribeDomainChangeProgressResponse.struct_class = Types::DescribeDomainChangeProgressResponse
566
+
524
567
  DescribeDomainConfigRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
525
568
  DescribeDomainConfigRequest.struct_class = Types::DescribeDomainConfigRequest
526
569
 
@@ -623,6 +666,7 @@ module Aws::OpenSearchService
623
666
  DomainConfig.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptionsStatus, location_name: "DomainEndpointOptions"))
624
667
  DomainConfig.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsStatus, location_name: "AdvancedSecurityOptions"))
625
668
  DomainConfig.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsStatus, location_name: "AutoTuneOptions"))
669
+ DomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
626
670
  DomainConfig.struct_class = Types::DomainConfig
627
671
 
628
672
  DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
@@ -684,6 +728,7 @@ module Aws::OpenSearchService
684
728
  DomainStatus.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
685
729
  DomainStatus.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, location_name: "AdvancedSecurityOptions"))
686
730
  DomainStatus.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsOutput, location_name: "AutoTuneOptions"))
731
+ DomainStatus.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
687
732
  DomainStatus.struct_class = Types::DomainStatus
688
733
 
689
734
  DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
@@ -1097,6 +1142,7 @@ module Aws::OpenSearchService
1097
1142
  UpgradeDomainResponse.add_member(:target_version, Shapes::ShapeRef.new(shape: VersionString, location_name: "TargetVersion"))
1098
1143
  UpgradeDomainResponse.add_member(:perform_check_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "PerformCheckOnly"))
1099
1144
  UpgradeDomainResponse.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
1145
+ UpgradeDomainResponse.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
1100
1146
  UpgradeDomainResponse.struct_class = Types::UpgradeDomainResponse
1101
1147
 
1102
1148
  UpgradeHistory.add_member(:upgrade_name, Shapes::ShapeRef.new(shape: UpgradeName, location_name: "UpgradeName"))
@@ -1325,6 +1371,18 @@ module Aws::OpenSearchService
1325
1371
  )
1326
1372
  end)
1327
1373
 
1374
+ api.add_operation(:describe_domain_change_progress, Seahorse::Model::Operation.new.tap do |o|
1375
+ o.name = "DescribeDomainChangeProgress"
1376
+ o.http_method = "GET"
1377
+ o.http_request_uri = "/2021-01-01/opensearch/domain/{DomainName}/progress"
1378
+ o.input = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressRequest)
1379
+ o.output = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressResponse)
1380
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1381
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1382
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1383
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1384
+ end)
1385
+
1328
1386
  api.add_operation(:describe_domain_config, Seahorse::Model::Operation.new.tap do |o|
1329
1387
  o.name = "DescribeDomainConfig"
1330
1388
  o.http_method = "GET"
@@ -220,12 +220,24 @@ module Aws::OpenSearchService
220
220
  # Describes the SAML application configured for a domain.
221
221
  # @return [Types::SAMLOptionsOutput]
222
222
  #
223
+ # @!attribute [rw] anonymous_auth_disable_date
224
+ # Specifies the Anonymous Auth Disable Date when Anonymous Auth is
225
+ # enabled.
226
+ # @return [Time]
227
+ #
228
+ # @!attribute [rw] anonymous_auth_enabled
229
+ # True if Anonymous auth is enabled. Anonymous auth can be enabled
230
+ # only when AdvancedSecurity is enabled on existing domains.
231
+ # @return [Boolean]
232
+ #
223
233
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AdvancedSecurityOptions AWS API Documentation
224
234
  #
225
235
  class AdvancedSecurityOptions < Struct.new(
226
236
  :enabled,
227
237
  :internal_user_database_enabled,
228
- :saml_options)
238
+ :saml_options,
239
+ :anonymous_auth_disable_date,
240
+ :anonymous_auth_enabled)
229
241
  SENSITIVE = []
230
242
  include Aws::Structure
231
243
  end
@@ -258,6 +270,7 @@ module Aws::OpenSearchService
258
270
  # roles_key: "String",
259
271
  # session_timeout_minutes: 1,
260
272
  # },
273
+ # anonymous_auth_enabled: false,
261
274
  # }
262
275
  #
263
276
  # @!attribute [rw] enabled
@@ -277,13 +290,19 @@ module Aws::OpenSearchService
277
290
  # The SAML application configuration for the domain.
278
291
  # @return [Types::SAMLOptionsInput]
279
292
  #
293
+ # @!attribute [rw] anonymous_auth_enabled
294
+ # True if Anonymous auth is enabled. Anonymous auth can be enabled
295
+ # only when AdvancedSecurity is enabled on existing domains.
296
+ # @return [Boolean]
297
+ #
280
298
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AdvancedSecurityOptionsInput AWS API Documentation
281
299
  #
282
300
  class AdvancedSecurityOptionsInput < Struct.new(
283
301
  :enabled,
284
302
  :internal_user_database_enabled,
285
303
  :master_user_options,
286
- :saml_options)
304
+ :saml_options,
305
+ :anonymous_auth_enabled)
287
306
  SENSITIVE = []
288
307
  include Aws::Structure
289
308
  end
@@ -673,6 +692,106 @@ module Aws::OpenSearchService
673
692
  include Aws::Structure
674
693
  end
675
694
 
695
+ # Specifies change details of the domain configuration change.
696
+ #
697
+ # @!attribute [rw] change_id
698
+ # The unique change identifier associated with a specific domain
699
+ # configuration change.
700
+ # @return [String]
701
+ #
702
+ # @!attribute [rw] message
703
+ # Contains an optional message associated with the domain
704
+ # configuration change.
705
+ # @return [String]
706
+ #
707
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressDetails AWS API Documentation
708
+ #
709
+ class ChangeProgressDetails < Struct.new(
710
+ :change_id,
711
+ :message)
712
+ SENSITIVE = []
713
+ include Aws::Structure
714
+ end
715
+
716
+ # A progress stage details of a specific domain configuration change.
717
+ #
718
+ # @!attribute [rw] name
719
+ # The name of the specific progress stage.
720
+ # @return [String]
721
+ #
722
+ # @!attribute [rw] status
723
+ # The overall status of a specific progress stage.
724
+ # @return [String]
725
+ #
726
+ # @!attribute [rw] description
727
+ # The description of the progress stage.
728
+ # @return [String]
729
+ #
730
+ # @!attribute [rw] last_updated
731
+ # The last updated timestamp of the progress stage.
732
+ # @return [Time]
733
+ #
734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressStage AWS API Documentation
735
+ #
736
+ class ChangeProgressStage < Struct.new(
737
+ :name,
738
+ :status,
739
+ :description,
740
+ :last_updated)
741
+ SENSITIVE = []
742
+ include Aws::Structure
743
+ end
744
+
745
+ # The progress details of a specific domain configuration change.
746
+ #
747
+ # @!attribute [rw] change_id
748
+ # The unique change identifier associated with a specific domain
749
+ # configuration change.
750
+ # @return [String]
751
+ #
752
+ # @!attribute [rw] start_time
753
+ # The time at which the configuration change is made on the domain.
754
+ # @return [Time]
755
+ #
756
+ # @!attribute [rw] status
757
+ # The overall status of the domain configuration change. This field
758
+ # can take the following values: `PENDING`, `PROCESSING`, `COMPLETED`
759
+ # and `FAILED`
760
+ # @return [String]
761
+ #
762
+ # @!attribute [rw] pending_properties
763
+ # The list of properties involved in the domain configuration change
764
+ # that are still in pending.
765
+ # @return [Array<String>]
766
+ #
767
+ # @!attribute [rw] completed_properties
768
+ # The list of properties involved in the domain configuration change
769
+ # that are completed.
770
+ # @return [Array<String>]
771
+ #
772
+ # @!attribute [rw] total_number_of_stages
773
+ # The total number of stages required for the configuration change.
774
+ # @return [Integer]
775
+ #
776
+ # @!attribute [rw] change_progress_stages
777
+ # The specific stages that the domain is going through to perform the
778
+ # configuration change.
779
+ # @return [Array<Types::ChangeProgressStage>]
780
+ #
781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressStatusDetails AWS API Documentation
782
+ #
783
+ class ChangeProgressStatusDetails < Struct.new(
784
+ :change_id,
785
+ :start_time,
786
+ :status,
787
+ :pending_properties,
788
+ :completed_properties,
789
+ :total_number_of_stages,
790
+ :change_progress_stages)
791
+ SENSITIVE = []
792
+ include Aws::Structure
793
+ end
794
+
676
795
  # The configuration for the domain cluster, such as the type and number
677
796
  # of instances.
678
797
  #
@@ -994,6 +1113,7 @@ module Aws::OpenSearchService
994
1113
  # roles_key: "String",
995
1114
  # session_timeout_minutes: 1,
996
1115
  # },
1116
+ # anonymous_auth_enabled: false,
997
1117
  # },
998
1118
  # tag_list: [
999
1119
  # {
@@ -1511,6 +1631,53 @@ module Aws::OpenSearchService
1511
1631
  include Aws::Structure
1512
1632
  end
1513
1633
 
1634
+ # Container for the parameters to the `DescribeDomainChangeProgress`
1635
+ # operation. Specifies the domain name and optional change specific
1636
+ # identity for which you want progress information.
1637
+ #
1638
+ # @note When making an API call, you may pass DescribeDomainChangeProgressRequest
1639
+ # data as a hash:
1640
+ #
1641
+ # {
1642
+ # domain_name: "DomainName", # required
1643
+ # change_id: "GUID",
1644
+ # }
1645
+ #
1646
+ # @!attribute [rw] domain_name
1647
+ # The domain you want to get the progress information about.
1648
+ # @return [String]
1649
+ #
1650
+ # @!attribute [rw] change_id
1651
+ # The specific change ID for which you want to get progress
1652
+ # information. This is an optional parameter. If omitted, the service
1653
+ # returns information about the most recent configuration change.
1654
+ # @return [String]
1655
+ #
1656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgressRequest AWS API Documentation
1657
+ #
1658
+ class DescribeDomainChangeProgressRequest < Struct.new(
1659
+ :domain_name,
1660
+ :change_id)
1661
+ SENSITIVE = []
1662
+ include Aws::Structure
1663
+ end
1664
+
1665
+ # The result of a `DescribeDomainChangeProgress` request. Contains the
1666
+ # progress information of the requested domain change.
1667
+ #
1668
+ # @!attribute [rw] change_progress_status
1669
+ # Progress information for the configuration change that is requested
1670
+ # in the `DescribeDomainChangeProgress` request.
1671
+ # @return [Types::ChangeProgressStatusDetails]
1672
+ #
1673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgressResponse AWS API Documentation
1674
+ #
1675
+ class DescribeDomainChangeProgressResponse < Struct.new(
1676
+ :change_progress_status)
1677
+ SENSITIVE = []
1678
+ include Aws::Structure
1679
+ end
1680
+
1514
1681
  # Container for the parameters to the `DescribeDomainConfig` operation.
1515
1682
  # Specifies the domain name for which you want configuration
1516
1683
  # information.
@@ -2143,6 +2310,10 @@ module Aws::OpenSearchService
2143
2310
  # Specifies `AutoTuneOptions` for the domain.
2144
2311
  # @return [Types::AutoTuneOptionsStatus]
2145
2312
  #
2313
+ # @!attribute [rw] change_progress_details
2314
+ # Specifies change details of the domain configuration change.
2315
+ # @return [Types::ChangeProgressDetails]
2316
+ #
2146
2317
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainConfig AWS API Documentation
2147
2318
  #
2148
2319
  class DomainConfig < Struct.new(
@@ -2159,7 +2330,8 @@ module Aws::OpenSearchService
2159
2330
  :log_publishing_options,
2160
2331
  :domain_endpoint_options,
2161
2332
  :advanced_security_options,
2162
- :auto_tune_options)
2333
+ :auto_tune_options,
2334
+ :change_progress_details)
2163
2335
  SENSITIVE = []
2164
2336
  include Aws::Structure
2165
2337
  end
@@ -2460,6 +2632,10 @@ module Aws::OpenSearchService
2460
2632
  # The current status of the domain's Auto-Tune options.
2461
2633
  # @return [Types::AutoTuneOptionsOutput]
2462
2634
  #
2635
+ # @!attribute [rw] change_progress_details
2636
+ # Specifies change details of the domain configuration change.
2637
+ # @return [Types::ChangeProgressDetails]
2638
+ #
2463
2639
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainStatus AWS API Documentation
2464
2640
  #
2465
2641
  class DomainStatus < Struct.new(
@@ -2486,7 +2662,8 @@ module Aws::OpenSearchService
2486
2662
  :service_software_options,
2487
2663
  :domain_endpoint_options,
2488
2664
  :advanced_security_options,
2489
- :auto_tune_options)
2665
+ :auto_tune_options,
2666
+ :change_progress_details)
2490
2667
  SENSITIVE = []
2491
2668
  include Aws::Structure
2492
2669
  end
@@ -4537,6 +4714,7 @@ module Aws::OpenSearchService
4537
4714
  # roles_key: "String",
4538
4715
  # session_timeout_minutes: 1,
4539
4716
  # },
4717
+ # anonymous_auth_enabled: false,
4540
4718
  # },
4541
4719
  # auto_tune_options: {
4542
4720
  # desired_state: "ENABLED", # accepts ENABLED, DISABLED
@@ -4842,6 +5020,10 @@ module Aws::OpenSearchService
4842
5020
  # [1]: http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options
4843
5021
  # @return [Hash<String,String>]
4844
5022
  #
5023
+ # @!attribute [rw] change_progress_details
5024
+ # Specifies change details of the domain configuration change.
5025
+ # @return [Types::ChangeProgressDetails]
5026
+ #
4845
5027
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpgradeDomainResponse AWS API Documentation
4846
5028
  #
4847
5029
  class UpgradeDomainResponse < Struct.new(
@@ -4849,7 +5031,8 @@ module Aws::OpenSearchService
4849
5031
  :domain_name,
4850
5032
  :target_version,
4851
5033
  :perform_check_only,
4852
- :advanced_options)
5034
+ :advanced_options,
5035
+ :change_progress_details)
4853
5036
  SENSITIVE = []
4854
5037
  include Aws::Structure
4855
5038
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-opensearchservice/customizations'
48
48
  # @!group service
49
49
  module Aws::OpenSearchService
50
50
 
51
- GEM_VERSION = '1.4.0'
51
+ GEM_VERSION = '1.8.0'
52
52
 
53
53
  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.0
4
+ version: 1.8.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-23 00:00:00.000000000 Z
11
+ date: 2022-01-27 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement