Updates (activate/deactivate) multiple integration(s) on the OIC server. This operation is useful to activate or deactivate many integrations in a non-deployment scenario. In addition, this operation is REST API based, therefore, will work with localhost endpoints.
Info |
---|
During the importIntegration and partialDeploy packageDeploy operations activate is automatically applied, so this is not needed in those two scenarios. Either FDOIC_CLOUD_ACCOUNT_CODE Target property value or FDOIC_INP_CLOUD_ACCOUNT_CODE plugin input value should exist. When both exist, the plugin input value will take precedence. See Creating/Editing a Cloud Account and Provider for details on how to setup a Cloud Account for OIC. |
Target Properties
Property Name | Property Code | Required | Description |
---|---|---|---|
OIC Account |
| No | The OIC account with all the required properties like Base URI, Username and Password for connecting to an OIC Instance. |
Project Properties
Property Name | Property Code | Required | Description |
---|---|---|---|
Integration Identifier |
| Yes | The identifier (code) of the integration being activatedupdated. This may not be the same as the name of the integration. |
...
Input Name | Input Code | Required | Description |
---|---|---|---|
OIC Account |
| No | The OIC account with all the required properties like Base URI, Username and Password for connecting to an OIC Instance. Typically, this will not be used because the value will come from the property FDOIC_CLOUD_ACCOUNT_CODE instead. |
OIC JSON File Path |
| Yes | JSON File containing zero or more integration objects keyed by integration identifier. |
Stop on Error |
| No | Stop updating(activating/deactivating) integrations, if any error occurs. If false or not specified, updating of other integrations will continue. |
Artifacts
This operation doesn’t consume or produce any artifacts.
...
Code Block | ||
---|---|---|
| ||
{
"integrations" :
[
{
"identifier" : "HELLO_WORLD",
"status" : "ACTIVATED",
"oracleRecommendsFlag" : "true",
"enableAsyncActivationMode" : "true"
},
{
"identifier" : "CONCATMESSAGES",
"version" : "01.00.0001",
"status" : "ACTIVATED",
"oracleRecommendsFlag" : "true",
"enableAsyncActivationMode" : "true"
}
]
}
|