Skip to main content

registry_environment_containers

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

Overview

Nameregistry_environment_containers
TypeResource
Idazure.ml_services.registry_environment_containers

Fields

NameDatatypeDescription
environmentNametextfield from the properties object
is_archivedtextfield from the properties object
latest_versiontextfield from the properties object
next_versiontextfield from the properties object
provisioning_statetextfield from the properties object
registryNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTenvironmentName, registryName, resourceGroupName, subscriptionId
listSELECTregistryName, resourceGroupName, subscriptionId
create_or_updateINSERTenvironmentName, registryName, resourceGroupName, subscriptionId, data__properties
deleteDELETEenvironmentName, registryName, resourceGroupName, subscriptionId

SELECT examples

SELECT
environmentName,
is_archived,
latest_version,
next_version,
provisioning_state,
registryName,
resourceGroupName,
subscriptionId
FROM azure.ml_services.vw_registry_environment_containers
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new registry_environment_containers resource.

/*+ create */
INSERT INTO azure.ml_services.registry_environment_containers (
environmentName,
registryName,
resourceGroupName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ environmentName }}',
'{{ registryName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;

DELETE example

Deletes the specified registry_environment_containers resource.

/*+ delete */
DELETE FROM azure.ml_services.registry_environment_containers
WHERE environmentName = '{{ environmentName }}'
AND registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';