import_pipelines
Creates, updates, deletes, gets or lists an import_pipelines
resource.
Overview
Name | import_pipelines |
Type | Resource |
Id | azure.container_registry.import_pipelines |
Fields
The following fields are returned by SELECT
queries:
- get
- list
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
identity | object | The identity of the import pipeline. |
location | string | The location of the import pipeline. |
properties | object | The properties of the import pipeline. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
identity | object | The identity of the import pipeline. |
location | string | The location of the import pipeline. |
properties | object | The properties of the import pipeline. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , registryName , importPipelineName | Gets the properties of the import pipeline. | |
list | select | subscriptionId , resourceGroupName , registryName | Lists all import pipelines for the specified container registry. | |
create | insert | subscriptionId , resourceGroupName , registryName , importPipelineName | Creates an import pipeline for a container registry with the specified parameters. | |
delete | delete | subscriptionId , resourceGroupName , registryName , importPipelineName | Deletes an import 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.
Name | Datatype | Description |
---|---|---|
importPipelineName | string | The name of the import pipeline. |
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
Gets the properties of the import pipeline.
SELECT
id,
name,
identity,
location,
properties,
systemData,
type
FROM azure.container_registry.import_pipelines
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND importPipelineName = '{{ importPipelineName }}' -- required
;
Lists all import pipelines for the specified container registry.
SELECT
id,
name,
identity,
location,
properties,
systemData,
type
FROM azure.container_registry.import_pipelines
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
;
INSERT
examples
- create
- Manifest
Creates an import pipeline for a container registry with the specified parameters.
INSERT INTO azure.container_registry.import_pipelines (
data__location,
data__identity,
data__properties,
subscriptionId,
resourceGroupName,
registryName,
importPipelineName
)
SELECT
'{{ location }}',
'{{ identity }}',
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ registryName }}',
'{{ importPipelineName }}'
RETURNING
id,
name,
identity,
location,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: import_pipelines
props:
- name: subscriptionId
value: string (uuid)
description: Required parameter for the import_pipelines resource.
- name: resourceGroupName
value: string
description: Required parameter for the import_pipelines resource.
- name: registryName
value: string
description: Required parameter for the import_pipelines resource.
- name: importPipelineName
value: string
description: Required parameter for the import_pipelines resource.
- name: location
value: string
description: |
The location of the import pipeline.
- name: identity
value: object
description: |
The identity of the import pipeline.
- name: properties
value: object
description: |
The properties of the import pipeline.
DELETE
examples
- delete
Deletes an import pipeline from a container registry.
DELETE FROM azure.container_registry.import_pipelines
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND registryName = '{{ registryName }}' --required
AND importPipelineName = '{{ importPipelineName }}' --required
;