Class: Google::Cloud::AlloyDB::V1alpha::Instance::UpdatePolicy
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1alpha::Instance::UpdatePolicy
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1alpha/resources.rb
Overview
Policy to be used while updating the instance.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#mode ⇒ ::Google::Cloud::AlloyDB::V1alpha::Instance::UpdatePolicy::Mode
Mode for updating the instance.
Instance Attribute Details
#mode ⇒ ::Google::Cloud::AlloyDB::V1alpha::Instance::UpdatePolicy::Mode
Returns Mode for updating the instance.
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1027 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 |