Class: Google::Apis::FileV1beta1::UpdatePolicy

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

Overview

Maintenance policy applicable to instance updates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdatePolicy

Returns a new instance of UpdatePolicy.

[View source]

1937
1938
1939
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1937

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

Instance Attribute Details

#channelString

Optional. Relative scheduling channel applied to resource. Corresponds to the JSON property channel

Returns:

  • (String)

1923
1924
1925
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1923

def channel
  @channel
end

#deny_maintenance_periodsArray<Google::Apis::FileV1beta1::DenyMaintenancePeriod>

Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. The protocol supports zero-to-many such periods, but the current SLM Rollout implementation only supports zero-to-one. Corresponds to the JSON property denyMaintenancePeriods


1930
1931
1932
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1930

def deny_maintenance_periods
  @deny_maintenance_periods
end

#windowGoogle::Apis::FileV1beta1::MaintenanceWindow

MaintenanceWindow definition. Corresponds to the JSON property window


1935
1936
1937
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1935

def window
  @window
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1942
1943
1944
1945
1946
# File 'lib/google/apis/file_v1beta1/classes.rb', line 1942

def update!(**args)
  @channel = args[:channel] if args.key?(:channel)
  @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
  @window = args[:window] if args.key?(:window)
end