Deploy data kit components sequentially in a subscriber org. The deployDataKitComponents invocable action is used in the Deploy Data Kit Component flow to invoke the deployment of each data kit component. This action is available for flows in API version 61.0 and later.
Inputs
Input
Type
Description
dataKitComponentDeployInput
Apex-defined sfdatakit__DeployComponentInput
Required. An Apex sfdatakit__DeployComponentInput payload that contains details about the components to deploy and their metadata.
dataKitName
text
Required. The data kit name that contains the components to get the status for.
dataSpaceName
text
The name of the data space to deploy the data kit to. If a data space isn’t defined, the system deploys the components in the default data space.
Outputs
None.
Example
The following examples show sample input payloads for the different data kit components.
1{2 "inputs": [3 {4 "dataKitComponentsInput": [5 {6 "componentType": "CalculatedInsight",7 "calculatedInsightsConfig": {8 "apiName": "crm",#full Qualified CI Name with namespace in datakit9 "apiNameOverride": "hello", #api name of CI to be created on org10 "label": "lab", #label of CI to be created on org11 "publishInterval":"NotScheduled" #NotScheduled,One,Six,Twelve,TwentyFour12 }13 }14 ],15 "dataKitNameInput": "datakit1",16 "dataKitDataSpaceInput" : "default"17 }18 ]19}
1{2 "inputs": [3{4 "dataKitComponentsInput": [5{6 "componentType": "DataLakeObject",7 "dloConfig": {8 "dataSourceObjectDevName": "crm",#full Qualified DLO Name with namespace in datakit9 "apiName": "hello",#api name of DLO to be created on org10 "label": "lab"#label of DLO to be created on org11}12}13],14 "dataKitNameInput": "datakit1",15 "dataKitDataSpaceInput" : "default"16}17]18}
1{2 "inputs": [3{4 "dataKitComponentsInput": [5{6 "componentType": "DataTransform",7 "dataTransformConfig": {8 "dataTransformType": "BATCH", #STREAMING,BATCH9 "dataTransformDevName": "BatchTransformAccount",#full Qualified Transform Name with namespace in datakit10 "apiName":"BatchTransformAccount",#api name of Transform to be created on org11 "label" : "BatchTransformAccount"#label of Transform to be created on org12}13}14],15 "dataKitNameInput": "datakit1",16 "dataKitDataSpaceInput" : "default"17}18]19}