export_pipelines
Creates, updates, deletes, gets or lists a export_pipelines
resource.
Overview
Name | export_pipelines |
Type | Resource |
Id | azure.container_registry.export_pipelines |
Fields
- vw_export_pipelines
- export_pipelines
Name | Datatype | Description |
---|---|---|
exportPipelineName | text | field from the properties object |
identity | text | Managed identity for the resource. |
location | text | The location of the export pipeline. |
options | 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 |
target | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identity | object | Managed identity for the resource. |
location | string | The location of the export pipeline. |
properties | object | The properties of an export pipeline. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | exportPipelineName, registryName, resourceGroupName, subscriptionId | Gets the properties of the export pipeline. |
list | SELECT | registryName, resourceGroupName, subscriptionId | Lists all export pipelines for the specified container registry. |
create | INSERT | exportPipelineName, registryName, resourceGroupName, subscriptionId | Creates an export pipeline for a container registry with the specified parameters. |
delete | DELETE | exportPipelineName, registryName, resourceGroupName, subscriptionId | Deletes an export pipeline from a container registry. |
SELECT
examples
Lists all export pipelines for the specified container registry.
- vw_export_pipelines
- export_pipelines
SELECT
exportPipelineName,
identity,
location,
options,
provisioning_state,
registryName,
resourceGroupName,
subscriptionId,
target
FROM azure.container_registry.vw_export_pipelines
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
identity,
location,
properties
FROM azure.container_registry.export_pipelines
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new export_pipelines
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.container_registry.export_pipelines (
exportPipelineName,
registryName,
resourceGroupName,
subscriptionId,
location,
identity,
properties
)
SELECT
'{{ exportPipelineName }}',
'{{ registryName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ location }}',
'{{ identity }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: location
value: string
- name: identity
value:
- name: principalId
value: string
- name: tenantId
value: string
- name: type
value: string
- name: userAssignedIdentities
value: object
- name: properties
value:
- name: target
value:
- name: type
value: string
- name: uri
value: string
- name: keyVaultUri
value: string
- name: options
value:
- string
- name: provisioningState
value: string
DELETE
example
Deletes the specified export_pipelines
resource.
/*+ delete */
DELETE FROM azure.container_registry.export_pipelines
WHERE exportPipelineName = '{{ exportPipelineName }}'
AND registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';