Skip to main content

web_applications_controllers

Creates, updates, deletes, gets or lists a web_applications_controllers resource.

Overview

Nameweb_applications_controllers
TypeResource
Idazure.migrate.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
list_by_web_app_siteselectsubscriptionId, resourceGroupName, siteName, webAppSiteNamefilter, top, continuationToken, totalRecordCountMethod to get all IIS web applications.

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.
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 all IIS web applications.

SELECT
properties
FROM azure.migrate.web_applications_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
AND webAppSiteName = '{{ webAppSiteName }}' -- required
AND filter = '{{ filter }}'
AND top = '{{ top }}'
AND continuationToken = '{{ continuationToken }}'
AND totalRecordCount = '{{ totalRecordCount }}'
;