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

Extending recovery network input in replication intent API #12191

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 @@ -15724,6 +15724,26 @@
},
"x-ms-discriminator-value": "New"
},
"NewRecoveryVirtualNetwork": {
"description": "Recovery virtual network input to create new virtual network from given source network.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/RecoveryVirtualNetworkCustomDetails"
}
],
"properties": {
"recoveryVirtualNetworkResourceGroupName": {
om-nishant marked this conversation as resolved.
Show resolved Hide resolved
"description": "The name of the resource group to be used to create the recovery virtual network. If absent, target network would be created in the same resource group as target VM.",
"type": "string"
},
"recoveryVirtualNetworkName": {
"description": "The recovery virtual network name.",
"type": "string"
}
},
"x-ms-discriminator-value": "New"
},
"Object": {
"description": "Base of all objects.",
"type": "object",
Expand Down