Class: Google::Apis::DatastreamV1::DiscoverConnectionProfileResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::DiscoverConnectionProfileResponse
- 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
Response from a discover request.
Instance Attribute Summary collapse
-
#mysql_rdbms ⇒ Google::Apis::DatastreamV1::MysqlRdbms
MySQL database structure Corresponds to the JSON property
mysqlRdbms. -
#oracle_rdbms ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
-
#postgresql_rdbms ⇒ Google::Apis::DatastreamV1::PostgresqlRdbms
PostgreSQL database structure.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiscoverConnectionProfileResponse
constructor
A new instance of DiscoverConnectionProfileResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiscoverConnectionProfileResponse
Returns a new instance of DiscoverConnectionProfileResponse.
426 427 428 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mysql_rdbms ⇒ Google::Apis::DatastreamV1::MysqlRdbms
MySQL database structure
Corresponds to the JSON property mysqlRdbms
414 415 416 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 414 def mysql_rdbms @mysql_rdbms end |
#oracle_rdbms ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property oracleRdbms
419 420 421 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 419 def oracle_rdbms @oracle_rdbms end |
#postgresql_rdbms ⇒ Google::Apis::DatastreamV1::PostgresqlRdbms
PostgreSQL database structure.
Corresponds to the JSON property postgresqlRdbms
424 425 426 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 424 def postgresql_rdbms @postgresql_rdbms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
431 432 433 434 435 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 431 def update!(**args) @mysql_rdbms = args[:mysql_rdbms] if args.key?(:mysql_rdbms) @oracle_rdbms = args[:oracle_rdbms] if args.key?(:oracle_rdbms) @postgresql_rdbms = args[:postgresql_rdbms] if args.key?(:postgresql_rdbms) end |