Skip to main content

web_app_extended_machines_controllers

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

Overview

Nameweb_app_extended_machines_controllers
TypeResource
Idazure.migrate.web_app_extended_machines_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, extendedMachineNameMethod to get a extended machine.
list_by_web_app_siteselectsubscriptionId, resourceGroupName, siteName, webAppSiteNamefilter, top, continuationToken, totalRecordCountMethod to get all extended machines.

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
extendedMachineNamestringExtended machine name.
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 a extended machine.

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