Class: Google::Apis::ComputeBeta::ResourcePolicySnapshotSchedulePolicySchedule
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ResourcePolicySnapshotSchedulePolicySchedule
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
A schedule for disks where the schedueled operations are performed.
Instance Attribute Summary collapse
-
#daily_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyDailyCycle
Time window specified for daily operations.
-
#hourly_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyHourlyCycle
Time window specified for hourly operations.
-
#weekly_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyWeeklyCycle
Time window specified for weekly operations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourcePolicySnapshotSchedulePolicySchedule
constructor
A new instance of ResourcePolicySnapshotSchedulePolicySchedule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourcePolicySnapshotSchedulePolicySchedule
Returns a new instance of ResourcePolicySnapshotSchedulePolicySchedule.
28914 28915 28916 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#daily_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyDailyCycle
Time window specified for daily operations.
Corresponds to the JSON property dailySchedule
28902 28903 28904 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28902 def daily_schedule @daily_schedule end |
#hourly_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyHourlyCycle
Time window specified for hourly operations.
Corresponds to the JSON property hourlySchedule
28907 28908 28909 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28907 def hourly_schedule @hourly_schedule end |
#weekly_schedule ⇒ Google::Apis::ComputeBeta::ResourcePolicyWeeklyCycle
Time window specified for weekly operations.
Corresponds to the JSON property weeklySchedule
28912 28913 28914 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28912 def weekly_schedule @weekly_schedule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28919 28920 28921 28922 28923 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28919 def update!(**args) @daily_schedule = args[:daily_schedule] if args.key?(:daily_schedule) @hourly_schedule = args[:hourly_schedule] if args.key?(:hourly_schedule) @weekly_schedule = args[:weekly_schedule] if args.key?(:weekly_schedule) end |