assessment_options_operations
Creates, updates, deletes, gets or lists an assessment_options_operations resource.
Overview
| Name | assessment_options_operations |
| Type | Resource |
| Id | azure.migration_assessment.assessment_options_operations |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_assessment_project
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long |
name | string | The name of the resource. |
premiumDiskVmFamilies | array | List of VM Families that support premium disks for assessments. |
reservedInstanceSupportedCurrencies | array | List of supported currencies for reserved instances. |
reservedInstanceSupportedLocations | array | List of supported Azure regions for reserved instances. |
reservedInstanceSupportedOffers | array | List of supported Azure offer codes for reserved instances. |
reservedInstanceVmFamilies | array | List of supported VM Families. |
savingsPlanSupportedLocations | array | List of Azure locations that support Savings plan offer for assessments. |
savingsPlanVmFamilies | array | List of VM Families that support Savings plan offer for assessments. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
ultraDiskVmFamilies | array | Ultra disk related assessment options. |
vmFamilies | array | Dictionary of VM families grouped by vm family name describing the targeted azure locations of VM family and the category of the family. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long |
name | string | The name of the resource. |
premiumDiskVmFamilies | array | List of VM Families that support premium disks for assessments. |
reservedInstanceSupportedCurrencies | array | List of supported currencies for reserved instances. |
reservedInstanceSupportedLocations | array | List of supported Azure regions for reserved instances. |
reservedInstanceSupportedOffers | array | List of supported Azure offer codes for reserved instances. |
reservedInstanceVmFamilies | array | List of supported VM Families. |
savingsPlanSupportedLocations | array | List of Azure locations that support Savings plan offer for assessments. |
savingsPlanVmFamilies | array | List of VM Families that support Savings plan offer for assessments. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
ultraDiskVmFamilies | array | Ultra disk related assessment options. |
vmFamilies | array | Dictionary of VM families grouped by vm family name describing the targeted azure locations of VM family and the category of the family. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, project_name, assessment_options_name, subscription_id | Get a AssessmentOptions. | |
list_by_assessment_project | select | resource_group_name, project_name, subscription_id | List AssessmentOptions resources by AssessmentProject. |
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.
| Name | Datatype | Description |
|---|---|---|
assessment_options_name | string | assessment options ARM name. Accepted value is 'default'. Required. |
project_name | string | Assessment Project Name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_assessment_project
Get a AssessmentOptions.
SELECT
id,
name,
premiumDiskVmFamilies,
reservedInstanceSupportedCurrencies,
reservedInstanceSupportedLocations,
reservedInstanceSupportedOffers,
reservedInstanceVmFamilies,
savingsPlanSupportedLocations,
savingsPlanVmFamilies,
systemData,
type,
ultraDiskVmFamilies,
vmFamilies
FROM azure.migration_assessment.assessment_options_operations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND project_name = '{{ project_name }}' -- required
AND assessment_options_name = '{{ assessment_options_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List AssessmentOptions resources by AssessmentProject.
SELECT
id,
name,
premiumDiskVmFamilies,
reservedInstanceSupportedCurrencies,
reservedInstanceSupportedLocations,
reservedInstanceSupportedOffers,
reservedInstanceVmFamilies,
savingsPlanSupportedLocations,
savingsPlanVmFamilies,
systemData,
type,
ultraDiskVmFamilies,
vmFamilies
FROM azure.migration_assessment.assessment_options_operations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND project_name = '{{ project_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;