aws-sdk-databasemigrationservice 1.62.0 → 1.66.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: f02e30b10ff0647d048a5e44b0fdbc406ba7446e21f3da64a95df9b40afffc58
4
- data.tar.gz: 4fd62efa81e231eb31e494df24fe983920ebc56616509e1b1c6de8a6119f3069
3
+ metadata.gz: 96ad161318cd13d271f23bed949ef1bcf461bb3fbd70e1abf6487caa227df533
4
+ data.tar.gz: 102c1268aea05d3d95cff63f5b6d68abe617ee4f9aaaaa1f3d433ce16d645552
5
5
  SHA512:
6
- metadata.gz: e013f458aa5186516983d811188cfa6890c47a29542a8325b5e0a8c7bddaf1057c7f429752bec74c8d3885775922cc18385a5dbff15bee4e73c97146fd67c79f
7
- data.tar.gz: 3adb5ae4d5c0f82d9fe942680ce7a45cc38b76e0f41e3e4324620d87c759b65aab3dcabd26f45bf4f69599956bebd950eaa49b17982becf2cef720988241b186
6
+ metadata.gz: 5f6762eb187369541c83a1546df06282a349198d743740f04674ebec8fbe7824b36d23097541acc2cef6b738424d43ba174ff4f4a2d791401fc034b13f434958
7
+ data.tar.gz: 4cf22b30805377c506513772422563afd838e87a218cd3de4501cfaab32152d0f70ef608b6c51b3631de0f16953ae0f1c93eb7cbf9c0f0a6fb784b9aa9ae84a8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.65.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.64.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.63.0 (2021-11-22)
20
+ ------------------
21
+
22
+ * Feature - Added new S3 endpoint settings to allow to convert the current UTC time into a specified time zone when a date partition folder is created. Using with 'DatePartitionedEnabled'.
23
+
4
24
  1.62.0 (2021-11-15)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.66.0
@@ -27,6 +27,8 @@ 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'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::DatabaseMigrationService
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::DatabaseMigrationService
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::DatabaseMigrationService
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::DatabaseMigrationService
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::DatabaseMigrationService
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -890,6 +903,7 @@ module Aws::DatabaseMigrationService
890
903
  # ignore_header_rows: 1,
891
904
  # max_file_size: 1,
892
905
  # rfc_4180: false,
906
+ # date_partition_timezone: "String",
893
907
  # },
894
908
  # dms_transfer_settings: {
895
909
  # service_access_role_arn: "String",
@@ -1203,6 +1217,7 @@ module Aws::DatabaseMigrationService
1203
1217
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
1204
1218
  # resp.endpoint.s3_settings.max_file_size #=> Integer
1205
1219
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
1220
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
1206
1221
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
1207
1222
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
1208
1223
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -2357,6 +2372,7 @@ module Aws::DatabaseMigrationService
2357
2372
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
2358
2373
  # resp.endpoint.s3_settings.max_file_size #=> Integer
2359
2374
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
2375
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
2360
2376
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
2361
2377
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
2362
2378
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -3538,6 +3554,7 @@ module Aws::DatabaseMigrationService
3538
3554
  # resp.endpoints[0].s3_settings.ignore_header_rows #=> Integer
3539
3555
  # resp.endpoints[0].s3_settings.max_file_size #=> Integer
3540
3556
  # resp.endpoints[0].s3_settings.rfc_4180 #=> Boolean
3557
+ # resp.endpoints[0].s3_settings.date_partition_timezone #=> String
3541
3558
  # resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
3542
3559
  # resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
3543
3560
  # resp.endpoints[0].mongo_db_settings.username #=> String
@@ -5464,6 +5481,7 @@ module Aws::DatabaseMigrationService
5464
5481
  # ignore_header_rows: 1,
5465
5482
  # max_file_size: 1,
5466
5483
  # rfc_4180: false,
5484
+ # date_partition_timezone: "String",
5467
5485
  # },
5468
5486
  # dms_transfer_settings: {
5469
5487
  # service_access_role_arn: "String",
@@ -5777,6 +5795,7 @@ module Aws::DatabaseMigrationService
5777
5795
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
5778
5796
  # resp.endpoint.s3_settings.max_file_size #=> Integer
5779
5797
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
5798
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
5780
5799
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
5781
5800
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
5782
5801
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -6976,6 +6995,23 @@ module Aws::DatabaseMigrationService
6976
6995
  # Starts the replication task assessment for unsupported data types in
6977
6996
  # the source database.
6978
6997
  #
6998
+ # You can only use this operation for a task if the following conditions
6999
+ # are true:
7000
+ #
7001
+ # * The task must be in the `stopped` state.
7002
+ #
7003
+ # * The task must have successful connections to the source and target.
7004
+ #
7005
+ # If either of these conditions are not met, an
7006
+ # `InvalidResourceStateFault` error will result.
7007
+ #
7008
+ # For information about DMS task assessments, see [Creating a task
7009
+ # assessment report][1] in the *Database Migration Service User Guide*.
7010
+ #
7011
+ #
7012
+ #
7013
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
7014
+ #
6979
7015
  # @option params [required, String] :replication_task_arn
6980
7016
  # The Amazon Resource Name (ARN) of the replication task.
6981
7017
  #
@@ -7300,7 +7336,7 @@ module Aws::DatabaseMigrationService
7300
7336
  params: params,
7301
7337
  config: config)
7302
7338
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
7303
- context[:gem_version] = '1.62.0'
7339
+ context[:gem_version] = '1.66.0'
7304
7340
  Seahorse::Client::Request.new(handlers, context)
7305
7341
  end
7306
7342
 
@@ -1428,6 +1428,7 @@ module Aws::DatabaseMigrationService
1428
1428
  S3Settings.add_member(:ignore_header_rows, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IgnoreHeaderRows"))
1429
1429
  S3Settings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
1430
1430
  S3Settings.add_member(:rfc_4180, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Rfc4180"))
1431
+ S3Settings.add_member(:date_partition_timezone, Shapes::ShapeRef.new(shape: String, location_name: "DatePartitionTimezone"))
1431
1432
  S3Settings.struct_class = Types::S3Settings
1432
1433
 
1433
1434
  SNSInvalidTopicFault.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
@@ -388,6 +388,7 @@ module Aws::DatabaseMigrationService
388
388
  # ignore_header_rows: 1,
389
389
  # max_file_size: 1,
390
390
  # rfc_4180: false,
391
+ # date_partition_timezone: "String",
391
392
  # },
392
393
  # dms_transfer_settings: {
393
394
  # service_access_role_arn: "String",
@@ -4891,6 +4892,7 @@ module Aws::DatabaseMigrationService
4891
4892
  # ignore_header_rows: 1,
4892
4893
  # max_file_size: 1,
4893
4894
  # rfc_4180: false,
4895
+ # date_partition_timezone: "String",
4894
4896
  # },
4895
4897
  # dms_transfer_settings: {
4896
4898
  # service_access_role_arn: "String",
@@ -8725,6 +8727,7 @@ module Aws::DatabaseMigrationService
8725
8727
  # ignore_header_rows: 1,
8726
8728
  # max_file_size: 1,
8727
8729
  # rfc_4180: false,
8730
+ # date_partition_timezone: "String",
8728
8731
  # }
8729
8732
  #
8730
8733
  # @!attribute [rw] service_access_role_arn
@@ -9264,6 +9267,20 @@ module Aws::DatabaseMigrationService
9264
9267
  # `y`, and `n`.
9265
9268
  # @return [Boolean]
9266
9269
  #
9270
+ # @!attribute [rw] date_partition_timezone
9271
+ # When creating an S3 target endpoint, set `DatePartitionTimezone` to
9272
+ # convert the current UTC time into a specified time zone. The
9273
+ # conversion occurs when a date partition folder is created and a CDC
9274
+ # filename is generated. The time zone format is Area/Location. Use
9275
+ # this parameter when `DatePartitionedEnabled` is set to `true`, as
9276
+ # shown in the following example.
9277
+ #
9278
+ # `s3-settings='\{"DatePartitionEnabled": true,
9279
+ # "DatePartitionSequence": "YYYYMMDDHH", "DatePartitionDelimiter":
9280
+ # "SLASH", "DatePartitionTimezone":"Asia/Seoul", "BucketName":
9281
+ # "dms-nattarat-test"\}'`
9282
+ # @return [String]
9283
+ #
9267
9284
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3Settings AWS API Documentation
9268
9285
  #
9269
9286
  class S3Settings < Struct.new(
@@ -9303,7 +9320,8 @@ module Aws::DatabaseMigrationService
9303
9320
  :csv_null_value,
9304
9321
  :ignore_header_rows,
9305
9322
  :max_file_size,
9306
- :rfc_4180)
9323
+ :rfc_4180,
9324
+ :date_partition_timezone)
9307
9325
  SENSITIVE = []
9308
9326
  include Aws::Structure
9309
9327
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
49
49
  # @!group service
50
50
  module Aws::DatabaseMigrationService
51
51
 
52
- GEM_VERSION = '1.62.0'
52
+ GEM_VERSION = '1.66.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-databasemigrationservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.66.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-15 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.126.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.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement