GetARMLogicApps (AZURE IP Configuration)
This method is used to return the list of Azure Logic Apps in HCL BigFix CLM.
Method Signature:
GetARMLogicApps (endpointId, servicePlanName, queryParams, controlId, async, callback)
Sample Response:
[
{
"entityId": "LOGICAPPS-50F97C3A-B878-4606-94EF-EE5DAF7BAB8B",
"logicAppsName": "ProcessOrderLogicApp",
"description": "Logic App for automating order processing and notification workflows.",
"type": "Microsoft.Logic/workflows",
"location": "Central India",
"state": "Enabled",
"tags": {
"Environment": "Production",
"Owner": "AutomationTeam"
},
"accessEndpointURL": "https://prod-10.centralindia.logic.azure.com:443/workflows/xyz123/triggers/manual/paths/invoke",
"actions": "SendEmail, UpdateDatabase, NotifyUser",
"triggers": "WhenNewOrderCreated",
"outputs": "OrderConfirmed, NotificationSent",
"contentVersion": "1.0.2",
"changedTime": "2025-10-14T10:20:45Z",
"provisioningState": "Succeeded",
"schemaURL": "https://schema.logicapps.azure.com/schema/2022-09-01",
"workflowAccessEndpointIpAddresses": "20.45.67.89, 52.172.112.201",
"workflowOutgoingIpAddresses": "XX.XXX.XX.XX, XX.XXX.XX. XX",
"connectorOutgoingIpAddresses": "XX.XXX.XX.XX, XX.XXX.XXX. XX",
"platformEntityId": "ARM-1F2F9DBF-E7BA-49F7-B716-732AAE5335F7",
"skuName": "Standard",
"skuFamily": "S1",
"skuCapacity": 1,
"associatedServicePlans": [
{
"planName": "LogicAppPlan01",
"servicePlanId": "SP-LOGIC-9871",
"region": "Central India"
}
],
"version": "2.3.5",
"contentVersion": "1.0.0",
"workflowDefinitionLink": "https://portal.azure.com/#view/Microsoft_AzureLogicApps/WorkflowDesignerBlade/logicAppId/%2Fsubscriptions%2F12345%2FresourceGroups%2FLogicRG%2Fproviders%2FMicrosoft.Logic%2Fworkflows%2FProcessOrderLogicApp"
}
]
Parameter Details:
GetARMLogicApps
| Parameter Name | Type | Mandatory | Description |
|---|---|---|---|
| endpointId | String | N | To filter the list on specific Cloud Account Id |
| servicePlanName | String | N | To filter the list on specific service Plan |
| controlId | String | N |
Id of ‘Select’ control to be populated. If Id Control of dynamic UI is passed, then control will be populated with values return from this function else “Result set” will be returned in JSON format. |
| Async | Boolean | N |
In case it’s False: Function will be called in synchronous mode. i.e. Current execution will wait for method execution to complete In case it’s True: Function will be called asynchronously. Execution will not wait for method execution completion. It will jump to next statement. |
| Callback | Function | N | User can pass function name that can be executed on completion of Parent function call. |
| queryParams | Object | N |
queryParams is used for filtering and sorting the records. It contains 3 properties filter/sortby/sortorder. To Filter: To filter records based on column name received from output. e.g., filter="keyname='keyvalue'"
To Sort By: To sort the data based on column name. e.g., sortby="keyname"
To Sort Order: To define sorting order either ASC (Ascending) or DESC (descending). e.g., sortorder="ASC” |