Skip to main content

registry_data_containers

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

Overview

Nameregistry_data_containers
TypeResource
Idazure.ml_services.registry_data_containers

Fields

NameDatatypeDescription
nametextfield from the properties object
data_typetextfield from the properties object
is_archivedtextfield from the properties object
latest_versiontextfield from the properties object
next_versiontextfield from the properties object
registryNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, registryName, resourceGroupName, subscriptionId
listSELECTregistryName, resourceGroupName, subscriptionId
create_or_updateINSERTname, registryName, resourceGroupName, subscriptionId, data__properties
deleteDELETEname, registryName, resourceGroupName, subscriptionId

SELECT examples

SELECT
name,
data_type,
is_archived,
latest_version,
next_version,
registryName,
resourceGroupName,
subscriptionId
FROM azure.ml_services.vw_registry_data_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_data_containers resource.

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

DELETE example

Deletes the specified registry_data_containers resource.

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