Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.37 KB

BackupSchedule.md

File metadata and controls

28 lines (22 loc) · 1.37 KB

VultrRuby::BackupSchedule

Properties

Name Type Description Notes
enabled Boolean Indicates if backup is enabled: * true * false [optional]
type String Type of backup schedule:
next_scheduled_time_utc String Time of next backup run in UTC. [optional]
hour Integer Scheduled hour of day in UTC. [optional]
dow Integer Day of week to run.
dom Integer Day of month to run. Use values between 1 and 28. [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::BackupSchedule.new(
  enabled: null,
  type: null,
  next_scheduled_time_utc: null,
  hour: null,
  dow: null,
  dom: null
)