class Google::Apis::SqladminV1beta4::Reschedule
Attributes
reschedule_type[RW]
Required. The type of the reschedule. Corresponds to the JSON property `rescheduleType` @return [String]
schedule_time[RW]
Optional. Timestamp when the maintenance shall be rescheduled to if reschedule_type
=SPECIFIC_TIME, in [RFC 3339](tools.ietf.org/html/ rfc3339) format, for example `2012-11-15T16:19:00.094Z`. Corresponds to the JSON property `scheduleTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 2720 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 2725 def update!(**args) @reschedule_type = args[:reschedule_type] if args.key?(:reschedule_type) @schedule_time = args[:schedule_time] if args.key?(:schedule_time) end