Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.17 KB

CreateInstanceBackupScheduleRequest.md

File metadata and controls

24 lines (18 loc) · 1.17 KB

VultrRuby::CreateInstanceBackupScheduleRequest

Properties

Name Type Description Notes
type String Type of backup schedule:
hour Integer Hour of day to run 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::CreateInstanceBackupScheduleRequest.new(
  type: null,
  hour: null,
  dow: null,
  dom: null
)