Skip to main content

export_pipelines

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

Overview

Nameexport_pipelines
TypeResource
Idazure.container_registry.export_pipelines

Fields

NameDatatypeDescription
exportPipelineNametextfield from the properties object
identitytextManaged identity for the resource.
locationtextThe location of the export pipeline.
optionstextfield 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
targettextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTexportPipelineName, registryName, resourceGroupName, subscriptionIdGets the properties of the export pipeline.
listSELECTregistryName, resourceGroupName, subscriptionIdLists all export pipelines for the specified container registry.
createINSERTexportPipelineName, registryName, resourceGroupName, subscriptionIdCreates an export pipeline for a container registry with the specified parameters.
deleteDELETEexportPipelineName, registryName, resourceGroupName, subscriptionIdDeletes an export pipeline from a container registry.

SELECT examples

Lists all export pipelines for the specified container registry.

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 }}';

INSERT example

Use the following StackQL query and manifest file to create a new export_pipelines resource.

/*+ create */
INSERT INTO azure.container_registry.export_pipelines (
exportPipelineName,
registryName,
resourceGroupName,
subscriptionId,
location,
identity,
properties
)
SELECT
'{{ exportPipelineName }}',
'{{ registryName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ location }}',
'{{ identity }}',
'{{ properties }}'
;

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 }}';