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

Adding non mandatory fields in ProtectedItem and AzureVmWorkloadProte… #6818

Merged
merged 6 commits into from
Aug 15, 2019
Merged
Show file tree
Hide file tree
Changes from 4 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 @@ -3126,6 +3126,10 @@
"items": {
"$ref": "#/definitions/SubProtectionPolicy"
}
},
"makePolicyConsistent": {
"description": "Fix the policy inconsistency",
"type": "boolean"
}
},
"x-ms-discriminator-value": "AzureWorkload"
Expand Down Expand Up @@ -5418,10 +5422,6 @@
"description": "Protected, ProtectionStopped, IRPending or ProtectionError",
"type": "string"
},
"isScheduledForDeferredDelete": {
SanjayHukumRana marked this conversation as resolved.
Show resolved Hide resolved
"description": "Specifies if the item is scheduled for deferred deletion.",
"type": "boolean"
},
"deferredDeleteSyncTimeInUTC": {
"format": "int64",
"description": "Sync time for deferred deletion.",
Expand Down Expand Up @@ -5871,6 +5871,27 @@
"name": "CreateMode",
"modelAsString": true
}
},
"deferredDeleteTimeInUTC": {
"format": "date-time",
"description": "Time for deferred deletion in UTC",
"type": "string"
},
"isScheduledForDeferredDelete": {
"description": "Flag to identify whether the DS is scheduled for deferred delete",
"type": "boolean"
},
"deferredDeleteTimeRemaining": {
"description": "Time remaining before the DS marked for deferred delete is permanently deleted",
"type": "string"
},
"IsDeferredDeleteScheduleUpcoming": {
"description": "Flag to identify whether the deferred deleted DS is to be purged soon",
"type": "boolean"
},
"isRehydrate": {
"description": "Flag to identify that deferred deleted DS is to be moved into Pause state",
"type": "boolean"
}
},
"discriminator": "protectedItemType"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1745,6 +1745,10 @@
"items": {
"$ref": "#/definitions/SubProtectionPolicy"
}
},
SanjayHukumRana marked this conversation as resolved.
Show resolved Hide resolved
"makePolicyConsistent": {
"description": "Fix the policy inconsistency",
"type": "boolean"
}
},
"x-ms-discriminator-value": "AzureWorkload"
Expand Down Expand Up @@ -3028,10 +3032,6 @@
"description": "Protected, ProtectionStopped, IRPending or ProtectionError",
"type": "string"
},
"isScheduledForDeferredDelete": {
"description": "Specifies if the item is scheduled for deferred deletion.",
"type": "boolean"
},
"deferredDeleteSyncTimeInUTC": {
"format": "int64",
"description": "Sync time for deferred deletion.",
Expand Down Expand Up @@ -3576,6 +3576,27 @@
"name": "CreateMode",
"modelAsString": true
}
},
"deferredDeleteTimeInUTC": {
"format": "date-time",
"description": "Time for deferred deletion in UTC",
"type": "string"
},
"isScheduledForDeferredDelete": {
"description": "Flag to identify whether the DS is scheduled for deferred delete",
"type": "boolean"
},
"deferredDeleteTimeRemaining": {
"description": "Time remaining before the DS marked for deferred delete is permanently deleted",
"type": "string"
},
"IsDeferredDeleteScheduleUpcoming": {
"description": "Flag to identify whether the deferred deleted DS is to be purged soon",
"type": "boolean"
},
"isRehydrate": {
"description": "Flag to identify that deferred deleted DS is to be moved into Pause state",
"type": "boolean"
}
},
"discriminator": "protectedItemType"
Expand Down