Get Blackout Window Details
Get details of a blackout window based on id
Path Parameters
- blackoutWindowId int32 required
Id of the Blackout Window whose details have to be fetched
- 200
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
- id int32
Id of the blackout window.
- name string
Name of the blackout window.
company object
id int32name string- backupOperations string[]
Possible values: [
FULL
,INCREMENTAL_AND_DIFFERENTIAL
,SYNTHETIC_FULL
,TRANSACTION_LOG
,ALL_OPERATIONS
,DATA_RECOVERY
,AUXILIARY_COPY
,DISASTER_RECOVERY_BACKUP
,DATA_VERIFICATION
,ERASE_SPARE_MEDIA
,SHELF_MANAGEMENT
,DELETE_DATA_BY_BROWSING
,DELETE_ARCHIVED_DATA
,OFFLINE_CONTENT_INDEXING
,ONLINE_CONTENT_INDEXING
,INFORMATION_MANAGEMENT
,MEDIA_REFRESHING
,DATA_ANALYTICS
,DATA_PRUNING
,BACKUP_COPY
,STUBBING
,INSTALL_UPDATES
]backupOperations refers to the backup types to include in the blackout window
- days string[]
Possible values: [
SUNDAY
,MONDAY
,TUESDAY
,WEDNESDAY
,THURSDAY
,FRIDAY
,SATURDAY
]Days of the week when the blackout window will be in effect and jobs will not run.
- weeks string[]
Possible values: [
FIRST
,SECOND
,THIRD
,FOURTH
,LAST
,EVERY
]Refers to the weeks of the month that the blackout window will be in effect and jobs will not run.
time object[]
Refers to the time between which the blackout window will be in effect. It has to be provided in seconds.
start int64the blackout window comes into effect at this point.
end int64the blackout window is no longer in effect from this point on.
betweenDates object
start int64the blackout window comes into effect at this point.
end int64the blackout window is no longer in effect from this point on.
- doNotSubmitJob boolean
Allows or Denies submitting a job when the blackout window is in effect. If allowed, the job is submitted and resumed once the blackout window ends.
{
"id": 0,
"name": "string",
"company": {
"id": 0,
"name": "string"
},
"backupOperations": [
"FULL"
],
"days": [
"SUNDAY"
],
"weeks": [
"FIRST"
],
"time": [
{
"start": 0,
"end": 0
}
],
"betweenDates": {
"start": 0,
"end": 0
},
"doNotSubmitJob": true
}
Requested Details not found