0

I need to create a Mailjet Email Service on Azure, through Azure CLI, but I haven't found any documentation on how to achieve this. I know there isn't a built-in az command to deploy such service, but I wonder if there is a workaround, and thus a way to deploy a Mailjet Email Service by leveraging Azure CLI?

If yes, can someone provide an example?

ccoutinho
  • 3,308
  • 5
  • 39
  • 47

1 Answers1

1

There is no built-in Az commands references and extension references to deploy a Mailjet Email Service through Azure CLI. Azure CLI is a set of commands used to create and manage Azure resources. It is available across Azure services.

In addition, as a workaround, perhaps, you're interested. But I have not tried it as it looks more complex and less easy than enabling Mailjet through Azure portal. In this way, you could catch the API via clicking F12 in the browser when you clicking the create button to enable Mailjet in the Azure portal, then use az rest to invoke a custom request referring to the caught API in the previous step. See this blog and Azure REST API for more references.

ccoutinho
  • 3,308
  • 5
  • 39
  • 47
Nancy
  • 26,865
  • 3
  • 18
  • 34
  • Hey, thanks for the input, I'll def. have a look at that. and btw, I think your second link is pointing to the wrong location – ccoutinho May 19 '20 at 07:31
  • 1
    Do you see "extension references" on the left tab of the linked page? I mean you can see that az supported commands there. – Nancy May 19 '20 at 07:33
  • If there is no else better method for this question, you may consider accepting this reply.:) – Nancy May 19 '20 at 07:37
  • sure, I will. But let me do some more research first – ccoutinho May 19 '20 at 07:38