Skip to main content

registry_component_containers

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

Overview

Nameregistry_component_containers
TypeResource
Idazure.ml_services.registry_component_containers

Fields

NameDatatypeDescription
componentNametextfield 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
getSELECTcomponentName, registryName, resourceGroupName, subscriptionId
listSELECTregistryName, resourceGroupName, subscriptionId
create_or_updateINSERTcomponentName, registryName, resourceGroupName, subscriptionId, data__properties
deleteDELETEcomponentName, registryName, resourceGroupName, subscriptionId

SELECT examples

SELECT
componentName,
is_archived,
latest_version,
next_version,
provisioning_state,
registryName,
resourceGroupName,
subscriptionId
FROM azure.ml_services.vw_registry_component_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_component_containers resource.

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

DELETE example

Deletes the specified registry_component_containers resource.

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