Class: Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
An InstanceSchedulePolicy specifies when and how frequent certain operations are performed on the instance.
Instance Attribute Summary collapse
-
#time_zone ⇒ String
Specifies the time zone to be used in interpreting Schedule.schedule.
-
#vm_start_schedule ⇒ Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicySchedule
Schedule for an instance operation.
-
#vm_stop_schedule ⇒ Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicySchedule
Schedule for an instance operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourcePolicyInstanceSchedulePolicy
constructor
A new instance of ResourcePolicyInstanceSchedulePolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourcePolicyInstanceSchedulePolicy
Returns a new instance of ResourcePolicyInstanceSchedulePolicy.
31278 31279 31280 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31278 def initialize(**args) update!(**args) end |
Instance Attribute Details
#time_zone ⇒ String
Specifies the time zone to be used in interpreting Schedule.schedule. The
value of this field must be a time zone name from the tz database: http://en.
wikipedia.org/wiki/Tz_database.
Corresponds to the JSON property timeZone
31266 31267 31268 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31266 def time_zone @time_zone end |
#vm_start_schedule ⇒ Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicySchedule
Schedule for an instance operation.
Corresponds to the JSON property vmStartSchedule
31271 31272 31273 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31271 def vm_start_schedule @vm_start_schedule end |
#vm_stop_schedule ⇒ Google::Apis::ComputeAlpha::ResourcePolicyInstanceSchedulePolicySchedule
Schedule for an instance operation.
Corresponds to the JSON property vmStopSchedule
31276 31277 31278 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31276 def vm_stop_schedule @vm_stop_schedule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31283 31284 31285 31286 31287 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31283 def update!(**args) @time_zone = args[:time_zone] if args.key?(:time_zone) @vm_start_schedule = args[:vm_start_schedule] if args.key?(:vm_start_schedule) @vm_stop_schedule = args[:vm_stop_schedule] if args.key?(:vm_stop_schedule) end |