Skip to main content

tomcat_web_servers_controllers

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

Overview

Nametomcat_web_servers_controllers
TypeResource
Idazure.migrate.tomcat_web_servers_controllers

Fields

NameDatatypeDescription
appliance_namestextfield from the properties object
catalina_hometextfield 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_access_log_valve_presenttextfield from the properties object
is_clustering_presenttextfield from the properties object
is_deletedtextfield from the properties object
is_memory_realm_presenttextfield from the properties object
is_session_tracking_presenttextfield from the properties object
jvm_versiontextfield from the properties object
machine_idstextfield from the properties object
max_memory_usage_in_mbtextfield from the properties object
operating_system_detailstextfield 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
servicestextfield from the properties object
session_persistence_mechanismtextfield 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 Tomcat web server.
list_by_web_app_siteSELECTresourceGroupName, siteName, subscriptionId, webAppSiteNameMethod to get all Tomcat web servers.

SELECT examples

Method to get all Tomcat web servers.

SELECT
appliance_names,
catalina_home,
configuration_location,
created_timestamp,
display_name,
errors,
has_errors,
is_access_log_valve_present,
is_clustering_present,
is_deleted,
is_memory_realm_present,
is_session_tracking_present,
jvm_version,
machine_ids,
max_memory_usage_in_mb,
operating_system_details,
provisioning_state,
resourceGroupName,
run_as_account_id,
server_fqdn,
server_type,
services,
session_persistence_mechanism,
siteName,
subscriptionId,
updated_timestamp,
version,
webAppSiteName,
webServerName,
web_applications
FROM azure.migrate.vw_tomcat_web_servers_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webAppSiteName = '{{ webAppSiteName }}';