Class: Google::Apis::DatastreamV1::OracleAsmConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_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.



2826
2827
2828
# File 'lib/google/apis/datastream_v1/classes.rb', line 2826

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)


2787
2788
2789
# File 'lib/google/apis/datastream_v1/classes.rb', line 2787

def asm_service
  @asm_service
end

#connection_attributesHash<String,String>

Optional. Connection string attributes Corresponds to the JSON property connectionAttributes

Returns:

  • (Hash<String,String>)


2792
2793
2794
# File 'lib/google/apis/datastream_v1/classes.rb', line 2792

def connection_attributes
  @connection_attributes
end

#hostnameString

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

Returns:

  • (String)


2797
2798
2799
# File 'lib/google/apis/datastream_v1/classes.rb', line 2797

def hostname
  @hostname
end

#oracle_ssl_configGoogle::Apis::DatastreamV1::OracleSslConfig

Oracle SSL configuration information. Corresponds to the JSON property oracleSslConfig



2802
2803
2804
# File 'lib/google/apis/datastream_v1/classes.rb', line 2802

def oracle_ssl_config
  @oracle_ssl_config
end

#passwordString

Optional. Password for the Oracle ASM connection. Mutually exclusive with the secret_manager_stored_password field. Corresponds to the JSON property password

Returns:

  • (String)


2808
2809
2810
# File 'lib/google/apis/datastream_v1/classes.rb', line 2808

def password
  @password
end

#portFixnum

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

Returns:

  • (Fixnum)


2813
2814
2815
# File 'lib/google/apis/datastream_v1/classes.rb', line 2813

def port
  @port
end

#secret_manager_stored_passwordString

Optional. A reference to a Secret Manager resource name storing the Oracle ASM connection password. Mutually exclusive with the password field. Corresponds to the JSON property secretManagerStoredPassword

Returns:

  • (String)


2819
2820
2821
# File 'lib/google/apis/datastream_v1/classes.rb', line 2819

def secret_manager_stored_password
  @secret_manager_stored_password
end

#usernameString

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

Returns:

  • (String)


2824
2825
2826
# File 'lib/google/apis/datastream_v1/classes.rb', line 2824

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
# File 'lib/google/apis/datastream_v1/classes.rb', line 2831

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