Class: Google::Apis::SqladminV1::Reschedule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Reschedule

Returns a new instance of Reschedule.



3658
3659
3660
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3658

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#reschedule_typeString

Required. The type of the reschedule. Corresponds to the JSON property rescheduleType

Returns:

  • (String)


3649
3650
3651
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3649

def reschedule_type
  @reschedule_type
end

#schedule_timeString

Optional. Timestamp when the maintenance shall be rescheduled to if reschedule_type=SPECIFIC_TIME, in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. Corresponds to the JSON property scheduleTime

Returns:

  • (String)


3656
3657
3658
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3656

def schedule_time
  @schedule_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3663
3664
3665
3666
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3663

def update!(**args)
  @reschedule_type = args[:reschedule_type] if args.key?(:reschedule_type)
  @schedule_time = args[:schedule_time] if args.key?(:schedule_time)
end