Class: Google::Cloud::Memorystore::V1beta::Instance::StateInfo
- Inherits:
-
Object
- Object
- Google::Cloud::Memorystore::V1beta::Instance::StateInfo
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/memorystore/v1beta/memorystore.rb
Overview
Additional information about the state of the instance.
Defined Under Namespace
Classes: UpdateInfo
Instance Attribute Summary collapse
-
#update_info ⇒ ::Google::Cloud::Memorystore::V1beta::Instance::StateInfo::UpdateInfo
readonly
Output only.
Instance Attribute Details
#update_info ⇒ ::Google::Cloud::Memorystore::V1beta::Instance::StateInfo::UpdateInfo (readonly)
Returns Output only. Describes ongoing update when instance state is UPDATING.
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'proto_docs/google/cloud/memorystore/v1beta/memorystore.rb', line 115 class StateInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents information about instance with state UPDATING. # @!attribute [r] target_shard_count # @return [::Integer] # Output only. Target number of shards for the instance. # @!attribute [r] target_replica_count # @return [::Integer] # Output only. Target number of replica nodes per shard for the instance. class UpdateInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |