Class: Google::Apis::RedisV1beta1::Cluster
- Inherits:
-
Object
- Object
- Google::Apis::RedisV1beta1::Cluster
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/redis_v1beta1/classes.rb,
lib/google/apis/redis_v1beta1/representations.rb,
lib/google/apis/redis_v1beta1/representations.rb
Overview
A cluster instance.
Instance Attribute Summary collapse
-
#authorization_mode ⇒ String
Optional.
-
#create_time ⇒ String
Output only.
-
#deletion_protection_enabled ⇒ Boolean
(also: #deletion_protection_enabled?)
Optional.
-
#discovery_endpoints ⇒ Array<Google::Apis::RedisV1beta1::DiscoveryEndpoint>
Output only.
-
#name ⇒ String
Required.
-
#node_type ⇒ String
Optional.
-
#persistence_config ⇒ Google::Apis::RedisV1beta1::ClusterPersistenceConfig
Configuration of the persistence functionality.
-
#precise_size_gb ⇒ Float
Output only.
-
#psc_configs ⇒ Array<Google::Apis::RedisV1beta1::PscConfig>
Required.
-
#psc_connections ⇒ Array<Google::Apis::RedisV1beta1::PscConnection>
Output only.
-
#redis_configs ⇒ Hash<String,String>
Optional.
-
#replica_count ⇒ Fixnum
Optional.
-
#shard_count ⇒ Fixnum
Required.
-
#size_gb ⇒ Fixnum
Output only.
-
#state ⇒ String
Output only.
-
#state_info ⇒ Google::Apis::RedisV1beta1::StateInfo
Represents additional information about the state of the cluster.
-
#transit_encryption_mode ⇒ String
Optional.
-
#uid ⇒ String
Output only.
-
#zone_distribution_config ⇒ Google::Apis::RedisV1beta1::ZoneDistributionConfig
Zone distribution config for allocation of cluster resources.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Cluster
constructor
A new instance of Cluster.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Cluster
Returns a new instance of Cluster.
317 318 319 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 317 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authorization_mode ⇒ String
Optional. The authorization mode of the Redis cluster. If not provided, auth
feature is disabled for the cluster.
Corresponds to the JSON property authorizationMode
214 215 216 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 214 def @authorization_mode end |
#create_time ⇒ String
Output only. The timestamp associated with the cluster creation request.
Corresponds to the JSON property createTime
219 220 221 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 219 def create_time @create_time end |
#deletion_protection_enabled ⇒ Boolean Also known as: deletion_protection_enabled?
Optional. The delete operation will fail when the value is set to true.
Corresponds to the JSON property deletionProtectionEnabled
224 225 226 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 224 def deletion_protection_enabled @deletion_protection_enabled end |
#discovery_endpoints ⇒ Array<Google::Apis::RedisV1beta1::DiscoveryEndpoint>
Output only. Endpoints created on each given network, for Redis clients to
connect to the cluster. Currently only one discovery endpoint is supported.
Corresponds to the JSON property discoveryEndpoints
231 232 233 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 231 def discovery_endpoints @discovery_endpoints end |
#name ⇒ String
Required. Identifier. Unique name of the resource in this scope including
project and location using the form: projects/
project_id/locations/
location_id/clusters/
cluster_id`
Corresponds to the JSON property
name`
238 239 240 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 238 def name @name end |
#node_type ⇒ String
Optional. The type of a redis node in the cluster. NodeType determines the
underlying machine-type of a redis node.
Corresponds to the JSON property nodeType
244 245 246 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 244 def node_type @node_type end |
#persistence_config ⇒ Google::Apis::RedisV1beta1::ClusterPersistenceConfig
Configuration of the persistence functionality.
Corresponds to the JSON property persistenceConfig
249 250 251 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 249 def persistence_config @persistence_config end |
#precise_size_gb ⇒ Float
Output only. Precise value of redis memory size in GB for the entire cluster.
Corresponds to the JSON property preciseSizeGb
254 255 256 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 254 def precise_size_gb @precise_size_gb end |
#psc_configs ⇒ Array<Google::Apis::RedisV1beta1::PscConfig>
Required. Each PscConfig configures the consumer network where IPs will be
designated to the cluster for client access through Private Service Connect
Automation. Currently, only one PscConfig is supported.
Corresponds to the JSON property pscConfigs
261 262 263 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 261 def psc_configs @psc_configs end |
#psc_connections ⇒ Array<Google::Apis::RedisV1beta1::PscConnection>
Output only. PSC connections for discovery of the cluster topology and
accessing the cluster.
Corresponds to the JSON property pscConnections
267 268 269 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 267 def psc_connections @psc_connections end |
#redis_configs ⇒ Hash<String,String>
Optional. Key/Value pairs of customer overrides for mutable Redis Configs
Corresponds to the JSON property redisConfigs
272 273 274 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 272 def redis_configs @redis_configs end |
#replica_count ⇒ Fixnum
Optional. The number of replica nodes per shard.
Corresponds to the JSON property replicaCount
277 278 279 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 277 def replica_count @replica_count end |
#shard_count ⇒ Fixnum
Required. Number of shards for the Redis cluster.
Corresponds to the JSON property shardCount
282 283 284 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 282 def shard_count @shard_count end |
#size_gb ⇒ Fixnum
Output only. Redis memory size in GB for the entire cluster rounded up to the
next integer.
Corresponds to the JSON property sizeGb
288 289 290 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 288 def size_gb @size_gb end |
#state ⇒ String
Output only. The current state of this cluster. Can be CREATING, READY,
UPDATING, DELETING and SUSPENDED
Corresponds to the JSON property state
294 295 296 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 294 def state @state end |
#state_info ⇒ Google::Apis::RedisV1beta1::StateInfo
Represents additional information about the state of the cluster.
Corresponds to the JSON property stateInfo
299 300 301 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 299 def state_info @state_info end |
#transit_encryption_mode ⇒ String
Optional. The in-transit encryption for the Redis cluster. If not provided,
encryption is disabled for the cluster.
Corresponds to the JSON property transitEncryptionMode
305 306 307 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 305 def transit_encryption_mode @transit_encryption_mode end |
#uid ⇒ String
Output only. System assigned, unique identifier for the cluster.
Corresponds to the JSON property uid
310 311 312 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 310 def uid @uid end |
#zone_distribution_config ⇒ Google::Apis::RedisV1beta1::ZoneDistributionConfig
Zone distribution config for allocation of cluster resources.
Corresponds to the JSON property zoneDistributionConfig
315 316 317 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 315 def zone_distribution_config @zone_distribution_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 322 def update!(**args) @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode) @create_time = args[:create_time] if args.key?(:create_time) @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled) @discovery_endpoints = args[:discovery_endpoints] if args.key?(:discovery_endpoints) @name = args[:name] if args.key?(:name) @node_type = args[:node_type] if args.key?(:node_type) @persistence_config = args[:persistence_config] if args.key?(:persistence_config) @precise_size_gb = args[:precise_size_gb] if args.key?(:precise_size_gb) @psc_configs = args[:psc_configs] if args.key?(:psc_configs) @psc_connections = args[:psc_connections] if args.key?(:psc_connections) @redis_configs = args[:redis_configs] if args.key?(:redis_configs) @replica_count = args[:replica_count] if args.key?(:replica_count) @shard_count = args[:shard_count] if args.key?(:shard_count) @size_gb = args[:size_gb] if args.key?(:size_gb) @state = args[:state] if args.key?(:state) @state_info = args[:state_info] if args.key?(:state_info) @transit_encryption_mode = args[:transit_encryption_mode] if args.key?(:transit_encryption_mode) @uid = args[:uid] if args.key?(:uid) @zone_distribution_config = args[:zone_distribution_config] if args.key?(:zone_distribution_config) end |