Skip to main content

tomcat_web_applications_controllers

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

Overview

Nametomcat_web_applications_controllers
TypeResource
Idazure.migrate.tomcat_web_applications_controllers

Fields

NameDatatypeDescription
appliance_namestextfield from the properties object
bindingstextfield from the properties object
configurationstextfield from the properties object
created_timestamptextfield from the properties object
directoriestextfield from the properties object
display_nametextfield from the properties object
errorstextfield from the properties object
frameworkstextfield from the properties object
has_database_dependencytextfield from the properties object
has_errorstextfield from the properties object
is_deletedtextfield from the properties object
is_external_logging_configuredtextfield from the properties object
machine_arm_idstextfield from the properties object
machine_display_nametextfield from the properties object
physical_pathtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
server_typetextfield from the properties object
siteNametextfield from the properties object
static_folderstextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextfield from the properties object
updated_timestamptextfield from the properties object
virtual_pathtextfield from the properties object
webAppSiteNametextfield from the properties object
webApplicationNametextfield from the properties object
web_server_idtextfield from the properties object
web_server_nametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, siteName, subscriptionId, webAppSiteName, webApplicationNameMethod to get an Tomcat web application.
list_by_web_app_siteSELECTresourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get all Tomcat web application.
updateUPDATEresourceGroupName, siteName, subscriptionId, webAppSiteName, webApplicationNameUpdates the Tomcat web application tags.

SELECT examples

Method to get all Tomcat web application.

SELECT
appliance_names,
bindings,
configurations,
created_timestamp,
directories,
display_name,
errors,
frameworks,
has_database_dependency,
has_errors,
is_deleted,
is_external_logging_configured,
machine_arm_ids,
machine_display_name,
physical_path,
provisioning_state,
resourceGroupName,
server_type,
siteName,
static_folders,
subscriptionId,
tags,
updated_timestamp,
virtual_path,
webAppSiteName,
webApplicationName,
web_server_id,
web_server_name
FROM azure.migrate.vw_tomcat_web_applications_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';

UPDATE example

Updates a tomcat_web_applications_controllers resource.

/*+ update */
UPDATE azure.migrate.tomcat_web_applications_controllers
SET

WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}'
AND webApplicationName = '{{ webApplicationName }}';