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.



1063
1064
1065
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1063

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)


1051
1052
1053
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1051

def identity
  @identity
end

#instance_uriString

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

Returns:

  • (String)


1056
1057
1058
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 1056

def instance_uri
  @instance_uri
end

#tenant_idString

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

Returns:

  • (String)


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