Class: Google::Apis::RedisV1::MachineConfiguration

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb

Overview

MachineConfiguration describes the configuration of a machine specific to Database Resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MachineConfiguration

Returns a new instance of MachineConfiguration.



1923
1924
1925
# File 'lib/google/apis/redis_v1/classes.rb', line 1923

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cpu_countFixnum

The number of CPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix. Corresponds to the JSON property cpuCount

Returns:

  • (Fixnum)


1910
1911
1912
# File 'lib/google/apis/redis_v1/classes.rb', line 1910

def cpu_count
  @cpu_count
end

#memory_size_in_bytesFixnum

Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix. Corresponds to the JSON property memorySizeInBytes

Returns:

  • (Fixnum)


1916
1917
1918
# File 'lib/google/apis/redis_v1/classes.rb', line 1916

def memory_size_in_bytes
  @memory_size_in_bytes
end

#shard_countFixnum

Optional. Number of shards (if applicable). Corresponds to the JSON property shardCount

Returns:

  • (Fixnum)


1921
1922
1923
# File 'lib/google/apis/redis_v1/classes.rb', line 1921

def shard_count
  @shard_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1928
1929
1930
1931
1932
# File 'lib/google/apis/redis_v1/classes.rb', line 1928

def update!(**args)
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
  @memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
  @shard_count = args[:shard_count] if args.key?(:shard_count)
end