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

Updating version to 2021-06-01 for recoveryservicesbackup #14678

Merged
merged 21 commits into from
Jul 7, 2021
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 @@ -3157,10 +3157,28 @@
"items": {
"type": "string"
}
},
"identityInfo": {
"$ref": "#/definitions/IdentityInfo",
"description": "Managed Identity information required to access customer storage account."
}
},
"x-ms-discriminator-value": "IaasVMRestoreRequest"
},
"IdentityInfo": {
"description": "Encapsulates Managed Identity related information",
"type": "object",
"properties": {
"isSystemAssignedIdentity": {
pilor marked this conversation as resolved.
Show resolved Hide resolved
"description": "To differentiate if the managed identity is system assigned or user assigned",
"type": "boolean"
},
"managedIdentityResourceId": {
"description": "Managed Identity Resource Id\r\nOptional: Might not be required in the case of system assigned managed identity",
"type": "string"
}
}
},
Copy link
Contributor

@j5lim j5lim Jun 9, 2021

Choose a reason for hiding this comment

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

Is this only change added in 2021-06-01 as well? Is there an example file show the usage of this? If not, can you please add it?

Copy link
Contributor

Choose a reason for hiding this comment

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

Next time please follow the ARM API Review Checklist that indicates how to make the very first commit for an efficient review (the second checkbox). Otherwise, it will be very hard to see what changed in the new api-version.

Copy link
Contributor

Choose a reason for hiding this comment

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

+1 This is super important otherwise we'll need to review all the changes and will be adding comments to unmodified changes.

"InstantItemRecoveryTarget": {
"description": "Target details for file / folder restore.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"containerName": "IaasVMContainer;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall",
"protectedItemName": "VM;iaasvmcontainerv2;rshhtestmdvmrg;rshmdvmsmall",
"recoveryPointId": "26083826328862",
"api-version": "2018-12-20-preview",
"api-version": "2018-12-20",
"parameters": {
"properties": {
"tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
"encryptionDetails": {
"encryptionEnabled": false
},
"identityInfo": {
"isSystemAssignedIdentity": false,
"managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asmaskarRG1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asmaskartestmsi"
},
"objectType": "IaasVMRestoreRequest",
"originalStorageAccountOption": false,
"recoveryPointId": "87178355392716",
Expand Down
Loading