class Google::Apis::DatastreamV1alpha1::DiscoverConnectionProfileRequest
Request message for ‘discover’ ConnectionProfile
request.
Attributes
An ad-hoc ConnectionProfile
configuration. Corresponds to the JSON property ‘connectionProfile` @return [Google::Apis::DatastreamV1alpha1::ConnectionProfile]
A reference to an existing ConnectionProfile
. Corresponds to the JSON property ‘connectionProfileName` @return [String]
MySQL database structure Corresponds to the JSON property ‘mysqlRdbms` @return [Google::Apis::DatastreamV1alpha1::MysqlRdbms]
Oracle database structure. Corresponds to the JSON property ‘oracleRdbms` @return [Google::Apis::DatastreamV1alpha1::OracleRdbms]
The number of hierarchy levels below the current level to be retrieved. Corresponds to the JSON property ‘recursionDepth` @return [Fixnum]
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). Corresponds to the JSON property ‘recursive` @return [Boolean]
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). Corresponds to the JSON property ‘recursive` @return [Boolean]
Public Class Methods
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 279 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 284 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) @mysql_rdbms = args[:mysql_rdbms] if args.key?(:mysql_rdbms) @oracle_rdbms = args[:oracle_rdbms] if args.key?(:oracle_rdbms) @recursion_depth = args[:recursion_depth] if args.key?(:recursion_depth) @recursive = args[:recursive] if args.key?(:recursive) end