Class: Google::Apis::MigrationcenterV1::MySqlStorageEngineDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::MySqlStorageEngineDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
Mysql storage engine tables.
Instance Attribute Summary collapse
-
#encrypted_table_count ⇒ Fixnum
Optional.
-
#engine ⇒ String
Required.
-
#table_count ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MySqlStorageEngineDetails
constructor
A new instance of MySqlStorageEngineDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MySqlStorageEngineDetails
Returns a new instance of MySqlStorageEngineDetails.
4074 4075 4076 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4074 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encrypted_table_count ⇒ Fixnum
Optional. The number of encrypted tables.
Corresponds to the JSON property encryptedTableCount
4062 4063 4064 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4062 def encrypted_table_count @encrypted_table_count end |
#engine ⇒ String
Required. The storage engine.
Corresponds to the JSON property engine
4067 4068 4069 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4067 def engine @engine end |
#table_count ⇒ Fixnum
Optional. The number of tables.
Corresponds to the JSON property tableCount
4072 4073 4074 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4072 def table_count @table_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4079 4080 4081 4082 4083 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4079 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 |