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

NameDatatypeDescription
created_timestamptextfield from the properties object
errorstextfield from the properties object
extendedMachineNametextfield from the properties object
host_nametextfield from the properties object
hydrated_run_as_account_idtextfield from the properties object
is_deletedtextfield from the properties object
machine_display_nametextfield from the properties object
machine_idtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
run_as_account_idtextfield from the properties object
siteNametextfield from the properties object
subscriptionIdtextfield from the properties object
updated_timestamptextfield from the properties object
webAppSiteNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTextendedMachineName, resourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get a extended machine.
list_by_web_app_siteSELECTresourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get all extended machines.

SELECT examples

Method to get all extended machines.

SELECT
created_timestamp,
errors,
extendedMachineName,
host_name,
hydrated_run_as_account_id,
is_deleted,
machine_display_name,
machine_id,
provisioning_state,
resourceGroupName,
run_as_account_id,
siteName,
subscriptionId,
updated_timestamp,
webAppSiteName
FROM azure.migrate.vw_web_app_extended_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';