Skip to main content

solutions_configs

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

Overview

Namesolutions_configs
TypeResource
Idazure.migrate_projects.solutions_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
publisherSasUristringGets or sets the publisher sas uri for the solution.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, migrateProjectName, solutionNameapi-version

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
migrateProjectNamestringName of the Azure Migrate project.
resourceGroupNamestringName of the Azure Resource Group that migrate project is part of.
solutionNamestringUnique name of a migration solution within a migrate project.
subscriptionIdstringAzure Subscription Id in which migrate project was created.
api-versionstringStandard request header. Used by service to identify API version used by client.

SELECT examples

OK

SELECT
publisherSasUri
FROM azure.migrate_projects.solutions_configs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND migrateProjectName = '{{ migrateProjectName }}' -- required
AND solutionName = '{{ solutionName }}' -- required
AND api-version = '{{ api-version }}'
;