Class: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/file_v1beta1/classes.rb,
generated/google/apis/file_v1beta1/representations.rb,
generated/google/apis/file_v1beta1/representations.rb
Overview
NotificationMetadata is the notification state for an instance.
Instance Attribute Summary collapse
-
#rescheduled ⇒ Boolean
(also: #rescheduled?)
Whether the instance update has been rescheduled.
-
#scheduled_end_time ⇒ String
The scheduled end time for the maintenance window during which update can be performed on the instance.
-
#scheduled_start_time ⇒ String
The scheduled start time for the maintenance window during which update can be performed on the instance.
-
#target_release ⇒ String
The target release to be applied to the instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
constructor
A new instance of GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
Returns a new instance of GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
388 389 390 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rescheduled ⇒ Boolean Also known as: rescheduled?
Whether the instance update has been rescheduled.
Corresponds to the JSON property rescheduled
368 369 370 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 368 def rescheduled @rescheduled end |
#scheduled_end_time ⇒ String
The scheduled end time for the maintenance window during which update
can be performed on the instance.
Corresponds to the JSON property scheduledEndTime
375 376 377 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 375 def scheduled_end_time @scheduled_end_time end |
#scheduled_start_time ⇒ String
The scheduled start time for the maintenance window during which
update can be performed on the instance.
Corresponds to the JSON property scheduledStartTime
381 382 383 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 381 def scheduled_start_time @scheduled_start_time end |
#target_release ⇒ String
The target release to be applied to the instance.
Corresponds to the JSON property targetRelease
386 387 388 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 386 def target_release @target_release end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
393 394 395 396 397 398 |
# File 'generated/google/apis/file_v1beta1/classes.rb', line 393 def update!(**args) @rescheduled = args[:rescheduled] if args.key?(:rescheduled) @scheduled_end_time = args[:scheduled_end_time] if args.key?(:scheduled_end_time) @scheduled_start_time = args[:scheduled_start_time] if args.key?(:scheduled_start_time) @target_release = args[:target_release] if args.key?(:target_release) end |