Retrieve Azure LogicApp's Connector metadata using C# SDK
Asked Answered
G

1

6

Can I retrieve metadata of Connector of a Logic App using C# SDK ? Am getting logic app using: Microsoft.Azure.Management.Logic.LogicManagementClient.Workflows.Get(resourceGroupName, logicAppName), but this just gives details of App and does not tell how to read metadata of connector.

Garbers answered 26/8, 2018 at 19:12 Comment(6)
what are you trying to achieve ?Pedicle
Need to pull metadata of LogicApp. Assuming I created a Logic App against O365 Users Create action, I should be able to pull metadata of O365 create action etc.Garbers
What do you mean by metadata ? Logs ?Pedicle
As said, in above comment, i need to see what all parameters does O365 Create action acceptsGarbers
Sorry it is very unclear what's your asking for.. Your wants to know how to create the API connector for O365 using ARM Template ?Pedicle
Let me be more clear. I have created Logic App, which says, when a HTTP POST request is received(Trigger), it should create a O365 User(Action). Now from C# SDK, I want to pull what parameters will this Action require and type of those, which basically means metadata.Garbers
C
0

I guess you are looking for ListOperations which will have the metadata

 url = self.list_operations.metadata['url']

SAMPLE REPOSITORY

Chaplet answered 9/8, 2019 at 3:9 Comment(1)
Am looking for metadata on the Connector(s); not the Logic App itself. For instance, I need to retrieve all operations supported by "Azure AD" Connector. And the next level would be, to retrieve metadata supported by an action on the AzureAD connector.Garbers

© 2022 - 2024 — McMap. All rights reserved.