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

Added ExtendedLocation to IaasVMRestoreRequest #22468

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 @@ -7419,6 +7419,20 @@
},
"x-ms-discriminator-value": "IaasVMRecoveryPoint"
},
"ExtendedLocation": {
"description": "The extended location of Recovery point where VM was present.",
"type": "object",
"properties": {
"name": {
"description": "Name of the extended location.",
"type": "string"
},
"type": {
"description": "Type of the extended location. Possible values include: 'EdgeZone'",
"type": "string"
}
}
},
"IaasVMRestoreRequest": {
"description": "IaaS VM workload-specific restore.",
"type": "object",
Expand Down Expand Up @@ -7525,6 +7539,10 @@
"identityBasedRestoreDetails": {
"$ref": "#/definitions/IdentityBasedRestoreDetails",
"description": "IaaS VM workload specific restore details for restores using managed identity."
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation",
"description": "Target extended location where the VM should be restored,\r\nshould be null if restore is to be done in public cloud"
}
},
"x-ms-discriminator-value": "IaasVMRestoreRequest"
Expand Down