registry_component_containers
Creates, updates, deletes, gets or lists a registry_component_containers
resource.
Overview
Name | registry_component_containers |
Type | Resource |
Id | azure.ml_services.registry_component_containers |
Fields
- vw_registry_component_containers
- registry_component_containers
Name | Datatype | Description |
---|---|---|
componentName | text | field from the properties object |
is_archived | text | field from the properties object |
latest_version | text | field from the properties object |
next_version | text | field from the properties object |
provisioning_state | text | field from the properties object |
registryName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Component container definition. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | componentName, registryName, resourceGroupName, subscriptionId | |
list | SELECT | registryName, resourceGroupName, subscriptionId | |
create_or_update | INSERT | componentName, registryName, resourceGroupName, subscriptionId, data__properties | |
delete | DELETE | componentName, registryName, resourceGroupName, subscriptionId |
SELECT
examples
- vw_registry_component_containers
- registry_component_containers
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 }}';
SELECT
properties
FROM azure.ml_services.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.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.ml_services.registry_component_containers (
componentName,
registryName,
resourceGroupName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ componentName }}',
'{{ registryName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: isArchived
value: boolean
- name: latestVersion
value: string
- name: nextVersion
value: string
- name: provisioningState
value: []
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 }}';