Class: Google::Apis::RedisV1::Product

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

Product specification for Condor resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Product

Returns a new instance of Product.



2092
2093
2094
# File 'lib/google/apis/redis_v1/classes.rb', line 2092

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

Instance Attribute Details

#engineString

The specific engine that the underlying database is running. Corresponds to the JSON property engine

Returns:

  • (String)


2079
2080
2081
# File 'lib/google/apis/redis_v1/classes.rb', line 2079

def engine
  @engine
end

#typeString

Type of specific database product. It could be CloudSQL, AlloyDB etc.. Corresponds to the JSON property type

Returns:

  • (String)


2084
2085
2086
# File 'lib/google/apis/redis_v1/classes.rb', line 2084

def type
  @type
end

#versionString

Version of the underlying database engine. Example values: For MySQL, it could be "8.0", "5.7" etc.. For Postgres, it could be "14", "15" etc.. Corresponds to the JSON property version

Returns:

  • (String)


2090
2091
2092
# File 'lib/google/apis/redis_v1/classes.rb', line 2090

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2097
2098
2099
2100
2101
# File 'lib/google/apis/redis_v1/classes.rb', line 2097

def update!(**args)
  @engine = args[:engine] if args.key?(:engine)
  @type = args[:type] if args.key?(:type)
  @version = args[:version] if args.key?(:version)
end