Class: Google::Cloud::Memorystore::V1::Instance::StateInfo
- Inherits:
-
Object
- Object
- Google::Cloud::Memorystore::V1::Instance::StateInfo
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/memorystore/v1/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::V1::Instance::StateInfo::UpdateInfo
readonly
Output only.
Instance Attribute Details
#update_info ⇒ ::Google::Cloud::Memorystore::V1::Instance::StateInfo::UpdateInfo (readonly)
Returns Output only. Describes ongoing update when instance state is UPDATING.
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'proto_docs/google/cloud/memorystore/v1/memorystore.rb', line 187 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. # @!attribute [r] target_engine_version # @return [::String] # Output only. Target engine version for the instance. # @!attribute [r] target_node_type # @return [::Google::Cloud::Memorystore::V1::Instance::NodeType] # Output only. Target node type for the instance. class UpdateInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |