Skip to content

Commit 9ace666

Browse files
author
AWS
committed
AWS Database Migration Service Update: Added support for tagging in StartReplicationTaskAssessmentRun API and introduced IsLatestTaskAssessmentRun and ResultStatistic fields for enhanced tracking and assessment result statistics.
1 parent cd90e4d commit 9ace666

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Database Migration Service",
4+
"contributor": "",
5+
"description": "Added support for tagging in StartReplicationTaskAssessmentRun API and introduced IsLatestTaskAssessmentRun and ResultStatistic fields for enhanced tracking and assessment result statistics."
6+
}

services/databasemigration/src/main/resources/codegen-resources/service-2.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2937,6 +2937,10 @@
29372937
"shape":"PublicIpAddressList",
29382938
"documentation":"<p>The IP addresses of the endpoints for the data migration.</p>"
29392939
},
2940+
"DataMigrationCidrBlocks":{
2941+
"shape":"DataMigrationCidrBlock",
2942+
"documentation":"<p>The CIDR blocks of the endpoints for the data migration.</p>"
2943+
},
29402944
"LastFailureMessage":{
29412945
"shape":"String",
29422946
"documentation":"<p>Information about the data migration's most recent error or failure.</p>"
@@ -2948,6 +2952,10 @@
29482952
},
29492953
"documentation":"<p>This object provides information about a DMS data migration.</p>"
29502954
},
2955+
"DataMigrationCidrBlock":{
2956+
"type":"list",
2957+
"member":{"shape":"String"}
2958+
},
29512959
"DataMigrationSettings":{
29522960
"type":"structure",
29532961
"members":{
@@ -8907,6 +8915,14 @@
89078915
"AssessmentRunName":{
89088916
"shape":"String",
89098917
"documentation":"<p>Unique name of the assessment run.</p>"
8918+
},
8919+
"IsLatestTaskAssessmentRun":{
8920+
"shape":"Boolean",
8921+
"documentation":"<p>Indicates that the following PreflightAssessmentRun is the latest for the ReplicationTask. The status is either true or false.</p>"
8922+
},
8923+
"ResultStatistic":{
8924+
"shape":"ReplicationTaskAssessmentRunResultStatistic",
8925+
"documentation":"<p> Result statistics for a completed assessment run, showing aggregated statistics of IndividualAssessments for how many assessments were passed, failed, or encountered issues such as errors or warnings. </p>"
89108926
}
89118927
},
89128928
"documentation":"<p>Provides information that describes a premigration assessment run that you have started using the <code>StartReplicationTaskAssessmentRun</code> operation.</p> <p>Some of the information appears based on other operations that can return the <code>ReplicationTaskAssessmentRun</code> object.</p>"
@@ -8929,6 +8945,32 @@
89298945
},
89308946
"documentation":"<p>The progress values reported by the <code>AssessmentProgress</code> response element.</p>"
89318947
},
8948+
"ReplicationTaskAssessmentRunResultStatistic":{
8949+
"type":"structure",
8950+
"members":{
8951+
"Passed":{
8952+
"shape":"Integer",
8953+
"documentation":"<p>The number of individual assessments that successfully passed all checks in the assessment run.</p>"
8954+
},
8955+
"Failed":{
8956+
"shape":"Integer",
8957+
"documentation":"<p>The number of individual assessments that failed to meet the criteria defined in the assessment run.</p>"
8958+
},
8959+
"Error":{
8960+
"shape":"Integer",
8961+
"documentation":"<p>The number of individual assessments that encountered a critical error and could not complete properly.</p>"
8962+
},
8963+
"Warning":{
8964+
"shape":"Integer",
8965+
"documentation":"<p>Indicates that the recent completed AssessmentRun triggered a warning.</p>"
8966+
},
8967+
"Cancelled":{
8968+
"shape":"Integer",
8969+
"documentation":"<p> The number of individual assessments that were cancelled during the assessment run. </p>"
8970+
}
8971+
},
8972+
"documentation":"<p>The object containing the result statistics for a completed assessment run.</p>"
8973+
},
89328974
"ReplicationTaskIndividualAssessment":{
89338975
"type":"structure",
89348976
"members":{
@@ -9813,6 +9855,10 @@
98139855
"Exclude":{
98149856
"shape":"ExcludeTestList",
98159857
"documentation":"<p>Space-separated list of names for specific individual assessments that you want to exclude. These names come from the default list of individual assessments that DMS supports for the associated migration task. This task is specified by <code>ReplicationTaskArn</code>.</p> <note> <p>You can't set a value for <code>Exclude</code> if you also set a value for <code>IncludeOnly</code> in the API operation.</p> <p>To identify the names of the default individual assessments that DMS supports for the associated migration task, run the <code>DescribeApplicableIndividualAssessments</code> operation using its own <code>ReplicationTaskArn</code> request parameter.</p> </note>"
9858+
},
9859+
"Tags":{
9860+
"shape":"TagList",
9861+
"documentation":"<p>One or more tags to be assigned to the premigration assessment run that you want to start.</p>"
98169862
}
98179863
},
98189864
"documentation":"<p/>"

0 commit comments

Comments
 (0)