Class: Google::Apis::BigqueryconnectionV1::SalesforceDataCloudProperties

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SalesforceDataCloudProperties

Returns a new instance of SalesforceDataCloudProperties.



1130
1131
1132
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1130

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#identityString

Output only. A unique Google-owned and Google-generated service account identity for the connection. Corresponds to the JSON property identity

Returns:

  • (String)


1118
1119
1120
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1118

def identity
  @identity
end

#instance_uriString

The URL to the user's Salesforce DataCloud instance. Corresponds to the JSON property instanceUri

Returns:

  • (String)


1123
1124
1125
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1123

def instance_uri
  @instance_uri
end

#tenant_idString

The ID of the user's Salesforce tenant. Corresponds to the JSON property tenantId

Returns:

  • (String)


1128
1129
1130
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1128

def tenant_id
  @tenant_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1135
1136
1137
1138
1139
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1135

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