Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
DataConnector
Parent Type
File Suffix and Directory Location
DataConnector components have the suffix .dataconnector and are stored in the dataconnectors folder.
Version
DataConnector components are available in API version 64.0 and later.
Special Access Rules
There are no additional access requirements that are specific to this type.
Fields
| Field Name | Description |
|---|---|
| attributes |
|
| description |
|
| errors |
|
| features |
|
| icon |
|
| licenseAgreement |
|
| masterLabel |
|
| ownerLocation |
|
| ownerLogo |
|
| ownerName |
|
| parentConnector |
|
| releaseLevel |
|
| supportEmail |
|
| supportMessage |
|
| supportPhone |
|
| translations |
|
DataConnectorAttribute
| Field Name | Description |
|---|---|
| capabilities |
|
| command |
|
| commandAttributes |
|
| dataType |
|
| defaultValue |
|
| editable |
|
| externalName |
|
| masterLabel |
|
| max |
|
| min |
|
| options |
|
| order |
|
| pattern |
|
| placeholder |
|
| readonly |
|
| required |
|
| secure |
|
| tooltip |
|
| translations |
|
| validationMessageError |
|
DataConnectorAttributeOpt
| Field Name | Description |
|---|---|
| capabilities |
|
| conditionAttributes |
|
| externalName |
|
| masterLabel |
|
| order |
|
| translations |
|
DataConnectorError
| Field Name | Description |
|---|---|
| externalName |
|
| masterLabel |
|
| translations |
|
Declarative Metadata Sample Definition
The following is an example of a DataConnector component.
1<?xml version="1.0" encoding="UTF-8"?>
2<DataConnector xmlns="http://soap.sforce.com/2006/04/metadata">
3 <masterLabel>Iceberg Override</masterLabel>
4 <icon>Salesforce</icon>
5 <parentConnector>ICEBERG</parentConnector>
6 <releaseLevel>BETA</releaseLevel>
7 <description>Connect to Apache Iceberg tables</description>
8 <features>Override</features>
9 <ownerName>Slack</ownerName>
10 <ownerLogo>Salesforce</ownerLogo>
11 <ownerLocation>Settle, USA</ownerLocation>
12 <supportMessage>Click download logs before reachout</supportMessage>
13 <supportPhone>+15788467513</supportPhone>
14 <licenseAgreement>https://www.salesforce.com/company/legal</licenseAgreement>
15 <attributes>
16 <fullName>IcebergOverride_storageSourceType</fullName>
17 <externalName>storageSourceType</externalName>
18 <masterLabel>Storage Type</masterLabel>
19 <dataType>COMBOBOX</dataType>
20 <defaultValue>CATALOG_PROVIDED</defaultValue>
21 <capabilities>DataIn</capabilities>
22 <capabilities>Hidden</capabilities>
23 <order>20</order>
24 <editable>true</editable>
25 <required>true</required>
26 <secure>true</secure>
27 </attributes>
28</DataConnector>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>*</members>
5 <name>DataConnector</name>
6 </types>
7 <types>
8 <members>*</members>
9 <name>StaticResource</name>
10 </types>
11 <version>64.0</version>
12</Package>Wildcard Support in the Manifest File
This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.