aws-sdk-databasemigrationservice 1.132.0 → 1.133.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +358 -9
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +182 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +374 -0
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +101 -2
- data/sig/types.rbs +113 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ef8429e73ac44b259c768077ddcf1e020726449e8efc5a498ff3ae295a43fe9
|
|
4
|
+
data.tar.gz: 45b430f96264dc1532f13d4c0b9bf32b9a8b061d9dfb1b842bf1c784d9cc7cbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93bfa50bbdd2661915017a24d8f3375f1b82daa9102078a520ad06776aeb70f955d7c7dd92356ef79226cc720a3fa9f1d85cee8e55afbe5da32adcfb816ef0ea
|
|
7
|
+
data.tar.gz: 8a13a4d84ad1211dc6dfd620f59b7721779e152d0ea7736b61cc9ba8878829e0743b485acf11ed37a3f170312306a78c9bdb105792a94f1b8b18a608ab3cbd5a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.133.0
|
|
@@ -667,6 +667,84 @@ module Aws::DatabaseMigrationService
|
|
|
667
667
|
req.send_request(options)
|
|
668
668
|
end
|
|
669
669
|
|
|
670
|
+
# Cancels a single metadata model conversion operation that was started
|
|
671
|
+
# with `StartMetadataModelConversion`.
|
|
672
|
+
#
|
|
673
|
+
# @option params [required, String] :migration_project_identifier
|
|
674
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
675
|
+
#
|
|
676
|
+
# @option params [required, String] :request_identifier
|
|
677
|
+
# The identifier for the metadata model conversion operation to cancel.
|
|
678
|
+
# This operation was initiated by StartMetadataModelConversion.
|
|
679
|
+
#
|
|
680
|
+
# @return [Types::CancelMetadataModelConversionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
681
|
+
#
|
|
682
|
+
# * {Types::CancelMetadataModelConversionResponse#request #request} => Types::SchemaConversionRequest
|
|
683
|
+
#
|
|
684
|
+
# @example Request syntax with placeholder values
|
|
685
|
+
#
|
|
686
|
+
# resp = client.cancel_metadata_model_conversion({
|
|
687
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
688
|
+
# request_identifier: "String", # required
|
|
689
|
+
# })
|
|
690
|
+
#
|
|
691
|
+
# @example Response structure
|
|
692
|
+
#
|
|
693
|
+
# resp.request.status #=> String
|
|
694
|
+
# resp.request.request_identifier #=> String
|
|
695
|
+
# resp.request.migration_project_arn #=> String
|
|
696
|
+
# resp.request.error.default_error_details.message #=> String
|
|
697
|
+
# resp.request.export_sql_details.s3_object_key #=> String
|
|
698
|
+
# resp.request.export_sql_details.object_url #=> String
|
|
699
|
+
#
|
|
700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelConversion AWS API Documentation
|
|
701
|
+
#
|
|
702
|
+
# @overload cancel_metadata_model_conversion(params = {})
|
|
703
|
+
# @param [Hash] params ({})
|
|
704
|
+
def cancel_metadata_model_conversion(params = {}, options = {})
|
|
705
|
+
req = build_request(:cancel_metadata_model_conversion, params)
|
|
706
|
+
req.send_request(options)
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
# Cancels a single metadata model creation operation that was started
|
|
710
|
+
# with `StartMetadataModelCreation`.
|
|
711
|
+
#
|
|
712
|
+
# @option params [required, String] :migration_project_identifier
|
|
713
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
714
|
+
#
|
|
715
|
+
# @option params [required, String] :request_identifier
|
|
716
|
+
# The identifier for the metadata model creation operation to cancel.
|
|
717
|
+
# This operation was initiated by `StartMetadataModelCreation`.
|
|
718
|
+
#
|
|
719
|
+
# @return [Types::CancelMetadataModelCreationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
720
|
+
#
|
|
721
|
+
# * {Types::CancelMetadataModelCreationResponse#request #request} => Types::SchemaConversionRequest
|
|
722
|
+
#
|
|
723
|
+
# @example Request syntax with placeholder values
|
|
724
|
+
#
|
|
725
|
+
# resp = client.cancel_metadata_model_creation({
|
|
726
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
727
|
+
# request_identifier: "String", # required
|
|
728
|
+
# })
|
|
729
|
+
#
|
|
730
|
+
# @example Response structure
|
|
731
|
+
#
|
|
732
|
+
# resp.request.status #=> String
|
|
733
|
+
# resp.request.request_identifier #=> String
|
|
734
|
+
# resp.request.migration_project_arn #=> String
|
|
735
|
+
# resp.request.error.default_error_details.message #=> String
|
|
736
|
+
# resp.request.export_sql_details.s3_object_key #=> String
|
|
737
|
+
# resp.request.export_sql_details.object_url #=> String
|
|
738
|
+
#
|
|
739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelCreation AWS API Documentation
|
|
740
|
+
#
|
|
741
|
+
# @overload cancel_metadata_model_creation(params = {})
|
|
742
|
+
# @param [Hash] params ({})
|
|
743
|
+
def cancel_metadata_model_creation(params = {}, options = {})
|
|
744
|
+
req = build_request(:cancel_metadata_model_creation, params)
|
|
745
|
+
req.send_request(options)
|
|
746
|
+
end
|
|
747
|
+
|
|
670
748
|
# Cancels a single premigration assessment run.
|
|
671
749
|
#
|
|
672
750
|
# This operation prevents any individual assessments from running if
|
|
@@ -785,7 +863,7 @@ module Aws::DatabaseMigrationService
|
|
|
785
863
|
# ],
|
|
786
864
|
# target_data_settings: [
|
|
787
865
|
# {
|
|
788
|
-
# table_preparation_mode: "
|
|
866
|
+
# table_preparation_mode: "drop-tables-on-target", # accepts drop-tables-on-target, truncate, do-nothing
|
|
789
867
|
# },
|
|
790
868
|
# ],
|
|
791
869
|
# number_of_jobs: 1,
|
|
@@ -818,7 +896,7 @@ module Aws::DatabaseMigrationService
|
|
|
818
896
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
|
819
897
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
|
820
898
|
# resp.data_migration.target_data_settings #=> Array
|
|
821
|
-
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
899
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
822
900
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
|
823
901
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
|
824
902
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
|
@@ -3556,7 +3634,7 @@ module Aws::DatabaseMigrationService
|
|
|
3556
3634
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
|
3557
3635
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
|
3558
3636
|
# resp.data_migration.target_data_settings #=> Array
|
|
3559
|
-
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
3637
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
3560
3638
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
|
3561
3639
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
|
3562
3640
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
|
@@ -5191,7 +5269,7 @@ module Aws::DatabaseMigrationService
|
|
|
5191
5269
|
# resp.data_migrations[0].source_data_settings[0].cdc_stop_time #=> Time
|
|
5192
5270
|
# resp.data_migrations[0].source_data_settings[0].slot_name #=> String
|
|
5193
5271
|
# resp.data_migrations[0].target_data_settings #=> Array
|
|
5194
|
-
# resp.data_migrations[0].target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
5272
|
+
# resp.data_migrations[0].target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
5195
5273
|
# resp.data_migrations[0].data_migration_statistics.tables_loaded #=> Integer
|
|
5196
5274
|
# resp.data_migrations[0].data_migration_statistics.elapsed_time_millis #=> Integer
|
|
5197
5275
|
# resp.data_migrations[0].data_migration_statistics.tables_loading #=> Integer
|
|
@@ -6841,6 +6919,59 @@ module Aws::DatabaseMigrationService
|
|
|
6841
6919
|
req.send_request(options)
|
|
6842
6920
|
end
|
|
6843
6921
|
|
|
6922
|
+
# Gets detailed information about the specified metadata model,
|
|
6923
|
+
# including its definition and corresponding converted objects in the
|
|
6924
|
+
# target database if applicable.
|
|
6925
|
+
#
|
|
6926
|
+
# @option params [required, String] :selection_rules
|
|
6927
|
+
# The JSON string that specifies which metadata model to retrieve. Only
|
|
6928
|
+
# one selection rule with "rule-action": "explicit" can be provided.
|
|
6929
|
+
# For more information, see [Selection Rules][1] in the DMS User Guide.
|
|
6930
|
+
#
|
|
6931
|
+
#
|
|
6932
|
+
#
|
|
6933
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html
|
|
6934
|
+
#
|
|
6935
|
+
# @option params [required, String] :migration_project_identifier
|
|
6936
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
6937
|
+
#
|
|
6938
|
+
# @option params [required, String] :origin
|
|
6939
|
+
# Specifies whether to retrieve metadata from the source or target tree.
|
|
6940
|
+
# Valid values: SOURCE \| TARGET
|
|
6941
|
+
#
|
|
6942
|
+
# @return [Types::DescribeMetadataModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6943
|
+
#
|
|
6944
|
+
# * {Types::DescribeMetadataModelResponse#metadata_model_name #metadata_model_name} => String
|
|
6945
|
+
# * {Types::DescribeMetadataModelResponse#metadata_model_type #metadata_model_type} => String
|
|
6946
|
+
# * {Types::DescribeMetadataModelResponse#target_metadata_models #target_metadata_models} => Array<Types::MetadataModelReference>
|
|
6947
|
+
# * {Types::DescribeMetadataModelResponse#definition #definition} => String
|
|
6948
|
+
#
|
|
6949
|
+
# @example Request syntax with placeholder values
|
|
6950
|
+
#
|
|
6951
|
+
# resp = client.describe_metadata_model({
|
|
6952
|
+
# selection_rules: "String", # required
|
|
6953
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
6954
|
+
# origin: "SOURCE", # required, accepts SOURCE, TARGET
|
|
6955
|
+
# })
|
|
6956
|
+
#
|
|
6957
|
+
# @example Response structure
|
|
6958
|
+
#
|
|
6959
|
+
# resp.metadata_model_name #=> String
|
|
6960
|
+
# resp.metadata_model_type #=> String
|
|
6961
|
+
# resp.target_metadata_models #=> Array
|
|
6962
|
+
# resp.target_metadata_models[0].metadata_model_name #=> String
|
|
6963
|
+
# resp.target_metadata_models[0].selection_rules #=> String
|
|
6964
|
+
# resp.definition #=> String
|
|
6965
|
+
#
|
|
6966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModel AWS API Documentation
|
|
6967
|
+
#
|
|
6968
|
+
# @overload describe_metadata_model(params = {})
|
|
6969
|
+
# @param [Hash] params ({})
|
|
6970
|
+
def describe_metadata_model(params = {}, options = {})
|
|
6971
|
+
req = build_request(:describe_metadata_model, params)
|
|
6972
|
+
req.send_request(options)
|
|
6973
|
+
end
|
|
6974
|
+
|
|
6844
6975
|
# Returns a paginated list of metadata model assessments for your
|
|
6845
6976
|
# account in the current region.
|
|
6846
6977
|
#
|
|
@@ -6940,6 +7071,71 @@ module Aws::DatabaseMigrationService
|
|
|
6940
7071
|
req.send_request(options)
|
|
6941
7072
|
end
|
|
6942
7073
|
|
|
7074
|
+
# Gets a list of child metadata models for the specified metadata model
|
|
7075
|
+
# in the database hierarchy.
|
|
7076
|
+
#
|
|
7077
|
+
# @option params [required, String] :selection_rules
|
|
7078
|
+
# The JSON string that specifies which metadata model's children to
|
|
7079
|
+
# retrieve. Only one selection rule with "rule-action": "explicit"
|
|
7080
|
+
# can be provided. For more information, see [Selection Rules][1] in the
|
|
7081
|
+
# DMS User Guide.
|
|
7082
|
+
#
|
|
7083
|
+
#
|
|
7084
|
+
#
|
|
7085
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html
|
|
7086
|
+
#
|
|
7087
|
+
# @option params [required, String] :migration_project_identifier
|
|
7088
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
7089
|
+
#
|
|
7090
|
+
# @option params [required, String] :origin
|
|
7091
|
+
# Specifies whether to retrieve metadata from the source or target tree.
|
|
7092
|
+
# Valid values: SOURCE \| TARGET
|
|
7093
|
+
#
|
|
7094
|
+
# @option params [String] :marker
|
|
7095
|
+
# Specifies the unique pagination token that indicates where the next
|
|
7096
|
+
# page should start. If this parameter is specified, the response
|
|
7097
|
+
# includes only records beyond the marker, up to the value specified by
|
|
7098
|
+
# MaxRecords.
|
|
7099
|
+
#
|
|
7100
|
+
# @option params [Integer] :max_records
|
|
7101
|
+
# The maximum number of metadata model children to include in the
|
|
7102
|
+
# response. If more items exist than the specified MaxRecords value, a
|
|
7103
|
+
# marker is included in the response so that the remaining results can
|
|
7104
|
+
# be retrieved.
|
|
7105
|
+
#
|
|
7106
|
+
# @return [Types::DescribeMetadataModelChildrenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7107
|
+
#
|
|
7108
|
+
# * {Types::DescribeMetadataModelChildrenResponse#marker #marker} => String
|
|
7109
|
+
# * {Types::DescribeMetadataModelChildrenResponse#metadata_model_children #metadata_model_children} => Array<Types::MetadataModelReference>
|
|
7110
|
+
#
|
|
7111
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
7112
|
+
#
|
|
7113
|
+
# @example Request syntax with placeholder values
|
|
7114
|
+
#
|
|
7115
|
+
# resp = client.describe_metadata_model_children({
|
|
7116
|
+
# selection_rules: "String", # required
|
|
7117
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
7118
|
+
# origin: "SOURCE", # required, accepts SOURCE, TARGET
|
|
7119
|
+
# marker: "String",
|
|
7120
|
+
# max_records: 1,
|
|
7121
|
+
# })
|
|
7122
|
+
#
|
|
7123
|
+
# @example Response structure
|
|
7124
|
+
#
|
|
7125
|
+
# resp.marker #=> String
|
|
7126
|
+
# resp.metadata_model_children #=> Array
|
|
7127
|
+
# resp.metadata_model_children[0].metadata_model_name #=> String
|
|
7128
|
+
# resp.metadata_model_children[0].selection_rules #=> String
|
|
7129
|
+
#
|
|
7130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelChildren AWS API Documentation
|
|
7131
|
+
#
|
|
7132
|
+
# @overload describe_metadata_model_children(params = {})
|
|
7133
|
+
# @param [Hash] params ({})
|
|
7134
|
+
def describe_metadata_model_children(params = {}, options = {})
|
|
7135
|
+
req = build_request(:describe_metadata_model_children, params)
|
|
7136
|
+
req.send_request(options)
|
|
7137
|
+
end
|
|
7138
|
+
|
|
6943
7139
|
# Returns a paginated list of metadata model conversions for a migration
|
|
6944
7140
|
# project.
|
|
6945
7141
|
#
|
|
@@ -7039,6 +7235,70 @@ module Aws::DatabaseMigrationService
|
|
|
7039
7235
|
req.send_request(options)
|
|
7040
7236
|
end
|
|
7041
7237
|
|
|
7238
|
+
# Returns a paginated list of metadata model creation requests for a
|
|
7239
|
+
# migration project.
|
|
7240
|
+
#
|
|
7241
|
+
# @option params [Array<Types::Filter>] :filters
|
|
7242
|
+
# Filters applied to the metadata model creation requests described in
|
|
7243
|
+
# the form of key-value pairs. The supported filters are request-id and
|
|
7244
|
+
# status.
|
|
7245
|
+
#
|
|
7246
|
+
# @option params [String] :marker
|
|
7247
|
+
# Specifies the unique pagination token that makes it possible to
|
|
7248
|
+
# display the next page of metadata model creation requests. If Marker
|
|
7249
|
+
# is returned by a previous response, there are more metadata model
|
|
7250
|
+
# creation requests available.
|
|
7251
|
+
#
|
|
7252
|
+
# @option params [Integer] :max_records
|
|
7253
|
+
# The maximum number of metadata model creation requests to include in
|
|
7254
|
+
# the response. If more requests exist than the specified MaxRecords
|
|
7255
|
+
# value, a pagination token is provided in the response so that you can
|
|
7256
|
+
# retrieve the remaining results.
|
|
7257
|
+
#
|
|
7258
|
+
# @option params [required, String] :migration_project_identifier
|
|
7259
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
7260
|
+
#
|
|
7261
|
+
# @return [Types::DescribeMetadataModelCreationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7262
|
+
#
|
|
7263
|
+
# * {Types::DescribeMetadataModelCreationsResponse#marker #marker} => String
|
|
7264
|
+
# * {Types::DescribeMetadataModelCreationsResponse#requests #requests} => Array<Types::SchemaConversionRequest>
|
|
7265
|
+
#
|
|
7266
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
7267
|
+
#
|
|
7268
|
+
# @example Request syntax with placeholder values
|
|
7269
|
+
#
|
|
7270
|
+
# resp = client.describe_metadata_model_creations({
|
|
7271
|
+
# filters: [
|
|
7272
|
+
# {
|
|
7273
|
+
# name: "String", # required
|
|
7274
|
+
# values: ["String"], # required
|
|
7275
|
+
# },
|
|
7276
|
+
# ],
|
|
7277
|
+
# marker: "String",
|
|
7278
|
+
# max_records: 1,
|
|
7279
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
7280
|
+
# })
|
|
7281
|
+
#
|
|
7282
|
+
# @example Response structure
|
|
7283
|
+
#
|
|
7284
|
+
# resp.marker #=> String
|
|
7285
|
+
# resp.requests #=> Array
|
|
7286
|
+
# resp.requests[0].status #=> String
|
|
7287
|
+
# resp.requests[0].request_identifier #=> String
|
|
7288
|
+
# resp.requests[0].migration_project_arn #=> String
|
|
7289
|
+
# resp.requests[0].error.default_error_details.message #=> String
|
|
7290
|
+
# resp.requests[0].export_sql_details.s3_object_key #=> String
|
|
7291
|
+
# resp.requests[0].export_sql_details.object_url #=> String
|
|
7292
|
+
#
|
|
7293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelCreations AWS API Documentation
|
|
7294
|
+
#
|
|
7295
|
+
# @overload describe_metadata_model_creations(params = {})
|
|
7296
|
+
# @param [Hash] params ({})
|
|
7297
|
+
def describe_metadata_model_creations(params = {}, options = {})
|
|
7298
|
+
req = build_request(:describe_metadata_model_creations, params)
|
|
7299
|
+
req.send_request(options)
|
|
7300
|
+
end
|
|
7301
|
+
|
|
7042
7302
|
# Returns a paginated list of metadata model exports.
|
|
7043
7303
|
#
|
|
7044
7304
|
# @option params [required, String] :migration_project_identifier
|
|
@@ -8977,6 +9237,42 @@ module Aws::DatabaseMigrationService
|
|
|
8977
9237
|
req.send_request(options)
|
|
8978
9238
|
end
|
|
8979
9239
|
|
|
9240
|
+
# Converts source selection rules into their target counterparts for
|
|
9241
|
+
# schema conversion operations.
|
|
9242
|
+
#
|
|
9243
|
+
# @option params [required, String] :migration_project_identifier
|
|
9244
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
9245
|
+
#
|
|
9246
|
+
# @option params [required, String] :selection_rules
|
|
9247
|
+
# The JSON string representing the source selection rules for
|
|
9248
|
+
# conversion. Selection rules must contain only supported metadata model
|
|
9249
|
+
# types. For more information, see Selection Rules in the DMS User
|
|
9250
|
+
# Guide.
|
|
9251
|
+
#
|
|
9252
|
+
# @return [Types::GetTargetSelectionRulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9253
|
+
#
|
|
9254
|
+
# * {Types::GetTargetSelectionRulesResponse#target_selection_rules #target_selection_rules} => String
|
|
9255
|
+
#
|
|
9256
|
+
# @example Request syntax with placeholder values
|
|
9257
|
+
#
|
|
9258
|
+
# resp = client.get_target_selection_rules({
|
|
9259
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
9260
|
+
# selection_rules: "String", # required
|
|
9261
|
+
# })
|
|
9262
|
+
#
|
|
9263
|
+
# @example Response structure
|
|
9264
|
+
#
|
|
9265
|
+
# resp.target_selection_rules #=> String
|
|
9266
|
+
#
|
|
9267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/GetTargetSelectionRules AWS API Documentation
|
|
9268
|
+
#
|
|
9269
|
+
# @overload get_target_selection_rules(params = {})
|
|
9270
|
+
# @param [Hash] params ({})
|
|
9271
|
+
def get_target_selection_rules(params = {}, options = {})
|
|
9272
|
+
req = build_request(:get_target_selection_rules, params)
|
|
9273
|
+
req.send_request(options)
|
|
9274
|
+
end
|
|
9275
|
+
|
|
8980
9276
|
# Uploads the specified certificate.
|
|
8981
9277
|
#
|
|
8982
9278
|
# @option params [required, String] :certificate_identifier
|
|
@@ -9220,7 +9516,7 @@ module Aws::DatabaseMigrationService
|
|
|
9220
9516
|
# ],
|
|
9221
9517
|
# target_data_settings: [
|
|
9222
9518
|
# {
|
|
9223
|
-
# table_preparation_mode: "
|
|
9519
|
+
# table_preparation_mode: "drop-tables-on-target", # accepts drop-tables-on-target, truncate, do-nothing
|
|
9224
9520
|
# },
|
|
9225
9521
|
# ],
|
|
9226
9522
|
# number_of_jobs: 1,
|
|
@@ -9246,7 +9542,7 @@ module Aws::DatabaseMigrationService
|
|
|
9246
9542
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
|
9247
9543
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
|
9248
9544
|
# resp.data_migration.target_data_settings #=> Array
|
|
9249
|
-
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
9545
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
9250
9546
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
|
9251
9547
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
|
9252
9548
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
|
@@ -11901,7 +12197,7 @@ module Aws::DatabaseMigrationService
|
|
|
11901
12197
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
|
11902
12198
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
|
11903
12199
|
# resp.data_migration.target_data_settings #=> Array
|
|
11904
|
-
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
12200
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
11905
12201
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
|
11906
12202
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
|
11907
12203
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
|
@@ -12073,6 +12369,59 @@ module Aws::DatabaseMigrationService
|
|
|
12073
12369
|
req.send_request(options)
|
|
12074
12370
|
end
|
|
12075
12371
|
|
|
12372
|
+
# Creates source metadata model of the given type with the specified
|
|
12373
|
+
# properties for schema conversion operations.
|
|
12374
|
+
#
|
|
12375
|
+
# <note markdown="1"> This action supports only these directions: from SQL Server to Aurora
|
|
12376
|
+
# PostgreSQL, or from SQL Server to RDS for PostgreSQL.
|
|
12377
|
+
#
|
|
12378
|
+
# </note>
|
|
12379
|
+
#
|
|
12380
|
+
# @option params [required, String] :migration_project_identifier
|
|
12381
|
+
# The migration project name or Amazon Resource Name (ARN).
|
|
12382
|
+
#
|
|
12383
|
+
# @option params [required, String] :selection_rules
|
|
12384
|
+
# The JSON string that specifies the location where the metadata model
|
|
12385
|
+
# will be created. Selection rules must specify a single schema. For
|
|
12386
|
+
# more information, see Selection Rules in the DMS User Guide.
|
|
12387
|
+
#
|
|
12388
|
+
# @option params [required, String] :metadata_model_name
|
|
12389
|
+
# The name of the metadata model.
|
|
12390
|
+
#
|
|
12391
|
+
# @option params [required, Types::MetadataModelProperties] :properties
|
|
12392
|
+
# The properties of metadata model in JSON format. This object is a
|
|
12393
|
+
# Union. Only one member of this object can be specified or returned.
|
|
12394
|
+
#
|
|
12395
|
+
# @return [Types::StartMetadataModelCreationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12396
|
+
#
|
|
12397
|
+
# * {Types::StartMetadataModelCreationResponse#request_identifier #request_identifier} => String
|
|
12398
|
+
#
|
|
12399
|
+
# @example Request syntax with placeholder values
|
|
12400
|
+
#
|
|
12401
|
+
# resp = client.start_metadata_model_creation({
|
|
12402
|
+
# migration_project_identifier: "MigrationProjectIdentifier", # required
|
|
12403
|
+
# selection_rules: "String", # required
|
|
12404
|
+
# metadata_model_name: "String", # required
|
|
12405
|
+
# properties: { # required
|
|
12406
|
+
# statement_properties: {
|
|
12407
|
+
# definition: "String", # required
|
|
12408
|
+
# },
|
|
12409
|
+
# },
|
|
12410
|
+
# })
|
|
12411
|
+
#
|
|
12412
|
+
# @example Response structure
|
|
12413
|
+
#
|
|
12414
|
+
# resp.request_identifier #=> String
|
|
12415
|
+
#
|
|
12416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelCreation AWS API Documentation
|
|
12417
|
+
#
|
|
12418
|
+
# @overload start_metadata_model_creation(params = {})
|
|
12419
|
+
# @param [Hash] params ({})
|
|
12420
|
+
def start_metadata_model_creation(params = {}, options = {})
|
|
12421
|
+
req = build_request(:start_metadata_model_creation, params)
|
|
12422
|
+
req.send_request(options)
|
|
12423
|
+
end
|
|
12424
|
+
|
|
12076
12425
|
# Saves your converted code to a file as a SQL script, and stores this
|
|
12077
12426
|
# file on your Amazon S3 bucket.
|
|
12078
12427
|
#
|
|
@@ -12882,7 +13231,7 @@ module Aws::DatabaseMigrationService
|
|
|
12882
13231
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
|
12883
13232
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
|
12884
13233
|
# resp.data_migration.target_data_settings #=> Array
|
|
12885
|
-
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "
|
|
13234
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "drop-tables-on-target", "truncate", "do-nothing"
|
|
12886
13235
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
|
12887
13236
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
|
12888
13237
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
|
@@ -13194,7 +13543,7 @@ module Aws::DatabaseMigrationService
|
|
|
13194
13543
|
tracer: tracer
|
|
13195
13544
|
)
|
|
13196
13545
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
|
13197
|
-
context[:gem_version] = '1.
|
|
13546
|
+
context[:gem_version] = '1.133.0'
|
|
13198
13547
|
Seahorse::Client::Request.new(handlers, context)
|
|
13199
13548
|
end
|
|
13200
13549
|
|