Skip to main content

iis_web_servers_controllers

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

Overview

Nameiis_web_servers_controllers
TypeResource
Idazure.migrate.iis_web_servers_controllers

Fields

NameDatatypeDescription
appliance_namestextfield from the properties object
configuration_locationtextfield from the properties object
created_timestamptextfield from the properties object
display_nametextfield from the properties object
errorstextfield from the properties object
has_errorstextfield from the properties object
is_deletedtextfield from the properties object
machine_idstextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
run_as_account_idtextfield from the properties object
server_fqdntextfield from the properties object
server_typetextfield from the properties object
siteNametextfield from the properties object
subscriptionIdtextfield from the properties object
updated_timestamptextfield from the properties object
versiontextfield from the properties object
webAppSiteNametextfield from the properties object
webServerNametextfield from the properties object
web_applicationstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, siteName, subscriptionId, webAppSiteName, webServerNameMethod to get an IIS web server.
list_by_web_app_siteSELECTresourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get all IIS web servers.

SELECT examples

Method to get all IIS web servers.

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 }}';