azure-management-api

Azure WebsiteManagementClient for Python: how to get web app by ID?

Azure WebsiteManagementClient for Python: how to get web app by ID? Question: I’m using version 7.0.0 of azure-mgmt-web for Python. I know we can fetch a site with: from azure.mgmt.web import WebSiteManagementClient web_client = WebSiteManagementClient(…credentials here…) site = web_client.web_apps.get(RESOURCE_GROUP_NAME, SITE_NAME) But is there a way to fetch the same resource by using its full ID? …

Total answers: 1