Class: Google::Apis::DatamigrationV1::MySqlHomogeneousConfig

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

Overview

Configuration for MySQL to MySQL migrations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MySqlHomogeneousConfig

Returns a new instance of MySqlHomogeneousConfig.



3900
3901
3902
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3900

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

Instance Attribute Details

#is_primary_destinationBoolean Also known as: is_primary_destination?

Optional. Whether the destination for the migration job is a primary instance. Corresponds to the JSON property isPrimaryDestination

Returns:

  • (Boolean)


3897
3898
3899
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3897

def is_primary_destination
  @is_primary_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3905
3906
3907
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3905

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