solutions_configs
Creates, updates, deletes, gets or lists a solutions_configs
resource.
Overview
Name | solutions_configs |
Type | Resource |
Id | azure.migrate_projects.solutions_configs |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
publisherSasUri | string | Gets or sets the publisher sas uri for the solution. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , migrateProjectName , solutionName | api-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.
Name | Datatype | Description |
---|---|---|
migrateProjectName | string | Name of the Azure Migrate project. |
resourceGroupName | string | Name of the Azure Resource Group that migrate project is part of. |
solutionName | string | Unique name of a migration solution within a migrate project. |
subscriptionId | string | Azure Subscription Id in which migrate project was created. |
api-version | string | Standard request header. Used by service to identify API version used by client. |
SELECT
examples
- get
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 }}'
;