Packages

final case class WeeklySchedule(startTimes: Seq[TimeOfDay] = _root_.scala.Seq.empty, daysOfWeek: Seq[DayOfWeek] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[WeeklySchedule] with Product with Serializable

A weekly schedule starts a backup at prescribed start times within a day, for the specified days of the week.

The weekly schedule message is flexible and can be used to create many types of schedules. For example, to have a daily backup that starts at 22:00, configure the start_times field to have one element "22:00" and the days_of_week field to have all seven days of the week.

startTimes

The times during the day to start a backup. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). If no start times are provided, a single fixed start time is chosen arbitrarily.

daysOfWeek

The days of the week to perform a backup. If this field is left empty, the default of every day of the week is used.

Annotations
@SerialVersionUID()
Source
AutomatedBackupPolicy.scala
Linear Supertypes
Updatable[WeeklySchedule], GeneratedMessage, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WeeklySchedule
  2. Updatable
  3. GeneratedMessage
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WeeklySchedule(startTimes: Seq[TimeOfDay] = _root_.scala.Seq.empty, daysOfWeek: Seq[DayOfWeek] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty)

    startTimes

    The times during the day to start a backup. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). If no start times are provided, a single fixed start time is chosen arbitrarily.

    daysOfWeek

    The days of the week to perform a backup. If this field is left empty, the default of every day of the week is used.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addAllDaysOfWeek(__vs: Iterable[DayOfWeek]): WeeklySchedule
  5. def addAllStartTimes(__vs: Iterable[TimeOfDay]): WeeklySchedule
  6. def addDaysOfWeek(__vs: DayOfWeek*): WeeklySchedule
  7. def addStartTimes(__vs: TimeOfDay*): WeeklySchedule
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clearDaysOfWeek: WeeklySchedule
  10. def clearStartTimes: WeeklySchedule
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def companion: WeeklySchedule.type
    Definition Classes
    WeeklySchedule → GeneratedMessage
  13. val daysOfWeek: Seq[DayOfWeek]
  14. def discardUnknownFields: WeeklySchedule
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    WeeklySchedule → GeneratedMessage
  19. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    WeeklySchedule → GeneratedMessage
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. def serializedSize: Int
    Definition Classes
    WeeklySchedule → GeneratedMessage
  26. val startTimes: Seq[TimeOfDay]
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  29. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  30. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  31. def toProtoString: String
    Definition Classes
    WeeklySchedule → GeneratedMessage
  32. val unknownFields: UnknownFieldSet
  33. def update(ms: (Lens[WeeklySchedule, WeeklySchedule]) => Mutation[WeeklySchedule]*): WeeklySchedule
    Definition Classes
    Updatable
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. def withDaysOfWeek(__v: Seq[DayOfWeek]): WeeklySchedule
  38. def withStartTimes(__v: Seq[TimeOfDay]): WeeklySchedule
  39. def withUnknownFields(__v: UnknownFieldSet): WeeklySchedule
  40. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  41. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    WeeklySchedule → GeneratedMessage
  42. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Inherited from Updatable[WeeklySchedule]

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped