class Google::Apis::SqladminV1beta4::SqlScheduledMaintenance

Any scheduled maintenance for this instance.

Attributes

can_defer[RW]

Corresponds to the JSON property `canDefer` @return [Boolean]

can_defer?[RW]

Corresponds to the JSON property `canDefer` @return [Boolean]

can_reschedule[RW]

If the scheduled maintenance can be rescheduled. Corresponds to the JSON property `canReschedule` @return [Boolean]

can_reschedule?[RW]

If the scheduled maintenance can be rescheduled. Corresponds to the JSON property `canReschedule` @return [Boolean]

schedule_deadline_time[RW]

Maintenance cannot be rescheduled to start beyond this deadline. Corresponds to the JSON property `scheduleDeadlineTime` @return [String]

start_time[RW]

The start time of any upcoming scheduled maintenance for this instance. Corresponds to the JSON property `startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3163
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 3168
def update!(**args)
  @can_defer = args[:can_defer] if args.key?(:can_defer)
  @can_reschedule = args[:can_reschedule] if args.key?(:can_reschedule)
  @schedule_deadline_time = args[:schedule_deadline_time] if args.key?(:schedule_deadline_time)
  @start_time = args[:start_time] if args.key?(:start_time)
end