aws-sdk-databasemigrationservice 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38da58f34a22ca3e6762f70bc9e4a325a8d7931b
|
4
|
+
data.tar.gz: 7183c434f0b7e602b5e599de777293884c66cf83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e88472e6fbe407e0f8f40efb37727dc20a54309ba877686085cf6eedf0d61b2d3cae7d1fc3c0b22544db84553e85822ab553edf38cc08f958c8a774f230d4fc9
|
7
|
+
data.tar.gz: d9650014278be46f82bc7fc0a30f10874b6b42b6cf1ff34caf11bf38e132099a46088154a7fd45ba0ef9d8a48c9f307f4e337eaf42f65c822c9c79642de57e34
|
@@ -224,8 +224,8 @@ module Aws::DatabaseMigrationService
|
|
224
224
|
#
|
225
225
|
# @option params [required, String] :engine_name
|
226
226
|
# The type of engine for the endpoint. Valid values, depending on the
|
227
|
-
# EndPointType, include
|
228
|
-
#
|
227
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
228
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
229
229
|
#
|
230
230
|
# @option params [String] :username
|
231
231
|
# The user name to be used to login to the endpoint database.
|
@@ -2205,6 +2205,58 @@ module Aws::DatabaseMigrationService
|
|
2205
2205
|
req.send_request(options)
|
2206
2206
|
end
|
2207
2207
|
|
2208
|
+
# Returns information about the task logs for the specified task.
|
2209
|
+
#
|
2210
|
+
# @option params [required, String] :replication_instance_arn
|
2211
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
2212
|
+
#
|
2213
|
+
# @option params [Integer] :max_records
|
2214
|
+
# The maximum number of records to include in the response. If more
|
2215
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2216
|
+
# token called a marker is included in the response so that the
|
2217
|
+
# remaining results can be retrieved.
|
2218
|
+
#
|
2219
|
+
# Default: 100
|
2220
|
+
#
|
2221
|
+
# Constraints: Minimum 20, maximum 100.
|
2222
|
+
#
|
2223
|
+
# @option params [String] :marker
|
2224
|
+
# An optional pagination token provided by a previous request. If this
|
2225
|
+
# parameter is specified, the response includes only records beyond the
|
2226
|
+
# marker, up to the value specified by `MaxRecords`.
|
2227
|
+
#
|
2228
|
+
# @return [Types::DescribeReplicationInstanceTaskLogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2229
|
+
#
|
2230
|
+
# * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_arn #replication_instance_arn} => String
|
2231
|
+
# * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_task_logs #replication_instance_task_logs} => Array<Types::ReplicationInstanceTaskLog>
|
2232
|
+
# * {Types::DescribeReplicationInstanceTaskLogsResponse#marker #marker} => String
|
2233
|
+
#
|
2234
|
+
# @example Request syntax with placeholder values
|
2235
|
+
#
|
2236
|
+
# resp = client.describe_replication_instance_task_logs({
|
2237
|
+
# replication_instance_arn: "String", # required
|
2238
|
+
# max_records: 1,
|
2239
|
+
# marker: "String",
|
2240
|
+
# })
|
2241
|
+
#
|
2242
|
+
# @example Response structure
|
2243
|
+
#
|
2244
|
+
# resp.replication_instance_arn #=> String
|
2245
|
+
# resp.replication_instance_task_logs #=> Array
|
2246
|
+
# resp.replication_instance_task_logs[0].replication_task_name #=> String
|
2247
|
+
# resp.replication_instance_task_logs[0].replication_task_arn #=> String
|
2248
|
+
# resp.replication_instance_task_logs[0].replication_instance_task_log_size #=> Integer
|
2249
|
+
# resp.marker #=> String
|
2250
|
+
#
|
2251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstanceTaskLogs AWS API Documentation
|
2252
|
+
#
|
2253
|
+
# @overload describe_replication_instance_task_logs(params = {})
|
2254
|
+
# @param [Hash] params ({})
|
2255
|
+
def describe_replication_instance_task_logs(params = {}, options = {})
|
2256
|
+
req = build_request(:describe_replication_instance_task_logs, params)
|
2257
|
+
req.send_request(options)
|
2258
|
+
end
|
2259
|
+
|
2208
2260
|
# Returns information about replication instances for your account in
|
2209
2261
|
# the current region.
|
2210
2262
|
#
|
@@ -2874,8 +2926,8 @@ module Aws::DatabaseMigrationService
|
|
2874
2926
|
#
|
2875
2927
|
# @option params [String] :engine_name
|
2876
2928
|
# The type of engine for the endpoint. Valid values, depending on the
|
2877
|
-
# EndPointType, include
|
2878
|
-
#
|
2929
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
2930
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
2879
2931
|
#
|
2880
2932
|
# @option params [String] :username
|
2881
2933
|
# The user name to be used to login to the endpoint database.
|
@@ -3489,6 +3541,75 @@ module Aws::DatabaseMigrationService
|
|
3489
3541
|
req.send_request(options)
|
3490
3542
|
end
|
3491
3543
|
|
3544
|
+
# Reboots a replication instance. Rebooting results in a momentary
|
3545
|
+
# outage, until the replication instance becomes available again.
|
3546
|
+
#
|
3547
|
+
# @option params [required, String] :replication_instance_arn
|
3548
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
3549
|
+
#
|
3550
|
+
# @option params [Boolean] :force_failover
|
3551
|
+
# If this parameter is `true`, the reboot is conducted through a
|
3552
|
+
# Multi-AZ failover. (If the instance isn't configured for Multi-AZ,
|
3553
|
+
# then you can't specify `true`.)
|
3554
|
+
#
|
3555
|
+
# @return [Types::RebootReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3556
|
+
#
|
3557
|
+
# * {Types::RebootReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
|
3558
|
+
#
|
3559
|
+
# @example Request syntax with placeholder values
|
3560
|
+
#
|
3561
|
+
# resp = client.reboot_replication_instance({
|
3562
|
+
# replication_instance_arn: "String", # required
|
3563
|
+
# force_failover: false,
|
3564
|
+
# })
|
3565
|
+
#
|
3566
|
+
# @example Response structure
|
3567
|
+
#
|
3568
|
+
# resp.replication_instance.replication_instance_identifier #=> String
|
3569
|
+
# resp.replication_instance.replication_instance_class #=> String
|
3570
|
+
# resp.replication_instance.replication_instance_status #=> String
|
3571
|
+
# resp.replication_instance.allocated_storage #=> Integer
|
3572
|
+
# resp.replication_instance.instance_create_time #=> Time
|
3573
|
+
# resp.replication_instance.vpc_security_groups #=> Array
|
3574
|
+
# resp.replication_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
3575
|
+
# resp.replication_instance.vpc_security_groups[0].status #=> String
|
3576
|
+
# resp.replication_instance.availability_zone #=> String
|
3577
|
+
# resp.replication_instance.replication_subnet_group.replication_subnet_group_identifier #=> String
|
3578
|
+
# resp.replication_instance.replication_subnet_group.replication_subnet_group_description #=> String
|
3579
|
+
# resp.replication_instance.replication_subnet_group.vpc_id #=> String
|
3580
|
+
# resp.replication_instance.replication_subnet_group.subnet_group_status #=> String
|
3581
|
+
# resp.replication_instance.replication_subnet_group.subnets #=> Array
|
3582
|
+
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
3583
|
+
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
3584
|
+
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_status #=> String
|
3585
|
+
# resp.replication_instance.preferred_maintenance_window #=> String
|
3586
|
+
# resp.replication_instance.pending_modified_values.replication_instance_class #=> String
|
3587
|
+
# resp.replication_instance.pending_modified_values.allocated_storage #=> Integer
|
3588
|
+
# resp.replication_instance.pending_modified_values.multi_az #=> Boolean
|
3589
|
+
# resp.replication_instance.pending_modified_values.engine_version #=> String
|
3590
|
+
# resp.replication_instance.multi_az #=> Boolean
|
3591
|
+
# resp.replication_instance.engine_version #=> String
|
3592
|
+
# resp.replication_instance.auto_minor_version_upgrade #=> Boolean
|
3593
|
+
# resp.replication_instance.kms_key_id #=> String
|
3594
|
+
# resp.replication_instance.replication_instance_arn #=> String
|
3595
|
+
# resp.replication_instance.replication_instance_public_ip_address #=> String
|
3596
|
+
# resp.replication_instance.replication_instance_private_ip_address #=> String
|
3597
|
+
# resp.replication_instance.replication_instance_public_ip_addresses #=> Array
|
3598
|
+
# resp.replication_instance.replication_instance_public_ip_addresses[0] #=> String
|
3599
|
+
# resp.replication_instance.replication_instance_private_ip_addresses #=> Array
|
3600
|
+
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
3601
|
+
# resp.replication_instance.publicly_accessible #=> Boolean
|
3602
|
+
# resp.replication_instance.secondary_availability_zone #=> String
|
3603
|
+
#
|
3604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
|
3605
|
+
#
|
3606
|
+
# @overload reboot_replication_instance(params = {})
|
3607
|
+
# @param [Hash] params ({})
|
3608
|
+
def reboot_replication_instance(params = {}, options = {})
|
3609
|
+
req = build_request(:reboot_replication_instance, params)
|
3610
|
+
req.send_request(options)
|
3611
|
+
end
|
3612
|
+
|
3492
3613
|
# Populates the schema for the specified endpoint. This is an
|
3493
3614
|
# asynchronous operation and can take several minutes. You can check the
|
3494
3615
|
# status of this operation by calling the DescribeRefreshSchemasStatus
|
@@ -3899,7 +4020,7 @@ module Aws::DatabaseMigrationService
|
|
3899
4020
|
params: params,
|
3900
4021
|
config: config)
|
3901
4022
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
3902
|
-
context[:gem_version] = '1.
|
4023
|
+
context[:gem_version] = '1.4.0'
|
3903
4024
|
Seahorse::Client::Request.new(handlers, context)
|
3904
4025
|
end
|
3905
4026
|
|
@@ -69,6 +69,8 @@ module Aws::DatabaseMigrationService
|
|
69
69
|
DescribeOrderableReplicationInstancesResponse = Shapes::StructureShape.new(name: 'DescribeOrderableReplicationInstancesResponse')
|
70
70
|
DescribeRefreshSchemasStatusMessage = Shapes::StructureShape.new(name: 'DescribeRefreshSchemasStatusMessage')
|
71
71
|
DescribeRefreshSchemasStatusResponse = Shapes::StructureShape.new(name: 'DescribeRefreshSchemasStatusResponse')
|
72
|
+
DescribeReplicationInstanceTaskLogsMessage = Shapes::StructureShape.new(name: 'DescribeReplicationInstanceTaskLogsMessage')
|
73
|
+
DescribeReplicationInstanceTaskLogsResponse = Shapes::StructureShape.new(name: 'DescribeReplicationInstanceTaskLogsResponse')
|
72
74
|
DescribeReplicationInstancesMessage = Shapes::StructureShape.new(name: 'DescribeReplicationInstancesMessage')
|
73
75
|
DescribeReplicationInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReplicationInstancesResponse')
|
74
76
|
DescribeReplicationSubnetGroupsMessage = Shapes::StructureShape.new(name: 'DescribeReplicationSubnetGroupsMessage')
|
@@ -124,6 +126,8 @@ module Aws::DatabaseMigrationService
|
|
124
126
|
NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
|
125
127
|
OrderableReplicationInstance = Shapes::StructureShape.new(name: 'OrderableReplicationInstance')
|
126
128
|
OrderableReplicationInstanceList = Shapes::ListShape.new(name: 'OrderableReplicationInstanceList')
|
129
|
+
RebootReplicationInstanceMessage = Shapes::StructureShape.new(name: 'RebootReplicationInstanceMessage')
|
130
|
+
RebootReplicationInstanceResponse = Shapes::StructureShape.new(name: 'RebootReplicationInstanceResponse')
|
127
131
|
RefreshSchemasMessage = Shapes::StructureShape.new(name: 'RefreshSchemasMessage')
|
128
132
|
RefreshSchemasResponse = Shapes::StructureShape.new(name: 'RefreshSchemasResponse')
|
129
133
|
RefreshSchemasStatus = Shapes::StructureShape.new(name: 'RefreshSchemasStatus')
|
@@ -137,6 +141,8 @@ module Aws::DatabaseMigrationService
|
|
137
141
|
ReplicationInstanceList = Shapes::ListShape.new(name: 'ReplicationInstanceList')
|
138
142
|
ReplicationInstancePrivateIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePrivateIpAddressList')
|
139
143
|
ReplicationInstancePublicIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePublicIpAddressList')
|
144
|
+
ReplicationInstanceTaskLog = Shapes::StructureShape.new(name: 'ReplicationInstanceTaskLog')
|
145
|
+
ReplicationInstanceTaskLogsList = Shapes::ListShape.new(name: 'ReplicationInstanceTaskLogsList')
|
140
146
|
ReplicationPendingModifiedValues = Shapes::StructureShape.new(name: 'ReplicationPendingModifiedValues')
|
141
147
|
ReplicationSubnetGroup = Shapes::StructureShape.new(name: 'ReplicationSubnetGroup')
|
142
148
|
ReplicationSubnetGroupDoesNotCoverEnoughAZs = Shapes::StructureShape.new(name: 'ReplicationSubnetGroupDoesNotCoverEnoughAZs')
|
@@ -421,6 +427,16 @@ module Aws::DatabaseMigrationService
|
|
421
427
|
DescribeRefreshSchemasStatusResponse.add_member(:refresh_schemas_status, Shapes::ShapeRef.new(shape: RefreshSchemasStatus, location_name: "RefreshSchemasStatus"))
|
422
428
|
DescribeRefreshSchemasStatusResponse.struct_class = Types::DescribeRefreshSchemasStatusResponse
|
423
429
|
|
430
|
+
DescribeReplicationInstanceTaskLogsMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
|
431
|
+
DescribeReplicationInstanceTaskLogsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
432
|
+
DescribeReplicationInstanceTaskLogsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
433
|
+
DescribeReplicationInstanceTaskLogsMessage.struct_class = Types::DescribeReplicationInstanceTaskLogsMessage
|
434
|
+
|
435
|
+
DescribeReplicationInstanceTaskLogsResponse.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceArn"))
|
436
|
+
DescribeReplicationInstanceTaskLogsResponse.add_member(:replication_instance_task_logs, Shapes::ShapeRef.new(shape: ReplicationInstanceTaskLogsList, location_name: "ReplicationInstanceTaskLogs"))
|
437
|
+
DescribeReplicationInstanceTaskLogsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
438
|
+
DescribeReplicationInstanceTaskLogsResponse.struct_class = Types::DescribeReplicationInstanceTaskLogsResponse
|
439
|
+
|
424
440
|
DescribeReplicationInstancesMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
425
441
|
DescribeReplicationInstancesMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
426
442
|
DescribeReplicationInstancesMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -646,6 +662,13 @@ module Aws::DatabaseMigrationService
|
|
646
662
|
|
647
663
|
OrderableReplicationInstanceList.member = Shapes::ShapeRef.new(shape: OrderableReplicationInstance)
|
648
664
|
|
665
|
+
RebootReplicationInstanceMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
|
666
|
+
RebootReplicationInstanceMessage.add_member(:force_failover, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ForceFailover"))
|
667
|
+
RebootReplicationInstanceMessage.struct_class = Types::RebootReplicationInstanceMessage
|
668
|
+
|
669
|
+
RebootReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
|
670
|
+
RebootReplicationInstanceResponse.struct_class = Types::RebootReplicationInstanceResponse
|
671
|
+
|
649
672
|
RefreshSchemasMessage.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointArn"))
|
650
673
|
RefreshSchemasMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
|
651
674
|
RefreshSchemasMessage.struct_class = Types::RefreshSchemasMessage
|
@@ -702,6 +725,13 @@ module Aws::DatabaseMigrationService
|
|
702
725
|
|
703
726
|
ReplicationInstancePublicIpAddressList.member = Shapes::ShapeRef.new(shape: String)
|
704
727
|
|
728
|
+
ReplicationInstanceTaskLog.add_member(:replication_task_name, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskName"))
|
729
|
+
ReplicationInstanceTaskLog.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
730
|
+
ReplicationInstanceTaskLog.add_member(:replication_instance_task_log_size, Shapes::ShapeRef.new(shape: Long, location_name: "ReplicationInstanceTaskLogSize"))
|
731
|
+
ReplicationInstanceTaskLog.struct_class = Types::ReplicationInstanceTaskLog
|
732
|
+
|
733
|
+
ReplicationInstanceTaskLogsList.member = Shapes::ShapeRef.new(shape: ReplicationInstanceTaskLog)
|
734
|
+
|
705
735
|
ReplicationPendingModifiedValues.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
|
706
736
|
ReplicationPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
707
737
|
ReplicationPendingModifiedValues.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
|
@@ -1134,6 +1164,22 @@ module Aws::DatabaseMigrationService
|
|
1134
1164
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1135
1165
|
end)
|
1136
1166
|
|
1167
|
+
api.add_operation(:describe_replication_instance_task_logs, Seahorse::Model::Operation.new.tap do |o|
|
1168
|
+
o.name = "DescribeReplicationInstanceTaskLogs"
|
1169
|
+
o.http_method = "POST"
|
1170
|
+
o.http_request_uri = "/"
|
1171
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeReplicationInstanceTaskLogsMessage)
|
1172
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeReplicationInstanceTaskLogsResponse)
|
1173
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1174
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
1175
|
+
o[:pager] = Aws::Pager.new(
|
1176
|
+
limit_key: "max_records",
|
1177
|
+
tokens: {
|
1178
|
+
"marker" => "marker"
|
1179
|
+
}
|
1180
|
+
)
|
1181
|
+
end)
|
1182
|
+
|
1137
1183
|
api.add_operation(:describe_replication_instances, Seahorse::Model::Operation.new.tap do |o|
|
1138
1184
|
o.name = "DescribeReplicationInstances"
|
1139
1185
|
o.http_method = "POST"
|
@@ -1234,6 +1280,7 @@ module Aws::DatabaseMigrationService
|
|
1234
1280
|
o.output = Shapes::ShapeRef.new(shape: ImportCertificateResponse)
|
1235
1281
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsFault)
|
1236
1282
|
o.errors << Shapes::ShapeRef.new(shape: InvalidCertificateFault)
|
1283
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceQuotaExceededFault)
|
1237
1284
|
end)
|
1238
1285
|
|
1239
1286
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1310,6 +1357,16 @@ module Aws::DatabaseMigrationService
|
|
1310
1357
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
1311
1358
|
end)
|
1312
1359
|
|
1360
|
+
api.add_operation(:reboot_replication_instance, Seahorse::Model::Operation.new.tap do |o|
|
1361
|
+
o.name = "RebootReplicationInstance"
|
1362
|
+
o.http_method = "POST"
|
1363
|
+
o.http_request_uri = "/"
|
1364
|
+
o.input = Shapes::ShapeRef.new(shape: RebootReplicationInstanceMessage)
|
1365
|
+
o.output = Shapes::ShapeRef.new(shape: RebootReplicationInstanceResponse)
|
1366
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1367
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
1368
|
+
end)
|
1369
|
+
|
1313
1370
|
api.add_operation(:refresh_schemas, Seahorse::Model::Operation.new.tap do |o|
|
1314
1371
|
o.name = "RefreshSchemas"
|
1315
1372
|
o.http_method = "POST"
|
@@ -240,8 +240,8 @@ module Aws::DatabaseMigrationService
|
|
240
240
|
#
|
241
241
|
# @!attribute [rw] engine_name
|
242
242
|
# The type of engine for the endpoint. Valid values, depending on the
|
243
|
-
# EndPointType, include
|
244
|
-
#
|
243
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
244
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
245
245
|
# @return [String]
|
246
246
|
#
|
247
247
|
# @!attribute [rw] username
|
@@ -1503,6 +1503,70 @@ module Aws::DatabaseMigrationService
|
|
1503
1503
|
include Aws::Structure
|
1504
1504
|
end
|
1505
1505
|
|
1506
|
+
# @note When making an API call, you may pass DescribeReplicationInstanceTaskLogsMessage
|
1507
|
+
# data as a hash:
|
1508
|
+
#
|
1509
|
+
# {
|
1510
|
+
# replication_instance_arn: "String", # required
|
1511
|
+
# max_records: 1,
|
1512
|
+
# marker: "String",
|
1513
|
+
# }
|
1514
|
+
#
|
1515
|
+
# @!attribute [rw] replication_instance_arn
|
1516
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
1517
|
+
# @return [String]
|
1518
|
+
#
|
1519
|
+
# @!attribute [rw] max_records
|
1520
|
+
# The maximum number of records to include in the response. If more
|
1521
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
1522
|
+
# token called a marker is included in the response so that the
|
1523
|
+
# remaining results can be retrieved.
|
1524
|
+
#
|
1525
|
+
# Default: 100
|
1526
|
+
#
|
1527
|
+
# Constraints: Minimum 20, maximum 100.
|
1528
|
+
# @return [Integer]
|
1529
|
+
#
|
1530
|
+
# @!attribute [rw] marker
|
1531
|
+
# An optional pagination token provided by a previous request. If this
|
1532
|
+
# parameter is specified, the response includes only records beyond
|
1533
|
+
# the marker, up to the value specified by `MaxRecords`.
|
1534
|
+
# @return [String]
|
1535
|
+
#
|
1536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstanceTaskLogsMessage AWS API Documentation
|
1537
|
+
#
|
1538
|
+
class DescribeReplicationInstanceTaskLogsMessage < Struct.new(
|
1539
|
+
:replication_instance_arn,
|
1540
|
+
:max_records,
|
1541
|
+
:marker)
|
1542
|
+
include Aws::Structure
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
# @!attribute [rw] replication_instance_arn
|
1546
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
1547
|
+
# @return [String]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] replication_instance_task_logs
|
1550
|
+
# An array of replication task log metadata. Each member of the array
|
1551
|
+
# contains the replication task name, ARN, and task log size (in
|
1552
|
+
# bytes).
|
1553
|
+
# @return [Array<Types::ReplicationInstanceTaskLog>]
|
1554
|
+
#
|
1555
|
+
# @!attribute [rw] marker
|
1556
|
+
# An optional pagination token provided by a previous request. If this
|
1557
|
+
# parameter is specified, the response includes only records beyond
|
1558
|
+
# the marker, up to the value specified by `MaxRecords`.
|
1559
|
+
# @return [String]
|
1560
|
+
#
|
1561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstanceTaskLogsResponse AWS API Documentation
|
1562
|
+
#
|
1563
|
+
class DescribeReplicationInstanceTaskLogsResponse < Struct.new(
|
1564
|
+
:replication_instance_arn,
|
1565
|
+
:replication_instance_task_logs,
|
1566
|
+
:marker)
|
1567
|
+
include Aws::Structure
|
1568
|
+
end
|
1569
|
+
|
1506
1570
|
# @note When making an API call, you may pass DescribeReplicationInstancesMessage
|
1507
1571
|
# data as a hash:
|
1508
1572
|
#
|
@@ -1927,8 +1991,8 @@ module Aws::DatabaseMigrationService
|
|
1927
1991
|
#
|
1928
1992
|
# @!attribute [rw] engine_name
|
1929
1993
|
# The database engine name. Valid values, depending on the
|
1930
|
-
# EndPointType, include
|
1931
|
-
#
|
1994
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
1995
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
1932
1996
|
# @return [String]
|
1933
1997
|
#
|
1934
1998
|
# @!attribute [rw] username
|
@@ -2317,8 +2381,8 @@ module Aws::DatabaseMigrationService
|
|
2317
2381
|
#
|
2318
2382
|
# @!attribute [rw] engine_name
|
2319
2383
|
# The type of engine for the endpoint. Valid values, depending on the
|
2320
|
-
# EndPointType, include
|
2321
|
-
#
|
2384
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
2385
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
2322
2386
|
# @return [String]
|
2323
2387
|
#
|
2324
2388
|
# @!attribute [rw] username
|
@@ -2886,6 +2950,43 @@ module Aws::DatabaseMigrationService
|
|
2886
2950
|
include Aws::Structure
|
2887
2951
|
end
|
2888
2952
|
|
2953
|
+
# @note When making an API call, you may pass RebootReplicationInstanceMessage
|
2954
|
+
# data as a hash:
|
2955
|
+
#
|
2956
|
+
# {
|
2957
|
+
# replication_instance_arn: "String", # required
|
2958
|
+
# force_failover: false,
|
2959
|
+
# }
|
2960
|
+
#
|
2961
|
+
# @!attribute [rw] replication_instance_arn
|
2962
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
2963
|
+
# @return [String]
|
2964
|
+
#
|
2965
|
+
# @!attribute [rw] force_failover
|
2966
|
+
# If this parameter is `true`, the reboot is conducted through a
|
2967
|
+
# Multi-AZ failover. (If the instance isn't configured for Multi-AZ,
|
2968
|
+
# then you can't specify `true`.)
|
2969
|
+
# @return [Boolean]
|
2970
|
+
#
|
2971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstanceMessage AWS API Documentation
|
2972
|
+
#
|
2973
|
+
class RebootReplicationInstanceMessage < Struct.new(
|
2974
|
+
:replication_instance_arn,
|
2975
|
+
:force_failover)
|
2976
|
+
include Aws::Structure
|
2977
|
+
end
|
2978
|
+
|
2979
|
+
# @!attribute [rw] replication_instance
|
2980
|
+
# The replication instance that is being rebooted.
|
2981
|
+
# @return [Types::ReplicationInstance]
|
2982
|
+
#
|
2983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstanceResponse AWS API Documentation
|
2984
|
+
#
|
2985
|
+
class RebootReplicationInstanceResponse < Struct.new(
|
2986
|
+
:replication_instance)
|
2987
|
+
include Aws::Structure
|
2988
|
+
end
|
2989
|
+
|
2889
2990
|
# @note When making an API call, you may pass RefreshSchemasMessage
|
2890
2991
|
# data as a hash:
|
2891
2992
|
#
|
@@ -3162,6 +3263,29 @@ module Aws::DatabaseMigrationService
|
|
3162
3263
|
include Aws::Structure
|
3163
3264
|
end
|
3164
3265
|
|
3266
|
+
# Contains metadata for a replication instance task log.
|
3267
|
+
#
|
3268
|
+
# @!attribute [rw] replication_task_name
|
3269
|
+
# The name of the replication task.
|
3270
|
+
# @return [String]
|
3271
|
+
#
|
3272
|
+
# @!attribute [rw] replication_task_arn
|
3273
|
+
# The Amazon Resource Name (ARN) of the replication task.
|
3274
|
+
# @return [String]
|
3275
|
+
#
|
3276
|
+
# @!attribute [rw] replication_instance_task_log_size
|
3277
|
+
# The size, in bytes, of the replication task log.
|
3278
|
+
# @return [Integer]
|
3279
|
+
#
|
3280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstanceTaskLog AWS API Documentation
|
3281
|
+
#
|
3282
|
+
class ReplicationInstanceTaskLog < Struct.new(
|
3283
|
+
:replication_task_name,
|
3284
|
+
:replication_task_arn,
|
3285
|
+
:replication_instance_task_log_size)
|
3286
|
+
include Aws::Structure
|
3287
|
+
end
|
3288
|
+
|
3165
3289
|
# @!attribute [rw] replication_instance_class
|
3166
3290
|
# The compute and memory capacity of the replication instance.
|
3167
3291
|
#
|
@@ -3578,8 +3702,8 @@ module Aws::DatabaseMigrationService
|
|
3578
3702
|
|
3579
3703
|
# @!attribute [rw] engine_name
|
3580
3704
|
# The database engine name. Valid values, depending on the
|
3581
|
-
# EndPointType, include
|
3582
|
-
#
|
3705
|
+
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
3706
|
+
# redshift, S3, sybase, dynamodb, mongodb, and sqlserver.
|
3583
3707
|
# @return [String]
|
3584
3708
|
#
|
3585
3709
|
# @!attribute [rw] supports_cdc
|
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.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|