solution_types
Creates, updates, deletes, gets or lists a solution_types
resource.
Overview
Name | solution_types |
Type | Resource |
Id | azure.hybrid_connectivity.solution_types |
Fields
- vw_solution_types
- solution_types
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
resourceGroupName | text | field from the properties object |
solutionType | text | field from the properties object |
solution_settings | text | field from the properties object |
solution_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
supported_azure_regions | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Definition of Solution type resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, solutionType, subscriptionId | Get a SolutionTypeResource |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | List SolutionTypeResource resources by resource group |
list_by_subscription | SELECT | subscriptionId | List SolutionTypeResource resources by subscription ID |
SELECT
examples
List SolutionTypeResource resources by subscription ID
- vw_solution_types
- solution_types
SELECT
description,
resourceGroupName,
solutionType,
solution_settings,
solution_type,
subscriptionId,
supported_azure_regions
FROM azure.hybrid_connectivity.vw_solution_types
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.hybrid_connectivity.solution_types
WHERE subscriptionId = '{{ subscriptionId }}';