Class: Google::Apis::DatamigrationV1::OracleAsmConfig

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 Oracle Automatic Storage Management (ASM) connection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OracleAsmConfig

Returns a new instance of OracleAsmConfig.



3602
3603
3604
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3602

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

Instance Attribute Details

#asm_serviceString

Required. ASM service name for the Oracle ASM connection. Corresponds to the JSON property asmService

Returns:

  • (String)


3569
3570
3571
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3569

def asm_service
  @asm_service
end

#hostnameString

Required. Hostname for the Oracle ASM connection. Corresponds to the JSON property hostname

Returns:

  • (String)


3574
3575
3576
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3574

def hostname
  @hostname
end

#passwordString

Required. Input only. Password for the Oracle ASM connection. Corresponds to the JSON property password

Returns:

  • (String)


3579
3580
3581
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3579

def password
  @password
end

#password_setBoolean Also known as: password_set?

Output only. Indicates whether a new password is included in the request. Corresponds to the JSON property passwordSet

Returns:

  • (Boolean)


3584
3585
3586
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3584

def password_set
  @password_set
end

#portFixnum

Required. Port for the Oracle ASM connection. Corresponds to the JSON property port

Returns:

  • (Fixnum)


3590
3591
3592
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3590

def port
  @port
end

#sslGoogle::Apis::DatamigrationV1::SslConfig

SSL configuration information. Corresponds to the JSON property ssl



3595
3596
3597
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3595

def ssl
  @ssl
end

#usernameString

Required. Username for the Oracle ASM connection. Corresponds to the JSON property username

Returns:

  • (String)


3600
3601
3602
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3600

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3607
3608
3609
3610
3611
3612
3613
3614
3615
# File 'lib/google/apis/datamigration_v1/classes.rb', line 3607

def update!(**args)
  @asm_service = args[:asm_service] if args.key?(:asm_service)
  @hostname = args[:hostname] if args.key?(:hostname)
  @password = args[:password] if args.key?(:password)
  @password_set = args[:password_set] if args.key?(:password_set)
  @port = args[:port] if args.key?(:port)
  @ssl = args[:ssl] if args.key?(:ssl)
  @username = args[:username] if args.key?(:username)
end