Class: Google::Apis::BigqueryconnectionV1::SalesforceDataCloudProperties
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryconnectionV1::SalesforceDataCloudProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigqueryconnection_v1/classes.rb,
lib/google/apis/bigqueryconnection_v1/representations.rb,
lib/google/apis/bigqueryconnection_v1/representations.rb
Overview
Connection properties specific to Salesforce DataCloud. This is intended for use only by Salesforce partner projects.
Instance Attribute Summary collapse
-
#identity ⇒ String
Output only.
-
#instance_uri ⇒ String
The URL to the user's Salesforce DataCloud instance.
-
#tenant_id ⇒ String
The ID of the user's Salesforce tenant.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SalesforceDataCloudProperties
constructor
A new instance of SalesforceDataCloudProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SalesforceDataCloudProperties
Returns a new instance of SalesforceDataCloudProperties.
1200 1201 1202 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1200 def initialize(**args) update!(**args) end |
Instance Attribute Details
#identity ⇒ String
Output only. A unique Google-owned and Google-generated service account
identity for the connection.
Corresponds to the JSON property identity
1188 1189 1190 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1188 def identity @identity end |
#instance_uri ⇒ String
The URL to the user's Salesforce DataCloud instance.
Corresponds to the JSON property instanceUri
1193 1194 1195 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1193 def instance_uri @instance_uri end |
#tenant_id ⇒ String
The ID of the user's Salesforce tenant.
Corresponds to the JSON property tenantId
1198 1199 1200 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1198 def tenant_id @tenant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1205 1206 1207 1208 1209 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1205 def update!(**args) @identity = args[:identity] if args.key?(:identity) @instance_uri = args[:instance_uri] if args.key?(:instance_uri) @tenant_id = args[:tenant_id] if args.key?(:tenant_id) end |