| sfdatakit__DeployComponentInput.bundleConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataStreamBundle",
7 "bundleConfig": {
8 "connectorType": "CRM",
9 "bundleName": "hello", #full Qualified Bundle Name with namespace in datakit
10 "forceNoRefresh": true,
11 "bundleCRMConfig": {
12 "orgId": "org123" #Data Org Id
13 }
14 }
15 }
16 ],
17 "dataKitNameInput": "datakit1",
18 "dataKitDataSpaceInput" : "default"
19 }
20 ]
21}
|
| sfdatakit__DeployComponentBundleConfig.bundleConnectorFrameworkConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataStreamBundle",
7 "bundleConfig": {
8 "connectorType": "MORECONNECTORS",
9 "bundleName": "hello", #full Qualified Bundle Name with namespace in datakit
10 "forceNoRefresh": true,
11 "bundleConnectorFrameworkConfig": {
12 "connectionName": "name"
13 }
14 }
15 }
16 ],
17 "dataKitNameInput": "datakit1",
18 "dataKitDataSpaceInput" : "default"
19 }
20 ]
21}
|
| sfdatakit__DeployComponentBundleConfig.bundleIngestApiConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataStreamBundle",
7 "bundleConfig": {
8 "connectorType": "INGESTAPI",
9 "bundleName": "hello", #full Qualified Bundle Name with namespace in datakit
10 "forceNoRefresh": true,
11 "bundleIngestApiConfig": {
12 "connectorName": "name" #ingestion API connector name
13 }
14 }
15 }
16 ],
17 "dataKitNameInput": "datakit1",
18 "dataKitDataSpaceInput" : "default"
19 }
20 ]
21}
22
|
| sfdatakit__DeployComponentBundleConfig.bundleStreamingAppConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataStreamBundle",
7 "bundleConfig": {
8 "connectorType": "STREAMINGAPP",
9 "bundleName": "hello", #full Qualified Bundle Name with namespace in datakit
10 "forceNoRefresh": true,
11 "bundleStreamingAppConfig": {
12 "connectorName": "name", #Streaming app connector name
13 "streamingAppDataConnectorType": "MobileApp" #MobileApp,WebApp
14 }
15 }
16 }
17 ],
18 "dataKitNameInput": "datakit1",
19 "dataKitDataSpaceInput" : "default"
20 }
21 ]
22}
|
| sfdatakit__DeployComponentInput.calculatedInsightsConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "CalculatedInsight",
7 "calculatedInsightsConfig": {
8 "apiName": "crm",#full Qualified CI Name with namespace in datakit
9 "apiNameOverride": "hello", #api name of CI to be created on org
10 "label": "lab", #label of CI to be created on org
11 "publishInterval":"NotScheduled" #NotScheduled,One,Six,Twelve,TwentyFour
12 }
13 }
14 ],
15 "dataKitNameInput": "datakit1",
16 "dataKitDataSpaceInput" : "default"
17 }
18 ]
19}
|
| sfdatakit__DeployComponentInput.dloConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataLakeObject",
7 "dloConfig": {
8 "dataSourceObjectDevName": "crm",#full Qualified DLO Name with namespace in datakit
9 "apiName": "hello",#api name of DLO to be created on org
10 "label": "lab"#label of DLO to be created on org
11 }
12 }
13 ],
14 "dataKitNameInput": "datakit1",
15 "dataKitDataSpaceInput" : "default"
16 }
17 ]
18}
19
|
| sfdatakit__DeployComponentInput.dataTransformConfig |
- Type
- Apex-defined
- Input Payload
-
1{
2 "inputs": [
3 {
4 "dataKitComponentsInput": [
5 {
6 "componentType": "DataTransform",
7 "dataTransformConfig": {
8 "dataTransformType": "BATCH", #STREAMING,BATCH
9 "dataTransformDevName": "BatchTransformAccount",#full Qualified Transform Name with namespace in datakit
10 "apiName":"BatchTransformAccount",#api name of Transform to be created on org
11 "label" : "BatchTransformAccount"#label of Transform to be created on org
12 }
13 }
14 ],
15 "dataKitNameInput": "datakit1",
16 "dataKitDataSpaceInput" : "default"
17 }
18 ]
19}
|