environment_definitions
Creates, updates, deletes, gets or lists a environment_definitions
resource.
Overview
Name | environment_definitions |
Type | Resource |
Id | azure.dev_center.environment_definitions |
Fields
- vw_environment_definitions
- environment_definitions
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
catalogName | text | field from the properties object |
devCenterName | text | field from the properties object |
environmentDefinitionName | text | field from the properties object |
parameters | text | field from the properties object |
projectName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
template_path | text | field from the properties object |
validation_status | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of an environment definition. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | catalogName, devCenterName, environmentDefinitionName, resourceGroupName, subscriptionId | Gets an environment definition from the catalog. |
get_by_project_catalog | SELECT | catalogName, environmentDefinitionName, projectName, resourceGroupName, subscriptionId | Gets an environment definition from the catalog. |
list_by_catalog | SELECT | catalogName, devCenterName, resourceGroupName, subscriptionId | List environment definitions in the catalog. |
list_by_project_catalog | SELECT | catalogName, projectName, resourceGroupName, subscriptionId | Lists the environment definitions in this project catalog. |
SELECT
examples
Lists the environment definitions in this project catalog.
- vw_environment_definitions
- environment_definitions
SELECT
description,
catalogName,
devCenterName,
environmentDefinitionName,
parameters,
projectName,
resourceGroupName,
subscriptionId,
template_path,
validation_status
FROM azure.dev_center.vw_environment_definitions
WHERE catalogName = '{{ catalogName }}'
AND projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.dev_center.environment_definitions
WHERE catalogName = '{{ catalogName }}'
AND projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';