class Google::Apis::DatamigrationV1::DatabaseType

A message defining the database engine and provider.

Attributes

engine[RW]

The database engine. Corresponds to the JSON property `engine` @return [String]

provider[RW]

The database provider. Corresponds to the JSON property `provider` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datamigration_v1/classes.rb, line 452
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datamigration_v1/classes.rb, line 457
def update!(**args)
  @engine = args[:engine] if args.key?(:engine)
  @provider = args[:provider] if args.key?(:provider)
end