web_app_extended_machines_controllers
Creates, updates, deletes, gets or lists a web_app_extended_machines_controllers
resource.
Overview
Name | web_app_extended_machines_controllers |
Type | Resource |
Id | azure.migrate.web_app_extended_machines_controllers |
Fields
- vw_web_app_extended_machines_controllers
- web_app_extended_machines_controllers
Name | Datatype | Description |
---|---|---|
created_timestamp | text | field from the properties object |
errors | text | field from the properties object |
extendedMachineName | text | field from the properties object |
host_name | text | field from the properties object |
hydrated_run_as_account_id | text | field from the properties object |
is_deleted | text | field from the properties object |
machine_display_name | text | field from the properties object |
machine_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
run_as_account_id | 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 web extended machine properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | extendedMachineName, resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get a extended machine. |
list_by_web_app_site | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get all extended machines. |
SELECT
examples
Method to get all extended machines.
- vw_web_app_extended_machines_controllers
- web_app_extended_machines_controllers
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 }}';
SELECT
properties
FROM azure.migrate.web_app_extended_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';