Skip to main content

servers_controller_machines

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

Overview

Nameservers_controller_machines
TypeResource
Idazure.migrate.servers_controller_machines

Fields

NameDatatypeDescription
allocated_memory_in_mbtextfield from the properties object
appliance_namestextfield from the properties object
application_discoverytextfield from the properties object
apps_and_rolestextfield from the properties object
bios_guidtextfield from the properties object
bios_serial_numbertextfield from the properties object
created_timestamptextfield from the properties object
dependency_map_discoverytextfield from the properties object
dependency_mappingtextfield from the properties object
dependency_mapping_end_timetextfield from the properties object
dependency_mapping_start_timetextfield from the properties object
diskstextfield from the properties object
display_nametextfield from the properties object
errorstextfield from the properties object
firmwaretextfield from the properties object
fqdntextfield from the properties object
guest_details_discovery_timestamptextfield from the properties object
guest_os_detailstextfield from the properties object
hydrated_fqdntextfield from the properties object
iis_discoverytextfield from the properties object
is_deletedtextfield from the properties object
is_guest_details_discovery_in_progresstextfield from the properties object
machineNametextfield from the properties object
network_adapterstextfield from the properties object
number_of_applicationstextfield from the properties object
number_of_processor_coretextfield from the properties object
operating_system_detailstextfield from the properties object
oracle_discoverytextfield from the properties object
processor_infotextfield from the properties object
product_support_statustextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
run_as_account_idtextfield from the properties object
siteNametextfield from the properties object
spring_boot_discoverytextfield from the properties object
sql_discoverytextfield from the properties object
static_discoverytextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextfield from the properties object
tomcat_discoverytextfield from the properties object
updated_timestamptextfield from the properties object
validation_requiredtextfield from the properties object
web_app_discoverytextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTmachineName, resourceGroupName, siteName, subscriptionIdGet a Server
deleteDELETEmachineName, resourceGroupName, siteName, subscriptionIdDelete a Server
updateUPDATEmachineName, resourceGroupName, siteName, subscriptionIdUpdate a Server machine

SELECT examples

Get a Server

SELECT
allocated_memory_in_mb,
appliance_names,
application_discovery,
apps_and_roles,
bios_guid,
bios_serial_number,
created_timestamp,
dependency_map_discovery,
dependency_mapping,
dependency_mapping_end_time,
dependency_mapping_start_time,
disks,
display_name,
errors,
firmware,
fqdn,
guest_details_discovery_timestamp,
guest_os_details,
hydrated_fqdn,
iis_discovery,
is_deleted,
is_guest_details_discovery_in_progress,
machineName,
network_adapters,
number_of_applications,
number_of_processor_core,
operating_system_details,
oracle_discovery,
processor_info,
product_support_status,
provisioning_state,
resourceGroupName,
run_as_account_id,
siteName,
spring_boot_discovery,
sql_discovery,
static_discovery,
subscriptionId,
tags,
tomcat_discovery,
updated_timestamp,
validation_required,
web_app_discovery
FROM azure.migrate.vw_servers_controller_machines
WHERE machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';

UPDATE example

Updates a servers_controller_machines resource.

/*+ update */
UPDATE azure.migrate.servers_controller_machines
SET
properties = '{{ properties }}'
WHERE
machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified servers_controller_machines resource.

/*+ delete */
DELETE FROM azure.migrate.servers_controller_machines
WHERE machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';