aws-sdk-databasemigrationservice 1.110.0 → 1.112.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +119 -4
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +27 -6
- data/lib/aws-sdk-databasemigrationservice/types.rb +165 -30
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +34 -12
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +16 -1
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -349,7 +351,8 @@ module Aws
|
|
349
351
|
include_table_alter_operations: bool?,
|
350
352
|
include_control_details: bool?,
|
351
353
|
include_null_and_empty: bool?,
|
352
|
-
no_hex_prefix: bool
|
354
|
+
no_hex_prefix: bool?,
|
355
|
+
use_large_integer_value: bool?
|
353
356
|
},
|
354
357
|
?kafka_settings: {
|
355
358
|
broker: ::String?,
|
@@ -371,7 +374,8 @@ module Aws
|
|
371
374
|
sasl_password: ::String?,
|
372
375
|
no_hex_prefix: bool?,
|
373
376
|
sasl_mechanism: ("scram-sha-512" | "plain")?,
|
374
|
-
ssl_endpoint_identification_algorithm: ("none" | "https")
|
377
|
+
ssl_endpoint_identification_algorithm: ("none" | "https")?,
|
378
|
+
use_large_integer_value: bool?
|
375
379
|
},
|
376
380
|
?elasticsearch_settings: {
|
377
381
|
service_access_role_arn: ::String,
|
@@ -446,7 +450,8 @@ module Aws
|
|
446
450
|
map_jsonb_as_clob: bool?,
|
447
451
|
map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
|
448
452
|
database_mode: ("default" | "babelfish")?,
|
449
|
-
babelfish_database_name: ::String
|
453
|
+
babelfish_database_name: ::String?,
|
454
|
+
disable_unicode_source_filter: bool?
|
450
455
|
},
|
451
456
|
?my_sql_settings: {
|
452
457
|
after_connect_script: ::String?,
|
@@ -508,7 +513,8 @@ module Aws
|
|
508
513
|
secrets_manager_oracle_asm_secret_id: ::String?,
|
509
514
|
trim_space_in_char: bool?,
|
510
515
|
convert_timestamp_with_zone_to_utc: bool?,
|
511
|
-
open_transaction_window: ::Integer
|
516
|
+
open_transaction_window: ::Integer?,
|
517
|
+
authentication_method: ("password" | "kerberos")?
|
512
518
|
},
|
513
519
|
?sybase_settings: {
|
514
520
|
database_name: ::String?,
|
@@ -536,7 +542,8 @@ module Aws
|
|
536
542
|
secrets_manager_secret_id: ::String?,
|
537
543
|
trim_space_in_char: bool?,
|
538
544
|
tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
|
539
|
-
force_lob_lookup: bool
|
545
|
+
force_lob_lookup: bool?,
|
546
|
+
authentication_method: ("password" | "kerberos")?
|
540
547
|
},
|
541
548
|
?ibm_db_2_settings: {
|
542
549
|
database_name: ::String?,
|
@@ -768,7 +775,12 @@ module Aws
|
|
768
775
|
?publicly_accessible: bool,
|
769
776
|
?dns_name_servers: ::String,
|
770
777
|
?resource_identifier: ::String,
|
771
|
-
?network_type: ::String
|
778
|
+
?network_type: ::String,
|
779
|
+
?kerberos_authentication_settings: {
|
780
|
+
key_cache_secret_id: ::String?,
|
781
|
+
key_cache_secret_iam_arn: ::String?,
|
782
|
+
krb_5_file_contents: ::String?
|
783
|
+
}
|
772
784
|
) -> _CreateReplicationInstanceResponseSuccess
|
773
785
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationInstanceResponseSuccess
|
774
786
|
|
@@ -1969,7 +1981,8 @@ module Aws
|
|
1969
1981
|
include_table_alter_operations: bool?,
|
1970
1982
|
include_control_details: bool?,
|
1971
1983
|
include_null_and_empty: bool?,
|
1972
|
-
no_hex_prefix: bool
|
1984
|
+
no_hex_prefix: bool?,
|
1985
|
+
use_large_integer_value: bool?
|
1973
1986
|
},
|
1974
1987
|
?kafka_settings: {
|
1975
1988
|
broker: ::String?,
|
@@ -1991,7 +2004,8 @@ module Aws
|
|
1991
2004
|
sasl_password: ::String?,
|
1992
2005
|
no_hex_prefix: bool?,
|
1993
2006
|
sasl_mechanism: ("scram-sha-512" | "plain")?,
|
1994
|
-
ssl_endpoint_identification_algorithm: ("none" | "https")
|
2007
|
+
ssl_endpoint_identification_algorithm: ("none" | "https")?,
|
2008
|
+
use_large_integer_value: bool?
|
1995
2009
|
},
|
1996
2010
|
?elasticsearch_settings: {
|
1997
2011
|
service_access_role_arn: ::String,
|
@@ -2066,7 +2080,8 @@ module Aws
|
|
2066
2080
|
map_jsonb_as_clob: bool?,
|
2067
2081
|
map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
|
2068
2082
|
database_mode: ("default" | "babelfish")?,
|
2069
|
-
babelfish_database_name: ::String
|
2083
|
+
babelfish_database_name: ::String?,
|
2084
|
+
disable_unicode_source_filter: bool?
|
2070
2085
|
},
|
2071
2086
|
?my_sql_settings: {
|
2072
2087
|
after_connect_script: ::String?,
|
@@ -2128,7 +2143,8 @@ module Aws
|
|
2128
2143
|
secrets_manager_oracle_asm_secret_id: ::String?,
|
2129
2144
|
trim_space_in_char: bool?,
|
2130
2145
|
convert_timestamp_with_zone_to_utc: bool?,
|
2131
|
-
open_transaction_window: ::Integer
|
2146
|
+
open_transaction_window: ::Integer?,
|
2147
|
+
authentication_method: ("password" | "kerberos")?
|
2132
2148
|
},
|
2133
2149
|
?sybase_settings: {
|
2134
2150
|
database_name: ::String?,
|
@@ -2156,7 +2172,8 @@ module Aws
|
|
2156
2172
|
secrets_manager_secret_id: ::String?,
|
2157
2173
|
trim_space_in_char: bool?,
|
2158
2174
|
tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
|
2159
|
-
force_lob_lookup: bool
|
2175
|
+
force_lob_lookup: bool?,
|
2176
|
+
authentication_method: ("password" | "kerberos")?
|
2160
2177
|
},
|
2161
2178
|
?ibm_db_2_settings: {
|
2162
2179
|
database_name: ::String?,
|
@@ -2334,7 +2351,12 @@ module Aws
|
|
2334
2351
|
?allow_major_version_upgrade: bool,
|
2335
2352
|
?auto_minor_version_upgrade: bool,
|
2336
2353
|
?replication_instance_identifier: ::String,
|
2337
|
-
?network_type: ::String
|
2354
|
+
?network_type: ::String,
|
2355
|
+
?kerberos_authentication_settings: {
|
2356
|
+
key_cache_secret_id: ::String?,
|
2357
|
+
key_cache_secret_iam_arn: ::String?,
|
2358
|
+
krb_5_file_contents: ::String?
|
2359
|
+
}
|
2338
2360
|
) -> _ModifyReplicationInstanceResponseSuccess
|
2339
2361
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationInstanceResponseSuccess
|
2340
2362
|
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -326,6 +326,7 @@ module Aws::DatabaseMigrationService
|
|
326
326
|
attr_accessor dns_name_servers: ::String
|
327
327
|
attr_accessor resource_identifier: ::String
|
328
328
|
attr_accessor network_type: ::String
|
329
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
329
330
|
SENSITIVE: []
|
330
331
|
end
|
331
332
|
|
@@ -1582,9 +1583,17 @@ module Aws::DatabaseMigrationService
|
|
1582
1583
|
attr_accessor no_hex_prefix: bool
|
1583
1584
|
attr_accessor sasl_mechanism: ("scram-sha-512" | "plain")
|
1584
1585
|
attr_accessor ssl_endpoint_identification_algorithm: ("none" | "https")
|
1586
|
+
attr_accessor use_large_integer_value: bool
|
1585
1587
|
SENSITIVE: [:ssl_client_key_password, :sasl_password]
|
1586
1588
|
end
|
1587
1589
|
|
1590
|
+
class KerberosAuthenticationSettings
|
1591
|
+
attr_accessor key_cache_secret_id: ::String
|
1592
|
+
attr_accessor key_cache_secret_iam_arn: ::String
|
1593
|
+
attr_accessor krb_5_file_contents: ::String
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1588
1597
|
class KinesisSettings
|
1589
1598
|
attr_accessor stream_arn: ::String
|
1590
1599
|
attr_accessor message_format: ("json" | "json-unformatted")
|
@@ -1596,6 +1605,7 @@ module Aws::DatabaseMigrationService
|
|
1596
1605
|
attr_accessor include_control_details: bool
|
1597
1606
|
attr_accessor include_null_and_empty: bool
|
1598
1607
|
attr_accessor no_hex_prefix: bool
|
1608
|
+
attr_accessor use_large_integer_value: bool
|
1599
1609
|
SENSITIVE: []
|
1600
1610
|
end
|
1601
1611
|
|
@@ -1646,6 +1656,7 @@ module Aws::DatabaseMigrationService
|
|
1646
1656
|
attr_accessor trim_space_in_char: bool
|
1647
1657
|
attr_accessor tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")
|
1648
1658
|
attr_accessor force_lob_lookup: bool
|
1659
|
+
attr_accessor authentication_method: ("password" | "kerberos")
|
1649
1660
|
SENSITIVE: [:password]
|
1650
1661
|
end
|
1651
1662
|
|
@@ -1838,6 +1849,7 @@ module Aws::DatabaseMigrationService
|
|
1838
1849
|
attr_accessor auto_minor_version_upgrade: bool
|
1839
1850
|
attr_accessor replication_instance_identifier: ::String
|
1840
1851
|
attr_accessor network_type: ::String
|
1852
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
1841
1853
|
SENSITIVE: []
|
1842
1854
|
end
|
1843
1855
|
|
@@ -2015,6 +2027,7 @@ module Aws::DatabaseMigrationService
|
|
2015
2027
|
attr_accessor trim_space_in_char: bool
|
2016
2028
|
attr_accessor convert_timestamp_with_zone_to_utc: bool
|
2017
2029
|
attr_accessor open_transaction_window: ::Integer
|
2030
|
+
attr_accessor authentication_method: ("password" | "kerberos")
|
2018
2031
|
SENSITIVE: [:asm_password, :password, :security_db_encryption]
|
2019
2032
|
end
|
2020
2033
|
|
@@ -2066,6 +2079,7 @@ module Aws::DatabaseMigrationService
|
|
2066
2079
|
attr_accessor map_long_varchar_as: ("wstring" | "clob" | "nclob")
|
2067
2080
|
attr_accessor database_mode: ("default" | "babelfish")
|
2068
2081
|
attr_accessor babelfish_database_name: ::String
|
2082
|
+
attr_accessor disable_unicode_source_filter: bool
|
2069
2083
|
SENSITIVE: [:password]
|
2070
2084
|
end
|
2071
2085
|
|
@@ -2322,6 +2336,7 @@ module Aws::DatabaseMigrationService
|
|
2322
2336
|
attr_accessor free_until: ::Time
|
2323
2337
|
attr_accessor dns_name_servers: ::String
|
2324
2338
|
attr_accessor network_type: ::String
|
2339
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
2325
2340
|
SENSITIVE: []
|
2326
2341
|
end
|
2327
2342
|
|
@@ -2402,7 +2417,7 @@ module Aws::DatabaseMigrationService
|
|
2402
2417
|
attr_accessor assessment_results_file: ::String
|
2403
2418
|
attr_accessor assessment_results: ::String
|
2404
2419
|
attr_accessor s3_object_url: ::String
|
2405
|
-
SENSITIVE: []
|
2420
|
+
SENSITIVE: [:s3_object_url]
|
2406
2421
|
end
|
2407
2422
|
|
2408
2423
|
class ReplicationTaskAssessmentRun
|
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.
|
4
|
+
version: 1.112.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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|