Skip to main content

avs_assessed_machines_operations

Creates, updates, deletes, gets or lists an avs_assessed_machines_operations resource.

Overview

Nameavs_assessed_machines_operations
TypeResource
Idazure.migration_assessment.avs_assessed_machines_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long
namestringThe name of the resource.
bootTypestringBoot type of machine discovered in private data center. Known values are: "Unknown", "EFI", "BIOS", and "NotSpecified".
confidenceRatingInPercentagenumberConfidence Rating in Percentage.
createdTimestampstring (date-time)When was machine first created.
datacenterMachineArmIdstringData center machine ARM id.
datacenterManagementServerArmIdstringData center management server ARM id.
datacenterManagementServerNamestringData center management server name.
descriptionstringDescription for the machine.
disksobjectList of Disks that were assessed as part of this machine's assessment.
displayNamestringDisplay Name of the Machine.
errorsarrayList of errors for this machine.
megabytesOfMemorynumberMegabytes of memory found allocated for the machine in private data center.
networkAdaptersobjectList of Network Adapters that were assessed as part of this machine's assessment.
numberOfCoresintegerNumber of CPU cores found on the machine.
operatingSystemArchitecturestringOperating system architecture as reported by datacenter management solution. Known values are: "Unknown", "X86", and "X64".
operatingSystemNamestringOperating system as reported by datacenter management solution.
operatingSystemTypestringOperating system as reported by datacenter management solution.
operatingSystemVersionstringOperating system version as reported by datacenter management solution.
percentageCoresUtilizationnumberPercentile of Percentage of Cores Utilized noted during time period T. Here N and T are settings on Assessment.
percentageMemoryUtilizationnumberPercentile of Percentage of Memory Utilized noted during time period T. .. code-block:: Here N and T are settings on Assessment.
storageInUseGBnumberGets the storage in use.
suitabilitystringGets a value indicating whether machine is suitable for the cloud platform selected. Known values are: "Unknown", "NotSuitable", "Suitable", "ConditionallySuitable", and "ReadinessUnknown".
suitabilityDetailstringGets the details if machine is not suitable for cloud. Known values are: "None", "PercentageOfCoresUtilizedMissing", "PercentageOfMemoryUtilizedMissing", "PercentageOfCoresUtilizedOutOfRange", "PercentageOfMemoryUtilizedOutOfRange", and "PercentageOfStorageUtilizedOutOfRange".
suitabilityExplanationstringGets the explanation if machine is not suitable for cloud. Known values are: "Unknown", "NotApplicable", "IpV6NotSupported", and "UnsupportedOperatingSystem".
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
updatedTimestampstring (date-time)When was machine last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, project_name, group_name, assessment_name, avs_assessed_machine_name, subscription_idGet a AvsAssessedMachine.
list_by_avs_assessmentselectresource_group_name, project_name, group_name, assessment_name, subscription_id$filter, pageSize, continuationToken, totalRecordCountList AvsAssessedMachine resources by AvsAssessment.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
assessment_namestringAVS Assessment ARM name. Required.
avs_assessed_machine_namestringAVS assessment Assessed Machine ARM name. Required.
group_namestringGroup ARM name. Required.
project_namestringAssessment Project Name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
$filterstringFilter query. Default value is None.
continuationTokenstringOptional parameter for continuation token. Default value is None.
pageSizeintegerOptional parameter for page size. Default value is None.
totalRecordCountintegerTotal record count. Default value is None.

SELECT examples

Get a AvsAssessedMachine.

SELECT
id,
name,
bootType,
confidenceRatingInPercentage,
createdTimestamp,
datacenterMachineArmId,
datacenterManagementServerArmId,
datacenterManagementServerName,
description,
disks,
displayName,
errors,
megabytesOfMemory,
networkAdapters,
numberOfCores,
operatingSystemArchitecture,
operatingSystemName,
operatingSystemType,
operatingSystemVersion,
percentageCoresUtilization,
percentageMemoryUtilization,
storageInUseGB,
suitability,
suitabilityDetail,
suitabilityExplanation,
systemData,
type,
updatedTimestamp
FROM azure.migration_assessment.avs_assessed_machines_operations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND project_name = '{{ project_name }}' -- required
AND group_name = '{{ group_name }}' -- required
AND assessment_name = '{{ assessment_name }}' -- required
AND avs_assessed_machine_name = '{{ avs_assessed_machine_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;