Class: Google::Cloud::AlloyDB::V1::MaintenanceUpdatePolicy
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1::MaintenanceUpdatePolicy
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1/resources.rb
Overview
MaintenanceUpdatePolicy defines the policy for system updates.
Defined Under Namespace
Classes: MaintenanceWindow
Instance Attribute Summary collapse
-
#maintenance_windows ⇒ ::Array<::Google::Cloud::AlloyDB::V1::MaintenanceUpdatePolicy::MaintenanceWindow>
Preferred windows to perform maintenance.
Instance Attribute Details
#maintenance_windows ⇒ ::Array<::Google::Cloud::AlloyDB::V1::MaintenanceUpdatePolicy::MaintenanceWindow>
Returns Preferred windows to perform maintenance. Currently limited to 1.
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
# File 'proto_docs/google/cloud/alloydb/v1/resources.rb', line 327 class MaintenanceUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # MaintenanceWindow specifies a preferred day and time for maintenance. # @!attribute [rw] day # @return [::Google::Type::DayOfWeek] # Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc. # @!attribute [rw] start_time # @return [::Google::Type::TimeOfDay] # Preferred time to start the maintenance operation on the specified day. # Maintenance will start within 1 hour of this time. class MaintenanceWindow include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |