Class GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity
Represents an entity in the data source. For example, the Account
object in Salesforce.
Implements
Inherited Members
Namespace: Google.Apis.DiscoveryEngine.v1.Data
Assembly: Google.Apis.DiscoveryEngine.v1.dll
Syntax
public class GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity : IDirectResponseSchema
Properties
DataStore
Output only. The full resource name of the associated data store for the source entity. Format:
projects/*/locations/*/collections/*/dataStores/*
. When the connector is initialized by the
DataConnectorService.SetUpDataConnector method, a DataStore is automatically created for each source entity.
Declaration
[JsonProperty("dataStore")]
public virtual string DataStore { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityName
The name of the entity. Supported values by data source: * Salesforce: Lead
, Opportunity
, Contact
,
Account
, Case
, Contract
, Campaign
* Jira: Issue
* Confluence: Content
, Space
Declaration
[JsonProperty("entityName")]
public virtual string EntityName { get; set; }
Property Value
Type | Description |
---|---|
string |
KeyPropertyMappings
Attributes for indexing. Key: Field name. Value: The key property to map a field to, such as title
, and
description
. Supported key properties: * title
: The title for data record. This would be displayed on
search results. * description
: The description for data record. This would be displayed on search results.
Declaration
[JsonProperty("keyPropertyMappings")]
public virtual IDictionary<string, string> KeyPropertyMappings { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Params__
The parameters for the entity to facilitate data ingestion. E.g. for BQ connectors: * Key:
document_id_column
* Value: type STRING. The value of the column id.
Declaration
[JsonProperty("params")]
public virtual IDictionary<string, object> Params__ { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |