iis_web_applications_controllers
Creates, updates, deletes, gets or lists a iis_web_applications_controllers
resource.
Overview
Name | iis_web_applications_controllers |
Type | Resource |
Id | azure.migrate.iis_web_applications_controllers |
Fields
- vw_iis_web_applications_controllers
- iis_web_applications_controllers
Name | Datatype | Description |
---|---|---|
appliance_names | text | field from the properties object |
applications | text | field from the properties object |
bindings | text | field from the properties object |
configurations | text | field from the properties object |
created_timestamp | text | field from the properties object |
directories | text | field from the properties object |
display_name | text | field from the properties object |
errors | text | field from the properties object |
frameworks | text | field from the properties object |
has_errors | text | field from the properties object |
is_deleted | text | field from the properties object |
machine_arm_ids | text | field from the properties object |
machine_display_name | text | field from the properties object |
physical_path | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
server_type | text | field from the properties object |
siteName | text | field from the properties object |
static_folders | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
updated_timestamp | text | field from the properties object |
virtual_applications | text | field from the properties object |
virtual_path | text | field from the properties object |
webAppSiteName | text | field from the properties object |
webApplicationName | text | field from the properties object |
web_server_id | text | field from the properties object |
web_server_name | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for web application properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName, webApplicationName | Method to get an IIS web application. |
list_by_web_app_site | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get all IIS web application. |
update | UPDATE | resourceGroupName, siteName, subscriptionId, webAppSiteName, webApplicationName | Method to update tags on IIS web application. |
SELECT
examples
Method to get all IIS web application.
- vw_iis_web_applications_controllers
- iis_web_applications_controllers
SELECT
appliance_names,
applications,
bindings,
configurations,
created_timestamp,
directories,
display_name,
errors,
frameworks,
has_errors,
is_deleted,
machine_arm_ids,
machine_display_name,
physical_path,
provisioning_state,
resourceGroupName,
server_type,
siteName,
static_folders,
subscriptionId,
tags,
updated_timestamp,
virtual_applications,
virtual_path,
webAppSiteName,
webApplicationName,
web_server_id,
web_server_name
FROM azure.migrate.vw_iis_web_applications_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';
SELECT
properties
FROM azure.migrate.iis_web_applications_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';
UPDATE
example
Updates a iis_web_applications_controllers
resource.
/*+ update */
UPDATE azure.migrate.iis_web_applications_controllers
SET
properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}'
AND webApplicationName = '{{ webApplicationName }}';