aws-sdk-databasemigrationservice 1.1.0 → 1.2.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: 6714d48430c56200b55e5b4798eb7798739e645b
|
4
|
+
data.tar.gz: 9126264db576b1717d2a9a45f41eb63f3c08e352
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78771ff76378c2c984fdc6fed186e9bd1b54e4003aaeba7fe5257e68dcf3c053f8fb343444e06420970c3497a4bc60ddb903367578b536119dfd02ab7c7355d7
|
7
|
+
data.tar.gz: 8f0fd4cc77b9e262effaa0a1be658cbfb95136f3f631314340bed1086b4439dc26f353504839cd6f9e9d61cca50e5f12208871d36788d4fb6a393fb695c034c1
|
@@ -2580,6 +2580,10 @@ module Aws::DatabaseMigrationService
|
|
2580
2580
|
# Returns table statistics on the database migration task, including
|
2581
2581
|
# table name, rows inserted, rows updated, and rows deleted.
|
2582
2582
|
#
|
2583
|
+
# Note that the "last updated" column the DMS console only indicates
|
2584
|
+
# the time that AWS DMS last updated the table statistics record for a
|
2585
|
+
# table. It does not indicate the time of the last update to the table.
|
2586
|
+
#
|
2583
2587
|
# @option params [required, String] :replication_task_arn
|
2584
2588
|
# The Amazon Resource Name (ARN) of the replication task.
|
2585
2589
|
#
|
@@ -2591,13 +2595,21 @@ module Aws::DatabaseMigrationService
|
|
2591
2595
|
#
|
2592
2596
|
# Default: 100
|
2593
2597
|
#
|
2594
|
-
# Constraints: Minimum 20, maximum
|
2598
|
+
# Constraints: Minimum 20, maximum 500.
|
2595
2599
|
#
|
2596
2600
|
# @option params [String] :marker
|
2597
2601
|
# An optional pagination token provided by a previous request. If this
|
2598
2602
|
# parameter is specified, the response includes only records beyond the
|
2599
2603
|
# marker, up to the value specified by `MaxRecords`.
|
2600
2604
|
#
|
2605
|
+
# @option params [Array<Types::Filter>] :filters
|
2606
|
+
# Filters applied to the describe table statistics action.
|
2607
|
+
#
|
2608
|
+
# Valid filter names: schema-name \| table-name \| table-state
|
2609
|
+
#
|
2610
|
+
# A combination of filters creates an AND condition where each record
|
2611
|
+
# matches all specified filters.
|
2612
|
+
#
|
2601
2613
|
# @return [Types::DescribeTableStatisticsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2602
2614
|
#
|
2603
2615
|
# * {Types::DescribeTableStatisticsResponse#replication_task_arn #replication_task_arn} => String
|
@@ -2630,6 +2642,12 @@ module Aws::DatabaseMigrationService
|
|
2630
2642
|
# replication_task_arn: "String", # required
|
2631
2643
|
# max_records: 1,
|
2632
2644
|
# marker: "String",
|
2645
|
+
# filters: [
|
2646
|
+
# {
|
2647
|
+
# name: "String", # required
|
2648
|
+
# values: ["String"], # required
|
2649
|
+
# },
|
2650
|
+
# ],
|
2633
2651
|
# })
|
2634
2652
|
#
|
2635
2653
|
# @example Response structure
|
@@ -2811,7 +2829,8 @@ module Aws::DatabaseMigrationService
|
|
2811
2829
|
# The name of the endpoint database.
|
2812
2830
|
#
|
2813
2831
|
# @option params [String] :extra_connection_attributes
|
2814
|
-
# Additional attributes associated with the connection.
|
2832
|
+
# Additional attributes associated with the connection. To reset this
|
2833
|
+
# parameter, pass the empty string ("") as an argument.
|
2815
2834
|
#
|
2816
2835
|
# @option params [String] :certificate_arn
|
2817
2836
|
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
@@ -3770,7 +3789,7 @@ module Aws::DatabaseMigrationService
|
|
3770
3789
|
params: params,
|
3771
3790
|
config: config)
|
3772
3791
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
3773
|
-
context[:gem_version] = '1.
|
3792
|
+
context[:gem_version] = '1.2.0'
|
3774
3793
|
Seahorse::Client::Request.new(handlers, context)
|
3775
3794
|
end
|
3776
3795
|
|
@@ -454,6 +454,7 @@ module Aws::DatabaseMigrationService
|
|
454
454
|
DescribeTableStatisticsMessage.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationTaskArn"))
|
455
455
|
DescribeTableStatisticsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
456
456
|
DescribeTableStatisticsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
457
|
+
DescribeTableStatisticsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
457
458
|
DescribeTableStatisticsMessage.struct_class = Types::DescribeTableStatisticsMessage
|
458
459
|
|
459
460
|
DescribeTableStatisticsResponse.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
@@ -1761,6 +1761,12 @@ module Aws::DatabaseMigrationService
|
|
1761
1761
|
# replication_task_arn: "String", # required
|
1762
1762
|
# max_records: 1,
|
1763
1763
|
# marker: "String",
|
1764
|
+
# filters: [
|
1765
|
+
# {
|
1766
|
+
# name: "String", # required
|
1767
|
+
# values: ["String"], # required
|
1768
|
+
# },
|
1769
|
+
# ],
|
1764
1770
|
# }
|
1765
1771
|
#
|
1766
1772
|
# @!attribute [rw] replication_task_arn
|
@@ -1775,7 +1781,7 @@ module Aws::DatabaseMigrationService
|
|
1775
1781
|
#
|
1776
1782
|
# Default: 100
|
1777
1783
|
#
|
1778
|
-
# Constraints: Minimum 20, maximum
|
1784
|
+
# Constraints: Minimum 20, maximum 500.
|
1779
1785
|
# @return [Integer]
|
1780
1786
|
#
|
1781
1787
|
# @!attribute [rw] marker
|
@@ -1784,12 +1790,22 @@ module Aws::DatabaseMigrationService
|
|
1784
1790
|
# the marker, up to the value specified by `MaxRecords`.
|
1785
1791
|
# @return [String]
|
1786
1792
|
#
|
1793
|
+
# @!attribute [rw] filters
|
1794
|
+
# Filters applied to the describe table statistics action.
|
1795
|
+
#
|
1796
|
+
# Valid filter names: schema-name \| table-name \| table-state
|
1797
|
+
#
|
1798
|
+
# A combination of filters creates an AND condition where each record
|
1799
|
+
# matches all specified filters.
|
1800
|
+
# @return [Array<Types::Filter>]
|
1801
|
+
#
|
1787
1802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatisticsMessage AWS API Documentation
|
1788
1803
|
#
|
1789
1804
|
class DescribeTableStatisticsMessage < Struct.new(
|
1790
1805
|
:replication_task_arn,
|
1791
1806
|
:max_records,
|
1792
|
-
:marker
|
1807
|
+
:marker,
|
1808
|
+
:filters)
|
1793
1809
|
include Aws::Structure
|
1794
1810
|
end
|
1795
1811
|
|
@@ -2261,7 +2277,8 @@ module Aws::DatabaseMigrationService
|
|
2261
2277
|
# @return [String]
|
2262
2278
|
#
|
2263
2279
|
# @!attribute [rw] extra_connection_attributes
|
2264
|
-
# Additional attributes associated with the connection.
|
2280
|
+
# Additional attributes associated with the connection. To reset this
|
2281
|
+
# parameter, pass the empty string ("") as an argument.
|
2265
2282
|
# @return [String]
|
2266
2283
|
#
|
2267
2284
|
# @!attribute [rw] certificate_arn
|
@@ -3489,7 +3506,11 @@ module Aws::DatabaseMigrationService
|
|
3489
3506
|
# @return [Time]
|
3490
3507
|
#
|
3491
3508
|
# @!attribute [rw] table_state
|
3492
|
-
# The state of the
|
3509
|
+
# The state of the tables described.
|
3510
|
+
#
|
3511
|
+
# Valid states: Table does not exist \| Before load \| Full load \|
|
3512
|
+
# Table completed \| Table cancelled \| Table error \| Table all \|
|
3513
|
+
# Table updates \| Table is being reloaded
|
3493
3514
|
# @return [String]
|
3494
3515
|
#
|
3495
3516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TableStatistics AWS API Documentation
|
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.2.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: 2017-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|