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
-
#mongodb_cluster ⇒ Google::Apis::DatastreamV1::MongodbCluster
MongoDB Cluster structure.
-
#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.
-
#salesforce_org ⇒ Google::Apis::DatastreamV1::SalesforceOrg
Salesforce organization structure.
-
#spanner_database ⇒ Google::Apis::DatastreamV1::SpannerDatabase
Spanner database structure.
-
#sql_server_rdbms ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer 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.
827 828 829 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 827 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mongodb_cluster ⇒ Google::Apis::DatastreamV1::MongodbCluster
MongoDB Cluster structure.
Corresponds to the JSON property mongodbCluster
795 796 797 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 795 def mongodb_cluster @mongodb_cluster end |
#mysql_rdbms ⇒ Google::Apis::DatastreamV1::MysqlRdbms
MySQL database structure
Corresponds to the JSON property mysqlRdbms
800 801 802 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 800 def mysql_rdbms @mysql_rdbms end |
#oracle_rdbms ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property oracleRdbms
805 806 807 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 805 def oracle_rdbms @oracle_rdbms end |
#postgresql_rdbms ⇒ Google::Apis::DatastreamV1::PostgresqlRdbms
PostgreSQL database structure.
Corresponds to the JSON property postgresqlRdbms
810 811 812 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 810 def postgresql_rdbms @postgresql_rdbms end |
#salesforce_org ⇒ Google::Apis::DatastreamV1::SalesforceOrg
Salesforce organization structure.
Corresponds to the JSON property salesforceOrg
815 816 817 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 815 def salesforce_org @salesforce_org end |
#spanner_database ⇒ Google::Apis::DatastreamV1::SpannerDatabase
Spanner database structure.
Corresponds to the JSON property spannerDatabase
820 821 822 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 820 def spanner_database @spanner_database end |
#sql_server_rdbms ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer database structure.
Corresponds to the JSON property sqlServerRdbms
825 826 827 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 825 def sql_server_rdbms @sql_server_rdbms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
832 833 834 835 836 837 838 839 840 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 832 def update!(**args) @mongodb_cluster = args[:mongodb_cluster] if args.key?(:mongodb_cluster) @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) @salesforce_org = args[:salesforce_org] if args.key?(:salesforce_org) @spanner_database = args[:spanner_database] if args.key?(:spanner_database) @sql_server_rdbms = args[:sql_server_rdbms] if args.key?(:sql_server_rdbms) end |