hyperv_machines_controllers
Creates, updates, deletes, gets or lists a hyperv_machines_controllers
resource.
Overview
Name | hyperv_machines_controllers |
Type | Resource |
Id | azure.migrate.hyperv_machines_controllers |
Fields
- vw_hyperv_machines_controllers
- hyperv_machines_controllers
Name | Datatype | Description |
---|---|---|
allocated_memory_in_mb | text | field from the properties object |
appliance_names | text | field from the properties object |
application_discovery | text | field from the properties object |
apps_and_roles | text | field from the properties object |
bios_guid | text | field from the properties object |
bios_serial_number | text | field from the properties object |
cluster_fqdn | text | field from the properties object |
cluster_id | text | field from the properties object |
created_timestamp | text | field from the properties object |
data_protection_requested | text | field from the properties object |
dependency_map_discovery | text | field from the properties object |
dependency_mapping | text | field from the properties object |
dependency_mapping_end_time | text | field from the properties object |
dependency_mapping_start_time | text | field from the properties object |
disks | text | field from the properties object |
display_name | text | field from the properties object |
encrypt_state_and_vm_migration_traffic | text | field from the properties object |
errors | text | field from the properties object |
firmware | text | field from the properties object |
generation | text | field from the properties object |
guest_details_discovery_timestamp | text | field from the properties object |
guest_os_details | text | field from the properties object |
high_availability | text | field from the properties object |
host_fqdn | text | field from the properties object |
host_id | text | field from the properties object |
iis_discovery | text | field from the properties object |
instance_uuid | text | field from the properties object |
is_deleted | text | field from the properties object |
is_dynamic_memory_enabled | text | field from the properties object |
is_guest_details_discovery_in_progress | text | field from the properties object |
ksd_enabled | text | field from the properties object |
machineName | text | field from the properties object |
management_server_type | text | field from the properties object |
max_memory_mb | text | field from the properties object |
network_adapters | text | field from the properties object |
number_of_applications | text | field from the properties object |
number_of_processor_core | text | field from the properties object |
operating_system_details | text | field from the properties object |
oracle_discovery | text | field from the properties object |
power_status | text | field from the properties object |
product_support_status | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
run_as_account_id | text | field from the properties object |
secure_boot_enabled | text | field from the properties object |
secure_boot_template | text | field from the properties object |
secure_boot_template_id | text | field from the properties object |
shielding_requested | text | field from the properties object |
siteName | text | field from the properties object |
spring_boot_discovery | text | field from the properties object |
sql_discovery | text | field from the properties object |
static_discovery | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
tomcat_discovery | text | field from the properties object |
tpm_enabled | text | field from the properties object |
updated_timestamp | text | field from the properties object |
version | text | field from the properties object |
virtualization_based_security_opt_out | text | field from the properties object |
vm_configuration_file_location | text | field from the properties object |
vm_fqdn | text | field from the properties object |
web_app_discovery | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of AddressResource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | machineName, resourceGroupName, siteName, subscriptionId | Get a HypervMachine |
list_by_hyperv_site | SELECT | resourceGroupName, siteName, subscriptionId | List HypervMachine resources by HypervSite |
update | UPDATE | machineName, resourceGroupName, siteName, subscriptionId | Update a HypervMachine |
SELECT
examples
List HypervMachine resources by HypervSite
- vw_hyperv_machines_controllers
- hyperv_machines_controllers
SELECT
allocated_memory_in_mb,
appliance_names,
application_discovery,
apps_and_roles,
bios_guid,
bios_serial_number,
cluster_fqdn,
cluster_id,
created_timestamp,
data_protection_requested,
dependency_map_discovery,
dependency_mapping,
dependency_mapping_end_time,
dependency_mapping_start_time,
disks,
display_name,
encrypt_state_and_vm_migration_traffic,
errors,
firmware,
generation,
guest_details_discovery_timestamp,
guest_os_details,
high_availability,
host_fqdn,
host_id,
iis_discovery,
instance_uuid,
is_deleted,
is_dynamic_memory_enabled,
is_guest_details_discovery_in_progress,
ksd_enabled,
machineName,
management_server_type,
max_memory_mb,
network_adapters,
number_of_applications,
number_of_processor_core,
operating_system_details,
oracle_discovery,
power_status,
product_support_status,
provisioning_state,
resourceGroupName,
run_as_account_id,
secure_boot_enabled,
secure_boot_template,
secure_boot_template_id,
shielding_requested,
siteName,
spring_boot_discovery,
sql_discovery,
static_discovery,
subscriptionId,
tags,
tomcat_discovery,
tpm_enabled,
updated_timestamp,
version,
virtualization_based_security_opt_out,
vm_configuration_file_location,
vm_fqdn,
web_app_discovery
FROM azure.migrate.vw_hyperv_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.migrate.hyperv_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
UPDATE
example
Updates a hyperv_machines_controllers
resource.
/*+ update */
UPDATE azure.migrate.hyperv_machines_controllers
SET
properties = '{{ properties }}'
WHERE
machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';