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 existing CRR APIs with ArchiveV1 feature #12683

Merged
merged 2 commits into from
Jan 29, 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 @@ -1836,6 +1836,20 @@
"modelAsString": true
},
"readOnly": true
},
"recoveryPointTierDetails": {
"description": "Recovery point tier information.",
"type": "array",
"items": {
"$ref": "#/definitions/RecoveryPointTierInformation"
}
},
"recoveryPointMoveReadinessInfo": {
"description": "Eligibility of RP to be moved to another tier",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/RecoveryPointMoveReadinessInfo"
}
}
},
"x-ms-discriminator-value": "AzureWorkloadRecoveryPoint"
Expand Down Expand Up @@ -2093,6 +2107,10 @@
"extendedInfo": {
"description": "In Get Recovery Point, it tells whether extended information about recovery point is asked.",
"type": "boolean"
},
"moveReadyRPOnly": {
"description": "Whether the RP can be moved to another tier",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -2861,6 +2879,13 @@
"items": {
"type": "string"
}
},
"recoveryPointMoveReadinessInfo": {
"description": "Eligibility of RP to be moved to another tier",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/RecoveryPointMoveReadinessInfo"
}
}
},
"x-ms-discriminator-value": "IaasVMRecoveryPoint"
Expand Down Expand Up @@ -3904,7 +3929,8 @@
"enum": [
"Invalid",
"InstantRP",
"HardenedRP"
"HardenedRP",
"ArchivedRP"
],
"type": "string",
"x-ms-enum": {
Expand All @@ -3918,13 +3944,21 @@
"Invalid",
"Valid",
"Disabled",
"Deleted"
"Deleted",
"Rehydrated"
],
"type": "string",
"x-ms-enum": {
"name": "RecoveryPointTierStatus",
"modelAsString": false
}
},
"extendedInfo": {
"description": "Recovery point tier status.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
Expand Down Expand Up @@ -4150,6 +4184,17 @@
}
},
"x-ms-discriminator-value": "WorkloadCrrAccessToken"
},
"RecoveryPointMoveReadinessInfo": {
"type": "object",
"properties": {
"isReadyForMove": {
"type": "boolean"
},
"additionalInfo": {
"type": "string"
}
}
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6663,7 +6663,8 @@
"enum": [
"Invalid",
"InstantRP",
"HardenedRP"
"HardenedRP",
"ArchivedRP"

Choose a reason for hiding this comment

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

Add enum value to modelAsString=false.

],
"type": "string",
"x-ms-enum": {
Expand All @@ -6677,7 +6678,8 @@
"Invalid",
"Valid",
"Disabled",
"Deleted"
"Deleted",
"Rehydrated"
],
"type": "string",
"x-ms-enum": {
Expand Down