Class: Google::Apis::ComputeAlpha::RolloutPolicy

Inherits:
Object
  • Object
show all
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

A rollout policy configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RolloutPolicy

Returns a new instance of RolloutPolicy.



33384
33385
33386
# File 'lib/google/apis/compute_alpha/classes.rb', line 33384

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

Instance Attribute Details

#default_rollout_timeString

An optional RFC3339 timestamp on or after which the update is considered rolled out to any zone that is not explicitly stated. Corresponds to the JSON property defaultRolloutTime

Returns:

  • (String)


33374
33375
33376
# File 'lib/google/apis/compute_alpha/classes.rb', line 33374

def default_rollout_time
  @default_rollout_time
end

#location_rollout_policiesHash<String,String>

Location based rollout policies to apply to the resource. Currently only zone names are supported and must be represented as valid URLs, like: zones/us- central1-a. The value expects an RFC3339 timestamp on or after which the update is considered rolled out to the specified location. Corresponds to the JSON property locationRolloutPolicies

Returns:

  • (Hash<String,String>)


33382
33383
33384
# File 'lib/google/apis/compute_alpha/classes.rb', line 33382

def location_rollout_policies
  @location_rollout_policies
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33389
33390
33391
33392
# File 'lib/google/apis/compute_alpha/classes.rb', line 33389

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