Class: Google::Apis::DatastreamV1::DiscoverConnectionProfileRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::DiscoverConnectionProfileRequest
- 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
Request message for 'discover' ConnectionProfile request.
Instance Attribute Summary collapse
-
#connection_profile ⇒ Google::Apis::DatastreamV1::ConnectionProfile
A set of reusable connection configurations to be used as a source or destination for a stream.
-
#connection_profile_name ⇒ String
A reference to an existing connection profile.
-
#full_hierarchy ⇒ Boolean
(also: #full_hierarchy?)
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE).
-
#hierarchy_depth ⇒ Fixnum
The number of hierarchy levels below the current level to be retrieved.
-
#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) ⇒ DiscoverConnectionProfileRequest
constructor
A new instance of DiscoverConnectionProfileRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiscoverConnectionProfileRequest
Returns a new instance of DiscoverConnectionProfileRequest.
425 426 427 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 425 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection_profile ⇒ Google::Apis::DatastreamV1::ConnectionProfile
A set of reusable connection configurations to be used as a source or
destination for a stream.
Corresponds to the JSON property connectionProfile
391 392 393 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 391 def connection_profile @connection_profile end |
#connection_profile_name ⇒ String
A reference to an existing connection profile.
Corresponds to the JSON property connectionProfileName
396 397 398 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 396 def connection_profile_name @connection_profile_name end |
#full_hierarchy ⇒ Boolean Also known as: full_hierarchy?
Whether to retrieve the full hierarchy of data objects (TRUE) or only the
current level (FALSE).
Corresponds to the JSON property fullHierarchy
402 403 404 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 402 def full_hierarchy @full_hierarchy end |
#hierarchy_depth ⇒ Fixnum
The number of hierarchy levels below the current level to be retrieved.
Corresponds to the JSON property hierarchyDepth
408 409 410 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 408 def hierarchy_depth @hierarchy_depth end |
#mysql_rdbms ⇒ Google::Apis::DatastreamV1::MysqlRdbms
MySQL database structure
Corresponds to the JSON property mysqlRdbms
413 414 415 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 413 def mysql_rdbms @mysql_rdbms end |
#oracle_rdbms ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property oracleRdbms
418 419 420 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 418 def oracle_rdbms @oracle_rdbms end |
#postgresql_rdbms ⇒ Google::Apis::DatastreamV1::PostgresqlRdbms
PostgreSQL database structure.
Corresponds to the JSON property postgresqlRdbms
423 424 425 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 423 def postgresql_rdbms @postgresql_rdbms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
430 431 432 433 434 435 436 437 438 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 430 def update!(**args) @connection_profile = args[:connection_profile] if args.key?(:connection_profile) @connection_profile_name = args[:connection_profile_name] if args.key?(:connection_profile_name) @full_hierarchy = args[:full_hierarchy] if args.key?(:full_hierarchy) @hierarchy_depth = args[:hierarchy_depth] if args.key?(:hierarchy_depth) @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 |