web_app_run_as_accounts_controllers
Creates, updates, deletes, gets or lists a web_app_run_as_accounts_controllers
resource.
Overview
Name | web_app_run_as_accounts_controllers |
Type | Resource |
Id | azure.migrate.web_app_run_as_accounts_controllers |
Fields
- vw_web_app_run_as_accounts_controllers
- web_app_run_as_accounts_controllers
Name | Datatype | Description |
---|---|---|
accountName | text | field from the properties object |
appliance_name | text | field from the properties object |
created_timestamp | text | field from the properties object |
credential_type | text | field from the properties object |
display_name | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
subscriptionId | text | field from the properties object |
updated_timestamp | text | field from the properties object |
webAppSiteName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for run as account properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get run as account. |
list_by_web_app_site | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get all run as accounts. |
SELECT
examples
Method to get all run as accounts.
- vw_web_app_run_as_accounts_controllers
- web_app_run_as_accounts_controllers
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 }}';
SELECT
properties
FROM azure.migrate.web_app_run_as_accounts_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';