Class: Google::Apis::MigrationcenterV1alpha1::MysqlDatabaseDeployment

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

Overview

Specific details for a Mysql database deployment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MysqlDatabaseDeployment

Returns a new instance of MysqlDatabaseDeployment.



5947
5948
5949
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5947

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

Instance Attribute Details

#pluginsArray<Google::Apis::MigrationcenterV1alpha1::MySqlPlugin>

Optional. List of MySql plugins. Corresponds to the JSON property plugins



5930
5931
5932
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5930

def plugins
  @plugins
end

#propertiesArray<Google::Apis::MigrationcenterV1alpha1::MySqlProperty>

Optional. List of MySql properties. Corresponds to the JSON property properties



5935
5936
5937
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5935

def properties
  @properties
end

#resource_groups_countFixnum

Optional. Number of resource groups. Corresponds to the JSON property resourceGroupsCount

Returns:

  • (Fixnum)


5940
5941
5942
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5940

def resource_groups_count
  @resource_groups_count
end

#variablesArray<Google::Apis::MigrationcenterV1alpha1::MySqlVariable>

Optional. List of MySql variables. Corresponds to the JSON property variables



5945
5946
5947
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5945

def variables
  @variables
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5952
5953
5954
5955
5956
5957
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5952

def update!(**args)
  @plugins = args[:plugins] if args.key?(:plugins)
  @properties = args[:properties] if args.key?(:properties)
  @resource_groups_count = args[:resource_groups_count] if args.key?(:resource_groups_count)
  @variables = args[:variables] if args.key?(:variables)
end