Class: Google::Apis::ComputeV1::ScalingScheduleStatus

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScalingScheduleStatus

Returns a new instance of ScalingScheduleStatus.



36540
36541
36542
# File 'lib/google/apis/compute_v1/classes.rb', line 36540

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

Instance Attribute Details

#last_start_timeString

[Output Only] The last time the scaling schedule became active. Note: this is a timestamp when a schedule actually became active, not when it was planned to do so. The timestamp is in RFC3339 text format. Corresponds to the JSON property lastStartTime

Returns:

  • (String)


36526
36527
36528
# File 'lib/google/apis/compute_v1/classes.rb', line 36526

def last_start_time
  @last_start_time
end

#next_start_timeString

[Output Only] The next time the scaling schedule is to become active. Note: this is a timestamp when a schedule is planned to run, but the actual time might be slightly different. The timestamp is in RFC3339 text format. Corresponds to the JSON property nextStartTime

Returns:

  • (String)


36533
36534
36535
# File 'lib/google/apis/compute_v1/classes.rb', line 36533

def next_start_time
  @next_start_time
end

#stateString

[Output Only] The current state of a scaling schedule. Corresponds to the JSON property state

Returns:

  • (String)


36538
36539
36540
# File 'lib/google/apis/compute_v1/classes.rb', line 36538

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



36545
36546
36547
36548
36549
# File 'lib/google/apis/compute_v1/classes.rb', line 36545

def update!(**args)
  @last_start_time = args[:last_start_time] if args.key?(:last_start_time)
  @next_start_time = args[:next_start_time] if args.key?(:next_start_time)
  @state = args[:state] if args.key?(:state)
end