Class: Google::Apis::ManagedidentitiesV1alpha1::UpdatePolicy

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

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.



2141
2142
2143
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 2141

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)


2126
2127
2128
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 2126

def channel
  @channel
end

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

Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. User can specify zero or more non-overlapping deny periods. For V1, Maximum number of deny_maintenance_periods is expected to be one. Corresponds to the JSON property denyMaintenancePeriods



2134
2135
2136
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 2134

def deny_maintenance_periods
  @deny_maintenance_periods
end

#windowGoogle::Apis::ManagedidentitiesV1alpha1::MaintenanceWindow

MaintenanceWindow definition. Corresponds to the JSON property window



2139
2140
2141
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 2139

def window
  @window
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2146
2147
2148
2149
2150
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 2146

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