Class: Google::Cloud::AlloyDB::V1beta::Instance::UpdatePolicy
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1beta::Instance::UpdatePolicy
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1beta/resources.rb
Overview
Policy to be used while updating the instance.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#mode ⇒ ::Google::Cloud::AlloyDB::V1beta::Instance::UpdatePolicy::Mode
Mode for updating the instance.
Instance Attribute Details
#mode ⇒ ::Google::Cloud::AlloyDB::V1beta::Instance::UpdatePolicy::Mode
Returns Mode for updating the instance.
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 |
# File 'proto_docs/google/cloud/alloydb/v1beta/resources.rb', line 1007 class UpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies the available modes of update. module Mode # Mode is unknown. MODE_UNSPECIFIED = 0 # Least disruptive way to apply the update. DEFAULT = 1 # Performs a forced update when applicable. This will be fast but may # incur a downtime. FORCE_APPLY = 2 end end |