iis_web_servers_controllers
Creates, updates, deletes, gets or lists a iis_web_servers_controllers
resource.
Overview
Name | iis_web_servers_controllers |
Type | Resource |
Id | azure.migrate.iis_web_servers_controllers |
Fields
- vw_iis_web_servers_controllers
- iis_web_servers_controllers
Name | Datatype | Description |
---|---|---|
appliance_names | text | field from the properties object |
configuration_location | text | field from the properties object |
created_timestamp | text | field from the properties object |
display_name | text | field from the properties object |
errors | text | field from the properties object |
has_errors | text | field from the properties object |
is_deleted | text | field from the properties object |
machine_ids | 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 |
server_fqdn | text | field from the properties object |
server_type | 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 |
version | text | field from the properties object |
webAppSiteName | text | field from the properties object |
webServerName | text | field from the properties object |
web_applications | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for web server properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName, webServerName | Method to get an IIS web server. |
list_by_web_app_site | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get all IIS web servers. |
SELECT
examples
Method to get all IIS web servers.
- vw_iis_web_servers_controllers
- iis_web_servers_controllers
SELECT
appliance_names,
configuration_location,
created_timestamp,
display_name,
errors,
has_errors,
is_deleted,
machine_ids,
provisioning_state,
resourceGroupName,
run_as_account_id,
server_fqdn,
server_type,
siteName,
subscriptionId,
updated_timestamp,
version,
webAppSiteName,
webServerName,
web_applications
FROM azure.migrate.vw_iis_web_servers_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';
SELECT
properties
FROM azure.migrate.iis_web_servers_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';