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.
1063 1064 1065 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1063 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
1051 1052 1053 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1051 def identity @identity end |
#instance_uri ⇒ String
The URL to the user's Salesforce DataCloud instance.
Corresponds to the JSON property instanceUri
1056 1057 1058 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1056 def instance_uri @instance_uri end |
#tenant_id ⇒ String
The ID of the user's Salesforce tenant.
Corresponds to the JSON property tenantId
1061 1062 1063 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1061 def tenant_id @tenant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1068 1069 1070 1071 1072 |
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1068 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 |