Class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule

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

Overview

Maintenance schedule which is exposed to customer and potentially end user, indicating published upcoming future maintenance schedule

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule

Returns a new instance of GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule



283
284
285
# File 'generated/google/apis/file_v1/classes.rb', line 283

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

Instance Attribute Details

#end_timeString

The scheduled end time for the maintenance. Corresponds to the JSON property endTime

Returns:

  • (String)


276
277
278
# File 'generated/google/apis/file_v1/classes.rb', line 276

def end_time
  @end_time
end

#start_timeString

The scheduled start time for the maintenance. Corresponds to the JSON property startTime

Returns:

  • (String)


281
282
283
# File 'generated/google/apis/file_v1/classes.rb', line 281

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



288
289
290
291
# File 'generated/google/apis/file_v1/classes.rb', line 288

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