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

[BugFix] Add "ExtendedLocation" property in IaasVMRestorePoint #25713

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
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 @@ -7448,6 +7448,10 @@
"isPrivateAccessEnabledOnAnyDisk": {
"description": "This flag denotes if any of the disks in the VM are using Private access network setting",
"type": "boolean"
},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we also make relevant changes to example

"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation",
"description": "Extended location of the VM recovery point,\r\nshould be null if VM is in public cloud"
}
},
"x-ms-discriminator-value": "IaasVMRecoveryPoint"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,46 @@
],
"isPrivateAccessEnabledOnAnyDisk": true
}
},
{
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FijiValidation-asr-microsoftrrdclab3-408/providers/Microsoft.RecoveryServices/vaults/testVault408/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;fijivalidation-asr-microsoftrrdclab3-408;vm408/protectedItems/VM;iaasvmcontainerv2;fijivalidation-asr-microsoftrrdclab3-408;vm408/recoveryPoints/70477518625276",
"name": "70477518625276",
"type": "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints",
"properties": {
"objectType": "IaasVMRecoveryPoint",
"recoveryPointType": "CrashConsistent",
"recoveryPointTime": "2023-09-22T20:02:00.1225746Z",
"recoveryPointAdditionalInfo": "",
"sourceVMStorageType": "PremiumVMOnPartialPremiumStorage",
"isSourceVMEncrypted": true,
"isInstantIlrSessionActive": false,
"recoveryPointTierDetails": [
{
"type": "InstantRP",
"status": "Valid"
},
{
"type": "HardenedRP",
"status": "Valid"
}
],
"isManagedVirtualMachine": true,
"virtualMachineSize": "Standard_D2s_v3",
"originalStorageAccountOption": false,
"osType": "Windows",
"recoveryPointMoveReadinessInfo": {
"ArchivedRP": {
"isReadyForMove": false,
"additionalInfo": "We're still determining if this Recovery Point can be moved.. Please check again after some time."
}
},
"extendedLocation": {
"name": "microsoftrrdclab3",
"type": "EdgeZone"
},
"securityType": "None",
"isPrivateAccessEnabledOnAnyDisk": false
}
}
],
"nextLink": null
Expand Down