diff --git a/specification/storagemover/StorageMover.Management/models.tsp b/specification/storagemover/StorageMover.Management/models.tsp index 85d850e03035..1b32a6894f7e 100644 --- a/specification/storagemover/StorageMover.Management/models.tsp +++ b/specification/storagemover/StorageMover.Management/models.tsp @@ -879,6 +879,12 @@ model JobDefinitionUpdateProperties { */ @added(Versions.v2025_08_01) connections?: Azure.Core.armResourceIdentifier[]; + + /** + * Data Integrity Validation mode. + */ + @added(Versions.v2025_08_01) + dataIntegrityValidation?: DataIntegrityValidation; } /** diff --git a/specification/storagemover/resource-manager/Microsoft.StorageMover/stable/2025-08-01/storagemover.json b/specification/storagemover/resource-manager/Microsoft.StorageMover/stable/2025-08-01/storagemover.json index b2888822cbbd..82141faa2cd6 100644 --- a/specification/storagemover/resource-manager/Microsoft.StorageMover/stable/2025-08-01/storagemover.json +++ b/specification/storagemover/resource-manager/Microsoft.StorageMover/stable/2025-08-01/storagemover.json @@ -2779,6 +2779,33 @@ "type" ] }, + "DataIntegrityValidation": { + "type": "string", + "description": "The Data integrity validation mode.", + "enum": [ + "SaveVerifyFileMD5", + "SaveFileMD5", + "None" + ], + "x-ms-enum": { + "name": "DataIntegrityValidation", + "modelAsString": true, + "values": [ + { + "name": "SaveVerifyFileMD5", + "value": "SaveVerifyFileMD5" + }, + { + "name": "SaveFileMD5", + "value": "SaveFileMD5" + }, + { + "name": "None", + "value": "None" + } + ] + } + }, "DayOfWeek": { "type": "string", "description": "The day of week.", @@ -3185,6 +3212,10 @@ "format": "arm-id", "description": "A type definition that refers the id to an Azure Resource Manager resource." } + }, + "dataIntegrityValidation": { + "$ref": "#/definitions/DataIntegrityValidation", + "description": "Data Integrity Validation mode." } } },