Class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/managedidentities_v1alpha1/classes.rb,
generated/google/apis/managedidentities_v1alpha1/representations.rb,
generated/google/apis/managedidentities_v1alpha1/representations.rb
Overview
This message has been deprecated. 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.
759 760 761 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 759 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
739 740 741 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 739 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
746 747 748 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 746 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
752 753 754 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 752 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
757 758 759 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 757 def target_release @target_release end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
764 765 766 767 768 769 |
# File 'generated/google/apis/managedidentities_v1alpha1/classes.rb', line 764 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 |