tomcat_web_applications_controllers
Creates, updates, deletes, gets or lists a tomcat_web_applications_controllers
resource.
Overview
Name | tomcat_web_applications_controllers |
Type | Resource |
Id | azure.migrate.tomcat_web_applications_controllers |
Fields
- vw_tomcat_web_applications_controllers
- tomcat_web_applications_controllers
Name | Datatype | Description |
---|---|---|
appliance_names | 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_database_dependency | text | field from the properties object |
has_errors | text | field from the properties object |
is_deleted | text | field from the properties object |
is_external_logging_configured | 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_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 Tomcat web application. |
list_by_web_app_site | SELECT | resourceGroupName, siteName, subscriptionId, webAppSiteName | Method to get all Tomcat web application. |
update | UPDATE | resourceGroupName, siteName, subscriptionId, webAppSiteName, webApplicationName | Updates the Tomcat web application tags. |
SELECT
examples
Method to get all Tomcat web application.
- vw_tomcat_web_applications_controllers
- tomcat_web_applications_controllers
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 }}';
SELECT
properties
FROM azure.migrate.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 }}';