Skip to main content

solution_types

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

Overview

Namesolution_types
TypeResource
Idazure.hybrid_connectivity.solution_types

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}.
namestringThe name of the resource.
descriptionstringShort description of solution type.
solutionSettingsarrayArray of solution settings and its description.
solutionTypestringThe name of the solution type.
supportedAzureRegionsarrayThe locations this solution is supported in.
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, solution_type, subscription_idGet a SolutionTypeResource.
list_by_resource_groupselectresource_group_name, subscription_idList SolutionTypeResource resources by resource group.
list_by_subscriptionselectsubscription_idList SolutionTypeResource resources by subscription ID.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
solution_typestringSolution Type resource. Required.
subscription_idstring

SELECT examples

Get a SolutionTypeResource.

SELECT
id,
name,
description,
solutionSettings,
solutionType,
supportedAzureRegions,
systemData,
type
FROM azure.hybrid_connectivity.solution_types
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND solution_type = '{{ solution_type }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;