Skip to main content

iis_web_applications_controllers

Creates, updates, deletes, gets or lists an iis_web_applications_controllers resource.

Overview

Nameiis_web_applications_controllers
TypeResource
Idazure.migrate.iis_web_applications_controllers

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, siteName, webAppSiteName, webApplicationNameMethod to get an IIS web application.
list_by_web_app_siteselectsubscriptionId, resourceGroupName, siteName, webAppSiteNamefilter, top, continuationToken, totalRecordCountMethod to get all IIS web application.
updateupdatesubscriptionId, resourceGroupName, siteName, webAppSiteName, webApplicationNameMethod to update tags on IIS web application.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
siteNamestringSite name
subscriptionIdstringThe ID of the target subscription.
webAppSiteNamestringWeb app site name.
webApplicationNamestringWeb application name.
continuationTokenstringOptional parameter for continuation token.
filterstringfilter query
topstringpage size query
totalRecordCountinteger (int32)Total count of machines in the given site.

SELECT examples

Method to get an IIS web application.

SELECT
properties
FROM azure.migrate.iis_web_applications_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
AND webAppSiteName = '{{ webAppSiteName }}' -- required
AND webApplicationName = '{{ webApplicationName }}' -- required
;

UPDATE examples

Method to update tags on IIS web application.

UPDATE azure.migrate.iis_web_applications_controllers
SET
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND siteName = '{{ siteName }}' --required
AND webAppSiteName = '{{ webAppSiteName }}' --required
AND webApplicationName = '{{ webApplicationName }}' --required
RETURNING
properties;