class Google::Apis::DatastreamV1alpha1::DiscoverConnectionProfileRequest

Request message for ‘discover’ ConnectionProfile request.

Attributes

connection_profile[RW]

An ad-hoc ConnectionProfile configuration. Corresponds to the JSON property ‘connectionProfile` @return [Google::Apis::DatastreamV1alpha1::ConnectionProfile]

connection_profile_name[RW]

A reference to an existing ConnectionProfile. Corresponds to the JSON property ‘connectionProfileName` @return [String]

mysql_rdbms[RW]

MySQL database structure Corresponds to the JSON property ‘mysqlRdbms` @return [Google::Apis::DatastreamV1alpha1::MysqlRdbms]

oracle_rdbms[RW]

Oracle database structure. Corresponds to the JSON property ‘oracleRdbms` @return [Google::Apis::DatastreamV1alpha1::OracleRdbms]

recursion_depth[RW]

The number of hierarchy levels below the current level to be retrieved. Corresponds to the JSON property ‘recursionDepth` @return [Fixnum]

recursive[RW]

Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). Corresponds to the JSON property ‘recursive` @return [Boolean]

recursive?[RW]

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

new(**args) click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 279
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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