-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Updating version to 2021-06-01 for recoveryservicesbackup #14678
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
Changes from 2 commits
ad97335
8f0ef99
d3700cc
eb7ef6f
7e6434d
93a7281
ee8a024
d6d2d6f
aadf4ab
2076869
68d8e5c
44ea4d7
7ad3050
7ebf060
0c81aeb
aa58e2f
1efea50
8aca71a
67f5868
7abc499
f3893d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -923,6 +923,9 @@ | |
| }, | ||
| "servicePrincipalObjectId": { | ||
| "type": "string" | ||
| }, | ||
| "identityDetails": { | ||
| "$ref": "#/definitions/IdentityDetails" | ||
| } | ||
| } | ||
| }, | ||
|
|
@@ -2543,6 +2546,10 @@ | |
| "bMSActiveRegion": { | ||
| "description": "Active region name of BMS Stamp", | ||
| "type": "string" | ||
| }, | ||
| "identityInfo": { | ||
| "$ref": "#/definitions/IdentityInfo", | ||
| "description": "Managed Identity information to be used for accessing customer storage accounts." | ||
| } | ||
| }, | ||
| "discriminator": "objectType" | ||
|
|
@@ -3161,6 +3168,39 @@ | |
| }, | ||
| "x-ms-discriminator-value": "IaasVMRestoreRequest" | ||
| }, | ||
| "IdentityDetails": { | ||
| "type": "object", | ||
| "properties": { | ||
| "isSystemAssignedIdentity": { | ||
| "type": "boolean" | ||
| }, | ||
| "managedIdentityArmUrl": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "IdentityInfo": { | ||
| "description": "Encapsulates Managed Identity related information", | ||
| "type": "object", | ||
| "properties": { | ||
| "objectType": { | ||
| "description": "Type of the specific object - used for deserializing", | ||
| "type": "string" | ||
| }, | ||
| "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" | ||
| }, | ||
| "managedIdentityArmUrl": { | ||
| "description": "Managed identity ARM URL\r\nOptional: Might not be required in the case of system assigned managed identity", | ||
| "type": "string" | ||
| }, | ||
| "managedIdentityUrl": { | ||
| "description": "Managed Identity URL\r\nOptional: Will be required only in CRR flow, and not in non-CRR flow", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.