Show / Hide Table of Contents

Class ExclusionWindow

Defines a time window during which no backup should happen. All time and date are in UTC.

Inheritance
object
ExclusionWindow
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.BackupforGKE.v1.Data
Assembly: Google.Apis.BackupforGKE.v1.dll
Syntax
public class ExclusionWindow : IDirectResponseSchema

Properties

Daily

The exclusion window occurs every day if set to "True". Specifying this field to "False" is an error.

Declaration
[JsonProperty("daily")]
public virtual bool? Daily { get; set; }
Property Value
Type Description
bool?

DaysOfWeek

The exclusion window occurs on these days of each week in UTC.

Declaration
[JsonProperty("daysOfWeek")]
public virtual DayOfWeekList DaysOfWeek { get; set; }
Property Value
Type Description
DayOfWeekList

Duration

Required. Specifies duration of the window. Duration must be >= 5 minutes and < (target RPO - 20 minutes). Additional restrictions based on the recurrence type to allow some time for backup to happen: - single_occurrence_date: no restriction, but UI may warn about this when duration >= target RPO - daily window: duration < 24 hours - weekly window: - days of week includes all seven days of a week: duration < 24 hours - all other weekly window: duration < 168 hours (i.e., 24 * 7 hours)

Declaration
[JsonProperty("duration")]
public virtual object Duration { get; set; }
Property Value
Type Description
object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

SingleOccurrenceDate

No recurrence. The exclusion window occurs only once and on this date in UTC.

Declaration
[JsonProperty("singleOccurrenceDate")]
public virtual Date SingleOccurrenceDate { get; set; }
Property Value
Type Description
Date

StartTime

Required. Specifies the start time of the window using time of the day in UTC.

Declaration
[JsonProperty("startTime")]
public virtual TimeOfDay StartTime { get; set; }
Property Value
Type Description
TimeOfDay

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX