Skip to main content

web_app_run_as_accounts_controllers

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

Overview

Nameweb_app_run_as_accounts_controllers
TypeResource
Idazure.migrate.web_app_run_as_accounts_controllers

Fields

NameDatatypeDescription
accountNametextfield from the properties object
appliance_nametextfield from the properties object
created_timestamptextfield from the properties object
credential_typetextfield from the properties object
display_nametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield 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
getSELECTaccountName, resourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get run as account.
list_by_web_app_siteSELECTresourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get all run as accounts.

SELECT examples

Method to get all run as accounts.

SELECT
accountName,
appliance_name,
created_timestamp,
credential_type,
display_name,
provisioning_state,
resourceGroupName,
siteName,
subscriptionId,
updated_timestamp,
webAppSiteName
FROM azure.migrate.vw_web_app_run_as_accounts_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';