class Google::Apis::DatastreamV1::DiscoverConnectionProfileRequest
Request message for ‘discover’ ConnectionProfile
request.
Attributes
A set of reusable connection configurations to be used as a source or destination for a stream. Corresponds to the JSON property ‘connectionProfile` @return [Google::Apis::DatastreamV1::ConnectionProfile]
A reference to an existing connection profile. Corresponds to the JSON property ‘connectionProfileName` @return [String]
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). Corresponds to the JSON property ‘fullHierarchy` @return [Boolean]
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). Corresponds to the JSON property ‘fullHierarchy` @return [Boolean]
The number of hierarchy levels below the current level to be retrieved. Corresponds to the JSON property ‘hierarchyDepth` @return [Fixnum]
MySQL database structure Corresponds to the JSON property ‘mysqlRdbms` @return [Google::Apis::DatastreamV1::MysqlRdbms]
Oracle database structure. Corresponds to the JSON property ‘oracleRdbms` @return [Google::Apis::DatastreamV1::OracleRdbms]
Public Class Methods
# File lib/google/apis/datastream_v1/classes.rb, line 276 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datastream_v1/classes.rb, line 281 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) end