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.
428 429 430 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 428 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mysql_rdbms ⇒ Google::Apis::DatastreamV1::MysqlRdbms
MySQL database structure
Corresponds to the JSON property mysqlRdbms
416 417 418 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 416 def mysql_rdbms @mysql_rdbms end |
#oracle_rdbms ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property oracleRdbms
421 422 423 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 421 def oracle_rdbms @oracle_rdbms end |
#postgresql_rdbms ⇒ Google::Apis::DatastreamV1::PostgresqlRdbms
PostgreSQL database structure.
Corresponds to the JSON property postgresqlRdbms
426 427 428 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 426 def postgresql_rdbms @postgresql_rdbms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
433 434 435 436 437 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 433 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 |