Class: Google::Apis::MigrationcenterV1alpha1::MySqlStorageEngineDetails

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

Mysql storage engine tables.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MySqlStorageEngineDetails

Returns a new instance of MySqlStorageEngineDetails.



5473
5474
5475
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5473

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

Instance Attribute Details

#encrypted_table_countFixnum

Optional. The number of encrypted tables. Corresponds to the JSON property encryptedTableCount

Returns:

  • (Fixnum)


5461
5462
5463
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5461

def encrypted_table_count
  @encrypted_table_count
end

#engineString

Required. The storage engine. Corresponds to the JSON property engine

Returns:

  • (String)


5466
5467
5468
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5466

def engine
  @engine
end

#table_countFixnum

Optional. The number of tables. Corresponds to the JSON property tableCount

Returns:

  • (Fixnum)


5471
5472
5473
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5471

def table_count
  @table_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5478
5479
5480
5481
5482
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5478

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