aws-sdk-databasemigrationservice 1.72.0 → 1.74.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 +81 -12
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +13 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +143 -0
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +925 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +198 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +97 -31
- data/lib/aws-sdk-databasemigrationservice.rb +5 -1
- metadata +8 -4
@@ -0,0 +1,198 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::DatabaseMigrationService
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::DatabaseMigrationService::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::DatabaseMigrationService::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::DatabaseMigrationService::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :add_tags_to_resource
|
60
|
+
Aws::DatabaseMigrationService::Endpoints::AddTagsToResource.build(context)
|
61
|
+
when :apply_pending_maintenance_action
|
62
|
+
Aws::DatabaseMigrationService::Endpoints::ApplyPendingMaintenanceAction.build(context)
|
63
|
+
when :cancel_replication_task_assessment_run
|
64
|
+
Aws::DatabaseMigrationService::Endpoints::CancelReplicationTaskAssessmentRun.build(context)
|
65
|
+
when :create_endpoint
|
66
|
+
Aws::DatabaseMigrationService::Endpoints::CreateEndpoint.build(context)
|
67
|
+
when :create_event_subscription
|
68
|
+
Aws::DatabaseMigrationService::Endpoints::CreateEventSubscription.build(context)
|
69
|
+
when :create_fleet_advisor_collector
|
70
|
+
Aws::DatabaseMigrationService::Endpoints::CreateFleetAdvisorCollector.build(context)
|
71
|
+
when :create_replication_instance
|
72
|
+
Aws::DatabaseMigrationService::Endpoints::CreateReplicationInstance.build(context)
|
73
|
+
when :create_replication_subnet_group
|
74
|
+
Aws::DatabaseMigrationService::Endpoints::CreateReplicationSubnetGroup.build(context)
|
75
|
+
when :create_replication_task
|
76
|
+
Aws::DatabaseMigrationService::Endpoints::CreateReplicationTask.build(context)
|
77
|
+
when :delete_certificate
|
78
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteCertificate.build(context)
|
79
|
+
when :delete_connection
|
80
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteConnection.build(context)
|
81
|
+
when :delete_endpoint
|
82
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteEndpoint.build(context)
|
83
|
+
when :delete_event_subscription
|
84
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteEventSubscription.build(context)
|
85
|
+
when :delete_fleet_advisor_collector
|
86
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteFleetAdvisorCollector.build(context)
|
87
|
+
when :delete_fleet_advisor_databases
|
88
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteFleetAdvisorDatabases.build(context)
|
89
|
+
when :delete_replication_instance
|
90
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteReplicationInstance.build(context)
|
91
|
+
when :delete_replication_subnet_group
|
92
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteReplicationSubnetGroup.build(context)
|
93
|
+
when :delete_replication_task
|
94
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteReplicationTask.build(context)
|
95
|
+
when :delete_replication_task_assessment_run
|
96
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteReplicationTaskAssessmentRun.build(context)
|
97
|
+
when :describe_account_attributes
|
98
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeAccountAttributes.build(context)
|
99
|
+
when :describe_applicable_individual_assessments
|
100
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeApplicableIndividualAssessments.build(context)
|
101
|
+
when :describe_certificates
|
102
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeCertificates.build(context)
|
103
|
+
when :describe_connections
|
104
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeConnections.build(context)
|
105
|
+
when :describe_endpoint_settings
|
106
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEndpointSettings.build(context)
|
107
|
+
when :describe_endpoint_types
|
108
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEndpointTypes.build(context)
|
109
|
+
when :describe_endpoints
|
110
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEndpoints.build(context)
|
111
|
+
when :describe_event_categories
|
112
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEventCategories.build(context)
|
113
|
+
when :describe_event_subscriptions
|
114
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEventSubscriptions.build(context)
|
115
|
+
when :describe_events
|
116
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEvents.build(context)
|
117
|
+
when :describe_fleet_advisor_collectors
|
118
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorCollectors.build(context)
|
119
|
+
when :describe_fleet_advisor_databases
|
120
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorDatabases.build(context)
|
121
|
+
when :describe_fleet_advisor_lsa_analysis
|
122
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorLsaAnalysis.build(context)
|
123
|
+
when :describe_fleet_advisor_schema_object_summary
|
124
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorSchemaObjectSummary.build(context)
|
125
|
+
when :describe_fleet_advisor_schemas
|
126
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorSchemas.build(context)
|
127
|
+
when :describe_orderable_replication_instances
|
128
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeOrderableReplicationInstances.build(context)
|
129
|
+
when :describe_pending_maintenance_actions
|
130
|
+
Aws::DatabaseMigrationService::Endpoints::DescribePendingMaintenanceActions.build(context)
|
131
|
+
when :describe_refresh_schemas_status
|
132
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeRefreshSchemasStatus.build(context)
|
133
|
+
when :describe_replication_instance_task_logs
|
134
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationInstanceTaskLogs.build(context)
|
135
|
+
when :describe_replication_instances
|
136
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationInstances.build(context)
|
137
|
+
when :describe_replication_subnet_groups
|
138
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationSubnetGroups.build(context)
|
139
|
+
when :describe_replication_task_assessment_results
|
140
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationTaskAssessmentResults.build(context)
|
141
|
+
when :describe_replication_task_assessment_runs
|
142
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationTaskAssessmentRuns.build(context)
|
143
|
+
when :describe_replication_task_individual_assessments
|
144
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationTaskIndividualAssessments.build(context)
|
145
|
+
when :describe_replication_tasks
|
146
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeReplicationTasks.build(context)
|
147
|
+
when :describe_schemas
|
148
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeSchemas.build(context)
|
149
|
+
when :describe_table_statistics
|
150
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeTableStatistics.build(context)
|
151
|
+
when :import_certificate
|
152
|
+
Aws::DatabaseMigrationService::Endpoints::ImportCertificate.build(context)
|
153
|
+
when :list_tags_for_resource
|
154
|
+
Aws::DatabaseMigrationService::Endpoints::ListTagsForResource.build(context)
|
155
|
+
when :modify_endpoint
|
156
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyEndpoint.build(context)
|
157
|
+
when :modify_event_subscription
|
158
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyEventSubscription.build(context)
|
159
|
+
when :modify_replication_instance
|
160
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyReplicationInstance.build(context)
|
161
|
+
when :modify_replication_subnet_group
|
162
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyReplicationSubnetGroup.build(context)
|
163
|
+
when :modify_replication_task
|
164
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyReplicationTask.build(context)
|
165
|
+
when :move_replication_task
|
166
|
+
Aws::DatabaseMigrationService::Endpoints::MoveReplicationTask.build(context)
|
167
|
+
when :reboot_replication_instance
|
168
|
+
Aws::DatabaseMigrationService::Endpoints::RebootReplicationInstance.build(context)
|
169
|
+
when :refresh_schemas
|
170
|
+
Aws::DatabaseMigrationService::Endpoints::RefreshSchemas.build(context)
|
171
|
+
when :reload_tables
|
172
|
+
Aws::DatabaseMigrationService::Endpoints::ReloadTables.build(context)
|
173
|
+
when :remove_tags_from_resource
|
174
|
+
Aws::DatabaseMigrationService::Endpoints::RemoveTagsFromResource.build(context)
|
175
|
+
when :run_fleet_advisor_lsa_analysis
|
176
|
+
Aws::DatabaseMigrationService::Endpoints::RunFleetAdvisorLsaAnalysis.build(context)
|
177
|
+
when :start_replication_task
|
178
|
+
Aws::DatabaseMigrationService::Endpoints::StartReplicationTask.build(context)
|
179
|
+
when :start_replication_task_assessment
|
180
|
+
Aws::DatabaseMigrationService::Endpoints::StartReplicationTaskAssessment.build(context)
|
181
|
+
when :start_replication_task_assessment_run
|
182
|
+
Aws::DatabaseMigrationService::Endpoints::StartReplicationTaskAssessmentRun.build(context)
|
183
|
+
when :stop_replication_task
|
184
|
+
Aws::DatabaseMigrationService::Endpoints::StopReplicationTask.build(context)
|
185
|
+
when :test_connection
|
186
|
+
Aws::DatabaseMigrationService::Endpoints::TestConnection.build(context)
|
187
|
+
when :update_subscriptions_to_event_bridge
|
188
|
+
Aws::DatabaseMigrationService::Endpoints::UpdateSubscriptionsToEventBridge.build(context)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
def add_handlers(handlers, _config)
|
194
|
+
handlers.add(Handler, step: :build, priority: 75)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -809,9 +809,10 @@ module Aws::DatabaseMigrationService
|
|
809
809
|
# The type of engine for the endpoint. Valid values, depending on the
|
810
810
|
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
811
811
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
|
812
|
-
# `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`,
|
812
|
+
# `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`,
|
813
813
|
# `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
|
814
|
-
# `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
|
814
|
+
# `"elasticsearch"`, `"docdb"`, `"sqlserver"`, `"neptune"`, and
|
815
|
+
# `"babelfish"`.
|
815
816
|
# @return [String]
|
816
817
|
#
|
817
818
|
# @!attribute [rw] username
|
@@ -1336,6 +1337,7 @@ module Aws::DatabaseMigrationService
|
|
1336
1337
|
# publicly_accessible: false,
|
1337
1338
|
# dns_name_servers: "String",
|
1338
1339
|
# resource_identifier: "String",
|
1340
|
+
# network_type: "String",
|
1339
1341
|
# }
|
1340
1342
|
#
|
1341
1343
|
# @!attribute [rw] replication_instance_identifier
|
@@ -1473,6 +1475,12 @@ module Aws::DatabaseMigrationService
|
|
1473
1475
|
# identifier value for the end of `EndpointArn`.
|
1474
1476
|
# @return [String]
|
1475
1477
|
#
|
1478
|
+
# @!attribute [rw] network_type
|
1479
|
+
# The type of IP address protocol used by a replication instance, such
|
1480
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
1481
|
+
# addressing. IPv6 only is not yet supported.
|
1482
|
+
# @return [String]
|
1483
|
+
#
|
1476
1484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
|
1477
1485
|
#
|
1478
1486
|
class CreateReplicationInstanceMessage < Struct.new(
|
@@ -1490,7 +1498,8 @@ module Aws::DatabaseMigrationService
|
|
1490
1498
|
:kms_key_id,
|
1491
1499
|
:publicly_accessible,
|
1492
1500
|
:dns_name_servers,
|
1493
|
-
:resource_identifier
|
1501
|
+
:resource_identifier,
|
1502
|
+
:network_type)
|
1494
1503
|
SENSITIVE = []
|
1495
1504
|
include Aws::Structure
|
1496
1505
|
end
|
@@ -4213,16 +4222,16 @@ module Aws::DatabaseMigrationService
|
|
4213
4222
|
# @!attribute [rw] engine_name
|
4214
4223
|
# The database engine name. Valid values, depending on the
|
4215
4224
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
4216
|
-
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"
|
4217
|
-
# `"
|
4218
|
-
# `"
|
4219
|
-
# `"
|
4225
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
4226
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
4227
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
4228
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
4220
4229
|
# @return [String]
|
4221
4230
|
#
|
4222
4231
|
# @!attribute [rw] engine_display_name
|
4223
4232
|
# The expanded name for the engine name. For example, if the
|
4224
|
-
# `EngineName` parameter is "aurora,
|
4225
|
-
# Aurora MySQL.
|
4233
|
+
# `EngineName` parameter is "aurora", this value would be "Amazon
|
4234
|
+
# Aurora MySQL".
|
4226
4235
|
# @return [String]
|
4227
4236
|
#
|
4228
4237
|
# @!attribute [rw] username
|
@@ -6034,12 +6043,12 @@ module Aws::DatabaseMigrationService
|
|
6034
6043
|
# @return [String]
|
6035
6044
|
#
|
6036
6045
|
# @!attribute [rw] engine_name
|
6037
|
-
# The
|
6046
|
+
# The database engine name. Valid values, depending on the
|
6038
6047
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
6039
|
-
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"
|
6040
|
-
# `"
|
6041
|
-
# `"
|
6042
|
-
# `"
|
6048
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
6049
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
6050
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
6051
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
6043
6052
|
# @return [String]
|
6044
6053
|
#
|
6045
6054
|
# @!attribute [rw] username
|
@@ -6439,6 +6448,7 @@ module Aws::DatabaseMigrationService
|
|
6439
6448
|
# allow_major_version_upgrade: false,
|
6440
6449
|
# auto_minor_version_upgrade: false,
|
6441
6450
|
# replication_instance_identifier: "String",
|
6451
|
+
# network_type: "String",
|
6442
6452
|
# }
|
6443
6453
|
#
|
6444
6454
|
# @!attribute [rw] replication_instance_arn
|
@@ -6538,6 +6548,12 @@ module Aws::DatabaseMigrationService
|
|
6538
6548
|
# lowercase string.
|
6539
6549
|
# @return [String]
|
6540
6550
|
#
|
6551
|
+
# @!attribute [rw] network_type
|
6552
|
+
# The type of IP address protocol used by a replication instance, such
|
6553
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
6554
|
+
# addressing. IPv6 only is not yet supported.
|
6555
|
+
# @return [String]
|
6556
|
+
#
|
6541
6557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
|
6542
6558
|
#
|
6543
6559
|
class ModifyReplicationInstanceMessage < Struct.new(
|
@@ -6551,7 +6567,8 @@ module Aws::DatabaseMigrationService
|
|
6551
6567
|
:engine_version,
|
6552
6568
|
:allow_major_version_upgrade,
|
6553
6569
|
:auto_minor_version_upgrade,
|
6554
|
-
:replication_instance_identifier
|
6570
|
+
:replication_instance_identifier,
|
6571
|
+
:network_type)
|
6555
6572
|
SENSITIVE = []
|
6556
6573
|
include Aws::Structure
|
6557
6574
|
end
|
@@ -7364,8 +7381,9 @@ module Aws::DatabaseMigrationService
|
|
7364
7381
|
#
|
7365
7382
|
# @!attribute [rw] archived_logs_only
|
7366
7383
|
# When this field is set to `Y`, DMS only accesses the archived redo
|
7367
|
-
# logs. If the archived redo logs are stored on
|
7368
|
-
# DMS user account needs to be granted ASM
|
7384
|
+
# logs. If the archived redo logs are stored on Automatic Storage
|
7385
|
+
# Management (ASM) only, the DMS user account needs to be granted ASM
|
7386
|
+
# privileges.
|
7369
7387
|
# @return [Boolean]
|
7370
7388
|
#
|
7371
7389
|
# @!attribute [rw] asm_password
|
@@ -7589,9 +7607,9 @@ module Aws::DatabaseMigrationService
|
|
7589
7607
|
# @return [String]
|
7590
7608
|
#
|
7591
7609
|
# @!attribute [rw] secrets_manager_oracle_asm_access_role_arn
|
7592
|
-
# Required only if your Oracle endpoint uses
|
7593
|
-
# (ASM). The full ARN of the IAM role that specifies DMS as
|
7594
|
-
# trusted entity and grants the required permissions to access the
|
7610
|
+
# Required only if your Oracle endpoint uses Automatic Storage
|
7611
|
+
# Management (ASM). The full ARN of the IAM role that specifies DMS as
|
7612
|
+
# the trusted entity and grants the required permissions to access the
|
7595
7613
|
# `SecretsManagerOracleAsmSecret`. This
|
7596
7614
|
# `SecretsManagerOracleAsmSecret` has the secret value that allows
|
7597
7615
|
# access to the Oracle ASM of the endpoint.
|
@@ -7615,8 +7633,8 @@ module Aws::DatabaseMigrationService
|
|
7615
7633
|
# @return [String]
|
7616
7634
|
#
|
7617
7635
|
# @!attribute [rw] secrets_manager_oracle_asm_secret_id
|
7618
|
-
# Required only if your Oracle endpoint uses
|
7619
|
-
# (ASM). The full ARN, partial ARN, or friendly name of the
|
7636
|
+
# Required only if your Oracle endpoint uses Automatic Storage
|
7637
|
+
# Management (ASM). The full ARN, partial ARN, or friendly name of the
|
7620
7638
|
# `SecretsManagerOracleAsmSecret` that contains the Oracle ASM
|
7621
7639
|
# connection details for the Oracle endpoint.
|
7622
7640
|
# @return [String]
|
@@ -8762,6 +8780,10 @@ module Aws::DatabaseMigrationService
|
|
8762
8780
|
# One or more private IP addresses for the replication instance.
|
8763
8781
|
# @return [Array<String>]
|
8764
8782
|
#
|
8783
|
+
# @!attribute [rw] replication_instance_ipv_6_addresses
|
8784
|
+
# One or more IPv6 addresses for the replication instance.
|
8785
|
+
# @return [Array<String>]
|
8786
|
+
#
|
8765
8787
|
# @!attribute [rw] publicly_accessible
|
8766
8788
|
# Specifies the accessibility options for the replication instance. A
|
8767
8789
|
# value of `true` represents an instance with a public IP address. A
|
@@ -8784,6 +8806,12 @@ module Aws::DatabaseMigrationService
|
|
8784
8806
|
# access your on-premise source or target database.
|
8785
8807
|
# @return [String]
|
8786
8808
|
#
|
8809
|
+
# @!attribute [rw] network_type
|
8810
|
+
# The type of IP address protocol used by a replication instance, such
|
8811
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
8812
|
+
# addressing. IPv6 only is not yet supported.
|
8813
|
+
# @return [String]
|
8814
|
+
#
|
8787
8815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
8788
8816
|
#
|
8789
8817
|
class ReplicationInstance < Struct.new(
|
@@ -8806,10 +8834,12 @@ module Aws::DatabaseMigrationService
|
|
8806
8834
|
:replication_instance_private_ip_address,
|
8807
8835
|
:replication_instance_public_ip_addresses,
|
8808
8836
|
:replication_instance_private_ip_addresses,
|
8837
|
+
:replication_instance_ipv_6_addresses,
|
8809
8838
|
:publicly_accessible,
|
8810
8839
|
:secondary_availability_zone,
|
8811
8840
|
:free_until,
|
8812
|
-
:dns_name_servers
|
8841
|
+
:dns_name_servers,
|
8842
|
+
:network_type)
|
8813
8843
|
SENSITIVE = []
|
8814
8844
|
include Aws::Structure
|
8815
8845
|
end
|
@@ -8874,13 +8904,20 @@ module Aws::DatabaseMigrationService
|
|
8874
8904
|
# The engine version number of the replication instance.
|
8875
8905
|
# @return [String]
|
8876
8906
|
#
|
8907
|
+
# @!attribute [rw] network_type
|
8908
|
+
# The type of IP address protocol used by a replication instance, such
|
8909
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
8910
|
+
# addressing. IPv6 only is not yet supported.
|
8911
|
+
# @return [String]
|
8912
|
+
#
|
8877
8913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationPendingModifiedValues AWS API Documentation
|
8878
8914
|
#
|
8879
8915
|
class ReplicationPendingModifiedValues < Struct.new(
|
8880
8916
|
:replication_instance_class,
|
8881
8917
|
:allocated_storage,
|
8882
8918
|
:multi_az,
|
8883
|
-
:engine_version
|
8919
|
+
:engine_version,
|
8920
|
+
:network_type)
|
8884
8921
|
SENSITIVE = []
|
8885
8922
|
include Aws::Structure
|
8886
8923
|
end
|
@@ -8908,6 +8945,13 @@ module Aws::DatabaseMigrationService
|
|
8908
8945
|
# The subnets that are in the subnet group.
|
8909
8946
|
# @return [Array<Types::Subnet>]
|
8910
8947
|
#
|
8948
|
+
# @!attribute [rw] supported_network_types
|
8949
|
+
# The IP addressing protocol supported by the subnet group. This is
|
8950
|
+
# used by a replication instance with values such as IPv4 only or
|
8951
|
+
# Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is
|
8952
|
+
# not yet supported.
|
8953
|
+
# @return [Array<String>]
|
8954
|
+
#
|
8911
8955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationSubnetGroup AWS API Documentation
|
8912
8956
|
#
|
8913
8957
|
class ReplicationSubnetGroup < Struct.new(
|
@@ -8915,7 +8959,8 @@ module Aws::DatabaseMigrationService
|
|
8915
8959
|
:replication_subnet_group_description,
|
8916
8960
|
:vpc_id,
|
8917
8961
|
:subnet_group_status,
|
8918
|
-
:subnets
|
8962
|
+
:subnets,
|
8963
|
+
:supported_network_types)
|
8919
8964
|
SENSITIVE = []
|
8920
8965
|
include Aws::Structure
|
8921
8966
|
end
|
@@ -10134,7 +10179,7 @@ module Aws::DatabaseMigrationService
|
|
10134
10179
|
# @return [Integer]
|
10135
10180
|
#
|
10136
10181
|
# @!attribute [rw] cdc_min_file_size
|
10137
|
-
# Minimum file size, defined in
|
10182
|
+
# Minimum file size, defined in kilobytes, to reach for a file output
|
10138
10183
|
# to Amazon S3.
|
10139
10184
|
#
|
10140
10185
|
# When `CdcMinFileSize` and `CdcMaxBatchInterval` are both specified,
|
@@ -10761,9 +10806,9 @@ module Aws::DatabaseMigrationService
|
|
10761
10806
|
# The database engine name. Valid values, depending on the
|
10762
10807
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
10763
10808
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
10764
|
-
# `"s3"`, `"db2"`, `"
|
10765
|
-
# `"
|
10766
|
-
# `"sqlserver"`, and `"
|
10809
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
10810
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
10811
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
10767
10812
|
# @return [String]
|
10768
10813
|
#
|
10769
10814
|
# @!attribute [rw] supports_cdc
|
@@ -10782,8 +10827,8 @@ module Aws::DatabaseMigrationService
|
|
10782
10827
|
#
|
10783
10828
|
# @!attribute [rw] engine_display_name
|
10784
10829
|
# The expanded name for the engine name. For example, if the
|
10785
|
-
# `EngineName` parameter is "aurora,
|
10786
|
-
# Aurora MySQL.
|
10830
|
+
# `EngineName` parameter is "aurora", this value would be "Amazon
|
10831
|
+
# Aurora MySQL".
|
10787
10832
|
# @return [String]
|
10788
10833
|
#
|
10789
10834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SupportedEndpointType AWS API Documentation
|
@@ -10906,6 +10951,23 @@ module Aws::DatabaseMigrationService
|
|
10906
10951
|
# structure of your tables.
|
10907
10952
|
# @return [Integer]
|
10908
10953
|
#
|
10954
|
+
# @!attribute [rw] applied_inserts
|
10955
|
+
# The number of insert actions applied on a target table.
|
10956
|
+
# @return [Integer]
|
10957
|
+
#
|
10958
|
+
# @!attribute [rw] applied_deletes
|
10959
|
+
# The number of delete actions applied on a target table.
|
10960
|
+
# @return [Integer]
|
10961
|
+
#
|
10962
|
+
# @!attribute [rw] applied_updates
|
10963
|
+
# The number of update actions applied on a target table.
|
10964
|
+
# @return [Integer]
|
10965
|
+
#
|
10966
|
+
# @!attribute [rw] applied_ddls
|
10967
|
+
# The number of data definition language (DDL) statements used to
|
10968
|
+
# build and modify the structure of your tables applied on the target.
|
10969
|
+
# @return [Integer]
|
10970
|
+
#
|
10909
10971
|
# @!attribute [rw] full_load_rows
|
10910
10972
|
# The number of rows added during the full load operation.
|
10911
10973
|
# @return [Integer]
|
@@ -11009,6 +11071,10 @@ module Aws::DatabaseMigrationService
|
|
11009
11071
|
:deletes,
|
11010
11072
|
:updates,
|
11011
11073
|
:ddls,
|
11074
|
+
:applied_inserts,
|
11075
|
+
:applied_deletes,
|
11076
|
+
:applied_updates,
|
11077
|
+
:applied_ddls,
|
11012
11078
|
:full_load_rows,
|
11013
11079
|
:full_load_condtnl_chk_failed_rows,
|
11014
11080
|
:full_load_error_rows,
|
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-databasemigrationservice/types'
|
15
15
|
require_relative 'aws-sdk-databasemigrationservice/client_api'
|
16
|
+
require_relative 'aws-sdk-databasemigrationservice/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-databasemigrationservice/client'
|
17
18
|
require_relative 'aws-sdk-databasemigrationservice/errors'
|
18
19
|
require_relative 'aws-sdk-databasemigrationservice/waiters'
|
19
20
|
require_relative 'aws-sdk-databasemigrationservice/resource'
|
21
|
+
require_relative 'aws-sdk-databasemigrationservice/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-databasemigrationservice/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-databasemigrationservice/endpoints'
|
20
24
|
require_relative 'aws-sdk-databasemigrationservice/customizations'
|
21
25
|
|
22
26
|
# This module provides support for AWS Database Migration Service. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::DatabaseMigrationService
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.74.0'
|
53
57
|
|
54
58
|
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.
|
4
|
+
version: 1.74.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: 2022-
|
11
|
+
date: 2022-11-17 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-databasemigrationservice/client.rb
|
60
60
|
- lib/aws-sdk-databasemigrationservice/client_api.rb
|
61
61
|
- lib/aws-sdk-databasemigrationservice/customizations.rb
|
62
|
+
- lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-databasemigrationservice/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-databasemigrationservice/endpoints.rb
|
62
65
|
- lib/aws-sdk-databasemigrationservice/errors.rb
|
66
|
+
- lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-databasemigrationservice/resource.rb
|
64
68
|
- lib/aws-sdk-databasemigrationservice/types.rb
|
65
69
|
- lib/aws-sdk-databasemigrationservice/waiters.rb
|