Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding missed out request/response parameter change to new version 2021-06-01 for Azure Site Recovery. #15199

Merged
merged 1 commit into from
Jul 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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