Skip to main content

export_pipelines

Creates, updates, deletes, gets or lists an export_pipelines resource.

Overview

Nameexport_pipelines
TypeResource
Idazure.container_registry.export_pipelines

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringThe resource ID.
namestringThe name of the resource.
identityobjectThe identity of the export pipeline.
locationstringThe location of the export pipeline.
propertiesobjectThe properties of the export pipeline.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryName, exportPipelineNameGets the properties of the export pipeline.
listselectsubscriptionId, resourceGroupName, registryNameLists all export pipelines for the specified container registry.
createinsertsubscriptionId, resourceGroupName, registryName, exportPipelineNameCreates an export pipeline for a container registry with the specified parameters.
deletedeletesubscriptionId, resourceGroupName, registryName, exportPipelineNameDeletes an export pipeline from a container registry.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
exportPipelineNamestringThe name of the export pipeline.
registryNamestringThe name of the container registry.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets the properties of the export pipeline.

SELECT
id,
name,
identity,
location,
properties,
systemData,
type
FROM azure.container_registry.export_pipelines
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND exportPipelineName = '{{ exportPipelineName }}' -- required
;

INSERT examples

Creates an export pipeline for a container registry with the specified parameters.

INSERT INTO azure.container_registry.export_pipelines (
data__location,
data__identity,
data__properties,
subscriptionId,
resourceGroupName,
registryName,
exportPipelineName
)
SELECT
'{{ location }}',
'{{ identity }}',
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ registryName }}',
'{{ exportPipelineName }}'
RETURNING
id,
name,
identity,
location,
properties,
systemData,
type
;

DELETE examples

Deletes an export pipeline from a container registry.

DELETE FROM azure.container_registry.export_pipelines
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND registryName = '{{ registryName }}' --required
AND exportPipelineName = '{{ exportPipelineName }}' --required
;