Skip to content

Commit

Permalink
Added custom resource naming changes for HyperV, InMageAzureV2 providers
Browse files Browse the repository at this point in the history
  • Loading branch information
prsadhu-ms-idc committed Jul 23, 2021
1 parent b200117 commit 6c8e1ac
Showing 1 changed file with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9978,6 +9978,10 @@
"diskEncryptionSetId": {
"description": "The DiskEncryptionSet ARM ID.",
"type": "string"
},
"customTargetDiskName": {
"description": "The custom target Azure disk name.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -12212,6 +12216,13 @@
"name": "SqlServerLicenseType",
"modelAsString": true
}
},
"vmDisks": {
"description": "The list of disk update properties.",
"type": "array",
"items": {
"$ref": "#/definitions/UpdateDiskInput"
}
}
},
"x-ms-discriminator-value": "HyperVReplicaAzure"
Expand Down Expand Up @@ -13138,6 +13149,10 @@
"diskEncryptionSetId": {
"description": "The DiskEncryptionSet ARM ID.",
"type": "string"
},
"targetDiskName": {
"description": "The target disk name.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -13804,6 +13819,13 @@
"name": "SqlServerLicenseType",
"modelAsString": true
}
},
"vmDisks": {
"description": "The list of disk update properties.",
"type": "array",
"items": {
"$ref": "#/definitions/UpdateDiskInput"
}
}
},
"x-ms-discriminator-value": "InMageAzureV2"
Expand Down Expand Up @@ -21675,6 +21697,23 @@
},
"discriminator": "instanceType"
},
"UpdateDiskInput": {
"description": "Disk input for update.",
"required": [
"diskId"
],
"type": "object",
"properties": {
"diskId": {
"description": "The disk Id.",
"type": "string"
},
"targetDiskName": {
"description": "The target disk name.",
"type": "string"
}
}
},
"UpdateMigrationItemInput": {
"description": "Update migration item input.",
"type": "object",
Expand Down Expand Up @@ -22358,6 +22397,10 @@
"description": "A value indicating whether an existing NIC is allowed to be reused during test failover subject to availability.",
"type": "boolean",
"default": false
},
"targetNicName": {
"description": "Target NIC name.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -22419,6 +22462,10 @@
"tfoReuseExistingNic": {
"description": "A value indicating whether an existing NIC is allowed to be reused during test failover subject to availability.",
"type": "boolean"
},
"targetNicName": {
"description": "Target NIC name.",
"type": "string"
}
}
},
Expand Down

0 comments on commit 6c8e1ac

Please sign in to comment.