Skip to main content

assessment_project_summary_operations

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

Overview

Nameassessment_project_summary_operations
TypeResource
Idazure.migration_assessment.assessment_project_summary_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.
errorSummaryAffectedEntitiesarrayGets the Error summary by feature. Contains number of affected Entities per feature.
lastAssessmentTimestampstring (date-time)Gets the last assessment timestamp.
numberOfAssessmentsintegerGets the number of assessments created in this project.
numberOfGroupsintegerGets the number of groups created in this project.
numberOfImportMachinesintegerGets the number of import machines part of this project.
numberOfMachinesintegerGets the number of machines part of this project.
numberOfPrivateEndpointConnectionsintegerGets the number of private endpoint connections.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, project_name, project_summary_name, subscription_idGet a AssessmentProjectSummary.
list_by_assessment_projectselectresource_group_name, project_name, subscription_idList AssessmentProjectSummary 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.

NameDatatypeDescription
project_namestringAssessment Project Name. Required.
project_summary_namestringGroup ARM name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get a AssessmentProjectSummary.

SELECT
id,
name,
errorSummaryAffectedEntities,
lastAssessmentTimestamp,
numberOfAssessments,
numberOfGroups,
numberOfImportMachines,
numberOfMachines,
numberOfPrivateEndpointConnections,
systemData,
type
FROM azure.migration_assessment.assessment_project_summary_operations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND project_name = '{{ project_name }}' -- required
AND project_summary_name = '{{ project_summary_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;