Skip to main content

environment_definitions

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

Overview

Nameenvironment_definitions
TypeResource
Idazure.dev_center.environment_definitions

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
catalogNametextfield from the properties object
devCenterNametextfield from the properties object
environmentDefinitionNametextfield from the properties object
parameterstextfield from the properties object
projectNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
template_pathtextfield from the properties object
validation_statustextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcatalogName, devCenterName, environmentDefinitionName, resourceGroupName, subscriptionIdGets an environment definition from the catalog.
get_by_project_catalogSELECTcatalogName, environmentDefinitionName, projectName, resourceGroupName, subscriptionIdGets an environment definition from the catalog.
list_by_catalogSELECTcatalogName, devCenterName, resourceGroupName, subscriptionIdList environment definitions in the catalog.
list_by_project_catalogSELECTcatalogName, projectName, resourceGroupName, subscriptionIdLists the environment definitions in this project catalog.

SELECT examples

Lists the environment definitions in this project catalog.

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 }}';