Class: Google::Apis::ComposerV1beta1::DatabaseConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/composer_v1beta1/classes.rb,
generated/google/apis/composer_v1beta1/representations.rb,
generated/google/apis/composer_v1beta1/representations.rb

Overview

The configuration of Cloud SQL instance that is used by the Apache Airflow software.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatabaseConfig

Returns a new instance of DatabaseConfig.



66
67
68
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 66

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

Instance Attribute Details

#machine_typeString

Optional. Cloud SQL machine type used by Airflow database. It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8 or db-n1-standard-16. If not specified, db-n1-standard-2 will be used. Corresponds to the JSON property machineType

Returns:

  • (String)


64
65
66
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 64

def machine_type
  @machine_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



71
72
73
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 71

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