Can I directly integrate Azure API with Azure Cosmos DB without Graphql? Based on the doc, it seems this integration is limited only to GraphQL. Please correct me if I'm wrong.
@mikestephenson852523 күн бұрын
you should be able to do that via the normal HTTP api. I think the value of the graph approach is the ease of querying via graph but you should be able to do a proxy layer on top of cosmos with APIM using the API's on this link as the backend learn.microsoft.com/en-us/rest/api/cosmos-db/get-a-document
@mahdi579624 күн бұрын
Nice tutorial. Please do more of such tutorials.
@KentWeare24 күн бұрын
Nice video Mike! Thanks for sharing
@selvamk8157Ай бұрын
Really good content and insights 👍
@mikestephenson8525Ай бұрын
thanks
@Amit006-blogАй бұрын
Can we do this through portal to test
@mikestephenson8525Ай бұрын
im not sure what you mean?
@AhmedGalal-vn6zkАй бұрын
Had to rewatch this a couple of times, but it finally clicked! Now I'm putting it all into practice and working on a solution. Thanks for the great content!
@mikestephenson8525Ай бұрын
thanks mate
@kipergilАй бұрын
Isn't it storage account costing us pay per usage? Is there any fixed price for sftp feature and cost us even there is no usage at all? And when you disable and enable sftp feature, are we loosing other settings like folders mappings, user credentials etc?
@mikestephenson8525Ай бұрын
you pay per hour for the sftp endpoint being enabled regardless of if you use it or not
@kipergilАй бұрын
Thanks for sharing different use cases. Imho, It will be quite hard to realize any AI implementation without using AIS services. So any improvement to enhance AI integration in AIS components would be very useful from dev experience perspective. (And glad to see that various MS AIS teams are working on this relentlessly)
@KentWeareАй бұрын
This is the plan
@AhmedGalal-vn6zkАй бұрын
Great Work 💡
@christineraouf286Ай бұрын
Thanks a lot Mike for your videos about logicapp and terraform, your example really helped me in a current project, few resources are out there about logic and TF. azureapi was really handy when creating connections. thnx a lot.
@KentWeare2 ай бұрын
Great video Mike, love the various use cases
@rezcanАй бұрын
Me too, I loved the use cases....i see Fabric as an emerging alternative to AIS (in a SaaS/lowcodish way) and not just as a data platform...Mike, that might be the reason that you don't see references to AIS in the architecture center. Thanks again for sharing your knowledge with us. Reza
@vucao932 ай бұрын
Thank you!!!
@vucao932 ай бұрын
Thank you!!!
@robrider8382 ай бұрын
Very good. I shared this with my team. I especially liked the last architecture where you combined LA and DF. I suppose you could simplify it a little and just go straight to SAP and bypass SQL if your use case is simpler.
@mikestephenson85252 ай бұрын
thank you for your comment mate, glad you found it useful
@vucao932 ай бұрын
Can you upload a video of how to enable and disable azure SFTP using logic app? I can't get it to work using the article you posted
@mikestephenson85252 ай бұрын
Here is the video you asked for - kzbin.info/www/bejne/mniUgWN9qriSnKs The logic app definition is here if you want it github.com/michaelstephensonuk/CodeSnippets/blob/main/LogicApp-SFTP-Storage/LogicApp.json Hope this helps you sort it out.
@arihasan34232 ай бұрын
Does this work for dataverse trigger, for example when someone adds or modifies a row in Account in dynamics. Asking because I see we only have TriggerLogicAppWithPost/Get.
@mikestephenson85252 ай бұрын
If you check out this page there is an example of a service bus triggered scenario. You would be able to do a similar thing by updating data verse then checking the logic app got fired. In these scenarios we usually implement a pattern to seperate the trigger from the logic which makes the solution more testable. You can see more on this page www.integration-playbook.io/docs/how-do-i-test-with-a-service-bus-trigger
@flyspb3 ай бұрын
Thanks, Mike!
@lfbarbieri3 ай бұрын
Thanks Michael for this example. Excellent use-case from the cost alert to where the issue was.
@flyspb4 ай бұрын
Great video, Mike!
@steve_franc5 ай бұрын
This is helpful, however I am trying to do the reverse of this video. Migrating my bubble database to Azure
@peterkarda32995 ай бұрын
Thanks for the sharing @mikestephenson8525. Was there any reason to choose Blob Storage instead of Job Queue to store the message of the webhook request?
@hsegol42576 ай бұрын
What if i want to run function app more than 10min and still use consumption plan is there any other way
@GackFinder6 ай бұрын
Any Logic App processing is wasteful compared to even mediocrely written code. When comparing my last four clients whom all had similar use cases, the two clients that used Logic Apps saw a 10x total cost of ownership compared to the other two clients.
@mikestephenson85256 ай бұрын
it depends on the usecase i think.. some usecases will have a higher direct cost in logic apps but ive also seen customers with the reverse scenario where someone wrote thousands of lines of code to do what could be done with 4 actions in a logic app. Right tool for the right job
@jan_hamara6 ай бұрын
mate nice video, thank you, but you need to talk bit more clearly, it's quite hard to understand what you are saying at most times
@henrylarrymore39976 ай бұрын
Nice video: I'm wondering if you’ve uploaded/shared your code in a Github repo for others to learn from. (Excuse me if I missed it.) Thanks.
@mikestephenson85256 ай бұрын
i am not sure i still have this demo but at the time i was just doing an http call to the chatgpt API with a formatted message but i think they added some preview out of the box connectors so there is probably a simpler way to do it now a days
@W12ardOfOz7 ай бұрын
Can I still use managed connectors(like SQL connector) within the logic apps hosted inside of ASEv3? Or am I stuck with built-in connectors and have to build my own connectors?
@mikestephenson85257 ай бұрын
you can still use the cloud connectors.. just remember thou the cloud connectors dont live in the vnet with an ase thou
@W12ardOfOz6 ай бұрын
@@mikestephenson8525 It seems that LA inside the ASE can use the cloud connector(using public IP) only when ASE was deployed externally. Is this correct? I'm evaluating the restrictions for LA development when ASE was created internally. It seems to have too many restrictions so far. 1. Not being able to check LA history from portal since not within the VNET, thus, have to create a jumpbox VM to just check the LA's run history? 2. Not being able to use cloud connector since those connector's are using public IP and therefore outside of VNET. Now, I'm wondering if hosting LA standard inside ASE internal may be too impractical when we have LA developers all over the world. If I add a security group to the ASE external, can still restrict access from internet and whitelist only those allowed specifically and allow public IPs being used by Azure Services. This seems to be way practical development environment. Can you please share your thoughts on this? ASE external vs internal for LA Standard development. Thanks!
@RobBowmanUK7 ай бұрын
Another useful video thanks Mike. Good to know “Apply network configuration” is an option to restart the apim instance
@mikestephenson85257 ай бұрын
thanks mate
@W12ardOfOz7 ай бұрын
I think I'd prefer exposing the Azure SQL DB with OData and hook it up with APIM to get the connectivity once and for all, saving efforts to create APIs for each query & table to hook up. But, great to know there is another option.
@W12ardOfOz7 ай бұрын
Looks like integration environment doesn't support logic apps consumption and function app yet. Can't understand why since it just looks(and said) like a logic grouping. Will have to see this matures over time before adopting into our environment. Thanks for the overview.
@PrijeshRamani8 ай бұрын
Can you give more information on log stream, is it enabled by default or we have to enable it
@mikestephenson85258 ай бұрын
its just a standard feature on an app service which gives you a stream of log info being published by the runtime. its often a handy place to look for any error info you might not otherwise be seeing if you get stuck and arent sure what the problem is. For logic app its sometimes handy too if you have deployed an invalid workflow that the runtime cant load up
@leriksenbendigo8 ай бұрын
some resources support multiple sub resources (eg Azure Backup) - so opening up that attribute to be a list rather than a string will enable that. Other than that, nice explanation
@mikestephenson85258 ай бұрын
thanks mate, good shout on the suggestion
@garykim3138 ай бұрын
I am trying to create a Logic Apps using the workflow definition so that whenever a new file is uploaded to Dropbox, a copy of the file is stored in Azure Blob. How can I create the dropbox api connection with terraform and by passing in the access token?
@mikestephenson85258 ай бұрын
Hi Gary, try this video it covers creating connections in terraform. You will need to workout the exact properties for each connector which is a bit of a pain to do and I found the easiest way is to just use the browser trace when creating or updating a connection then you would know the right settings for your terraform - Video link = kzbin.info/www/bejne/f36vc2aeZrlpopY
@mohann21959 ай бұрын
Looking forward to Integrate2024
@W12ardOfOz9 ай бұрын
Mike, I think this project really deserves more interest. I am using this, after some customization, within the company I work for and wish I had used it sooner! Thanks for coming up with this.
@mikestephenson85259 ай бұрын
thank you, its great to hear your using it. would you be interested in a chat about what your doing? we have been thinking about doing more with this but didnt think there was that much interest
@W12ardOfOz9 ай бұрын
@@mikestephenson8525 Very happy to chat on this further, Mike.
@W12ardOfOz9 ай бұрын
@@mikestephenson8525 Of course! Happy to chat about how I customized and used it to manage interfaces.
@mikestephenson85259 ай бұрын
@@W12ardOfOz drop me a message on linked in and we can connect - www.linkedin.com/in/michaelstephensonuk1/
@W12ardOfOz9 ай бұрын
Great that we have a dedicated podcast for cost-saving on Azure, will check out, thanks!
@mikestephenson85259 ай бұрын
thank you mate, what kind of things do you want to see us talk about?
@XuWanping9 ай бұрын
Thank you for sharing! voice a little low, could be because too far away from microphone ?
@mikestephenson85259 ай бұрын
thanks for the feedback, will look into that
@KingBangVEVO9 ай бұрын
Beautiful explanation. Thank you sir
@mikestephenson85259 ай бұрын
thank you
@BigRedAdventures9 ай бұрын
Thanks for sharing this tidbit. I need to get in the same practice as well.
@msit9 ай бұрын
Hi Mike, thank you for your Videos. I have one question,. What's the name of the overlay software for drawing you're using?
@mikestephenson85259 ай бұрын
hi, i have a viewsonic whiteboard TV screen that is common for teachers to use and there is some software that comes with that called my whiteboard. its pretty cool actually
@alioughana10 ай бұрын
Hi Mike great video. You mentioned Serverless360 and a project around deadlettering for Event Grid. Can you point me to that please?
@Rolo73210 ай бұрын
I have a mongoDb and really thinking of moving it over to cosmos with the mongo wrapper it provides
@Rolo73210 ай бұрын
Thanks again for a very imformative video :D
@Rolo73210 ай бұрын
Busy building an application hosted on Azure itself and this might be something that I need to think about.
@mikestephenson852510 ай бұрын
@@Rolo732 thanks mate, what app are you building and hows it going?
@Rolo73210 ай бұрын
@@mikestephenson8525 Appologies for the late reply. It is a booking system for a sport that I play. Currently running in azure as well as a production service.
@potatosoup81510 ай бұрын
Thanks, very helpful
@W12ardOfOz10 ай бұрын
I knew that ChatGPT could write code but didn't know that it could write a map for me based on data input and requirements in natural language. Can't wait to save time from now on!
@OminousCorridor10 ай бұрын
Thanks so much for this Mike!
@jbaideme11 ай бұрын
Fantastic video. Thanks!
@mikestephenson852511 ай бұрын
thanks mate 🙂
@UjjwalDevarapalli11 ай бұрын
Thanks fr the very informative videos and code samples Mike. Could you please do a video of setting up CI CD for logic apps standard
@mikestephenson852511 ай бұрын
hi, its slightly out dated but there is a sample here: github.com/michaelstephensonuk/IntegrationPlaybook-LogicApp-Standard-Testing-Example. Ill put on my backlog to do a video
@UjjwalDevarapalli11 ай бұрын
Thanks for the sample Mike. Very helpful. Thank you
@rgc8220 Жыл бұрын
Hi Mike, Can you please share the github repo to this.
@mikestephenson8525 Жыл бұрын
hi its part of my logic app ASE demo here: github.com/michaelstephensonuk/CodeSnippets/tree/main/LogicApp-ASE/Modules/AzureRm.Resource.PrivateEndpoint