1. Packages
  2. Azure Native
  3. API Docs
  4. containerregistry
  5. ExportPipeline
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.containerregistry.ExportPipeline

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

An object that represents an export pipeline for a container registry.

Uses Azure REST API version 2023-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.

Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native containerregistry [ApiVersion]. See the version guide for details.

Example Usage

ExportPipelineCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var exportPipeline = new AzureNative.ContainerRegistry.ExportPipeline("exportPipeline", new()
    {
        ExportPipelineName = "myExportPipeline",
        Identity = new AzureNative.ContainerRegistry.Inputs.IdentityPropertiesArgs
        {
            Type = AzureNative.ContainerRegistry.ResourceIdentityType.SystemAssigned,
        },
        Location = "westus",
        Options = new[]
        {
            AzureNative.ContainerRegistry.PipelineOptions.OverwriteBlobs,
        },
        RegistryName = "myRegistry",
        ResourceGroupName = "myResourceGroup",
        Target = new AzureNative.ContainerRegistry.Inputs.ExportPipelineTargetPropertiesArgs
        {
            KeyVaultUri = "https://myvault.vault.azure.net/secrets/acrexportsas",
            Type = "AzureStorageBlobContainer",
            Uri = "https://accountname.blob.core.windows.net/containername",
        },
    });

});
Copy
package main

import (
	containerregistry "github.com/pulumi/pulumi-azure-native-sdk/containerregistry/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := containerregistry.NewExportPipeline(ctx, "exportPipeline", &containerregistry.ExportPipelineArgs{
			ExportPipelineName: pulumi.String("myExportPipeline"),
			Identity: &containerregistry.IdentityPropertiesArgs{
				Type: containerregistry.ResourceIdentityTypeSystemAssigned,
			},
			Location: pulumi.String("westus"),
			Options: pulumi.StringArray{
				pulumi.String(containerregistry.PipelineOptionsOverwriteBlobs),
			},
			RegistryName:      pulumi.String("myRegistry"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Target: &containerregistry.ExportPipelineTargetPropertiesArgs{
				KeyVaultUri: pulumi.String("https://myvault.vault.azure.net/secrets/acrexportsas"),
				Type:        pulumi.String("AzureStorageBlobContainer"),
				Uri:         pulumi.String("https://accountname.blob.core.windows.net/containername"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.containerregistry.ExportPipeline;
import com.pulumi.azurenative.containerregistry.ExportPipelineArgs;
import com.pulumi.azurenative.containerregistry.inputs.IdentityPropertiesArgs;
import com.pulumi.azurenative.containerregistry.inputs.ExportPipelineTargetPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var exportPipeline = new ExportPipeline("exportPipeline", ExportPipelineArgs.builder()
            .exportPipelineName("myExportPipeline")
            .identity(IdentityPropertiesArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("westus")
            .options("OverwriteBlobs")
            .registryName("myRegistry")
            .resourceGroupName("myResourceGroup")
            .target(ExportPipelineTargetPropertiesArgs.builder()
                .keyVaultUri("https://myvault.vault.azure.net/secrets/acrexportsas")
                .type("AzureStorageBlobContainer")
                .uri("https://accountname.blob.core.windows.net/containername")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const exportPipeline = new azure_native.containerregistry.ExportPipeline("exportPipeline", {
    exportPipelineName: "myExportPipeline",
    identity: {
        type: azure_native.containerregistry.ResourceIdentityType.SystemAssigned,
    },
    location: "westus",
    options: [azure_native.containerregistry.PipelineOptions.OverwriteBlobs],
    registryName: "myRegistry",
    resourceGroupName: "myResourceGroup",
    target: {
        keyVaultUri: "https://myvault.vault.azure.net/secrets/acrexportsas",
        type: "AzureStorageBlobContainer",
        uri: "https://accountname.blob.core.windows.net/containername",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

export_pipeline = azure_native.containerregistry.ExportPipeline("exportPipeline",
    export_pipeline_name="myExportPipeline",
    identity={
        "type": azure_native.containerregistry.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    location="westus",
    options=[azure_native.containerregistry.PipelineOptions.OVERWRITE_BLOBS],
    registry_name="myRegistry",
    resource_group_name="myResourceGroup",
    target={
        "key_vault_uri": "https://myvault.vault.azure.net/secrets/acrexportsas",
        "type": "AzureStorageBlobContainer",
        "uri": "https://accountname.blob.core.windows.net/containername",
    })
Copy
resources:
  exportPipeline:
    type: azure-native:containerregistry:ExportPipeline
    properties:
      exportPipelineName: myExportPipeline
      identity:
        type: SystemAssigned
      location: westus
      options:
        - OverwriteBlobs
      registryName: myRegistry
      resourceGroupName: myResourceGroup
      target:
        keyVaultUri: https://myvault.vault.azure.net/secrets/acrexportsas
        type: AzureStorageBlobContainer
        uri: https://accountname.blob.core.windows.net/containername
Copy

Create ExportPipeline Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ExportPipeline(name: string, args: ExportPipelineArgs, opts?: CustomResourceOptions);
@overload
def ExportPipeline(resource_name: str,
                   args: ExportPipelineArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def ExportPipeline(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   registry_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   target: Optional[ExportPipelineTargetPropertiesArgs] = None,
                   export_pipeline_name: Optional[str] = None,
                   identity: Optional[IdentityPropertiesArgs] = None,
                   location: Optional[str] = None,
                   options: Optional[Sequence[Union[str, PipelineOptions]]] = None)
func NewExportPipeline(ctx *Context, name string, args ExportPipelineArgs, opts ...ResourceOption) (*ExportPipeline, error)
public ExportPipeline(string name, ExportPipelineArgs args, CustomResourceOptions? opts = null)
public ExportPipeline(String name, ExportPipelineArgs args)
public ExportPipeline(String name, ExportPipelineArgs args, CustomResourceOptions options)
type: azure-native:containerregistry:ExportPipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExportPipelineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExportPipelineArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExportPipelineArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExportPipelineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExportPipelineArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exportPipelineResource = new AzureNative.ContainerRegistry.ExportPipeline("exportPipelineResource", new()
{
    RegistryName = "string",
    ResourceGroupName = "string",
    Target = new AzureNative.ContainerRegistry.Inputs.ExportPipelineTargetPropertiesArgs
    {
        KeyVaultUri = "string",
        Type = "string",
        Uri = "string",
    },
    ExportPipelineName = "string",
    Identity = new AzureNative.ContainerRegistry.Inputs.IdentityPropertiesArgs
    {
        PrincipalId = "string",
        TenantId = "string",
        Type = AzureNative.ContainerRegistry.ResourceIdentityType.SystemAssigned,
        UserAssignedIdentities = 
        {
            { "string", new AzureNative.ContainerRegistry.Inputs.UserIdentityPropertiesArgs
            {
                ClientId = "string",
                PrincipalId = "string",
            } },
        },
    },
    Location = "string",
    Options = new[]
    {
        "string",
    },
});
Copy
example, err := containerregistry.NewExportPipeline(ctx, "exportPipelineResource", &containerregistry.ExportPipelineArgs{
	RegistryName:      pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Target: &containerregistry.ExportPipelineTargetPropertiesArgs{
		KeyVaultUri: pulumi.String("string"),
		Type:        pulumi.String("string"),
		Uri:         pulumi.String("string"),
	},
	ExportPipelineName: pulumi.String("string"),
	Identity: &containerregistry.IdentityPropertiesArgs{
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
		Type:        containerregistry.ResourceIdentityTypeSystemAssigned,
		UserAssignedIdentities: containerregistry.UserIdentityPropertiesMap{
			"string": &containerregistry.UserIdentityPropertiesArgs{
				ClientId:    pulumi.String("string"),
				PrincipalId: pulumi.String("string"),
			},
		},
	},
	Location: pulumi.String("string"),
	Options: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var exportPipelineResource = new ExportPipeline("exportPipelineResource", ExportPipelineArgs.builder()
    .registryName("string")
    .resourceGroupName("string")
    .target(ExportPipelineTargetPropertiesArgs.builder()
        .keyVaultUri("string")
        .type("string")
        .uri("string")
        .build())
    .exportPipelineName("string")
    .identity(IdentityPropertiesArgs.builder()
        .principalId("string")
        .tenantId("string")
        .type("SystemAssigned")
        .userAssignedIdentities(Map.of("string", Map.ofEntries(
            Map.entry("clientId", "string"),
            Map.entry("principalId", "string")
        )))
        .build())
    .location("string")
    .options("string")
    .build());
Copy
export_pipeline_resource = azure_native.containerregistry.ExportPipeline("exportPipelineResource",
    registry_name="string",
    resource_group_name="string",
    target={
        "key_vault_uri": "string",
        "type": "string",
        "uri": "string",
    },
    export_pipeline_name="string",
    identity={
        "principal_id": "string",
        "tenant_id": "string",
        "type": azure_native.containerregistry.ResourceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": {
            "string": {
                "client_id": "string",
                "principal_id": "string",
            },
        },
    },
    location="string",
    options=["string"])
Copy
const exportPipelineResource = new azure_native.containerregistry.ExportPipeline("exportPipelineResource", {
    registryName: "string",
    resourceGroupName: "string",
    target: {
        keyVaultUri: "string",
        type: "string",
        uri: "string",
    },
    exportPipelineName: "string",
    identity: {
        principalId: "string",
        tenantId: "string",
        type: azure_native.containerregistry.ResourceIdentityType.SystemAssigned,
        userAssignedIdentities: {
            string: {
                clientId: "string",
                principalId: "string",
            },
        },
    },
    location: "string",
    options: ["string"],
});
Copy
type: azure-native:containerregistry:ExportPipeline
properties:
    exportPipelineName: string
    identity:
        principalId: string
        tenantId: string
        type: SystemAssigned
        userAssignedIdentities:
            string:
                clientId: string
                principalId: string
    location: string
    options:
        - string
    registryName: string
    resourceGroupName: string
    target:
        keyVaultUri: string
        type: string
        uri: string
Copy

ExportPipeline Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ExportPipeline resource accepts the following input properties:

RegistryName
This property is required.
Changes to this property will trigger replacement.
string
The name of the container registry.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Target This property is required. Pulumi.AzureNative.ContainerRegistry.Inputs.ExportPipelineTargetProperties
The target properties of the export pipeline.
ExportPipelineName Changes to this property will trigger replacement. string
The name of the export pipeline.
Identity Pulumi.AzureNative.ContainerRegistry.Inputs.IdentityProperties
The identity of the export pipeline.
Location string
The location of the export pipeline.
Options List<Union<string, Pulumi.AzureNative.ContainerRegistry.PipelineOptions>>
The list of all options configured for the pipeline.
RegistryName
This property is required.
Changes to this property will trigger replacement.
string
The name of the container registry.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Target This property is required. ExportPipelineTargetPropertiesArgs
The target properties of the export pipeline.
ExportPipelineName Changes to this property will trigger replacement. string
The name of the export pipeline.
Identity IdentityPropertiesArgs
The identity of the export pipeline.
Location string
The location of the export pipeline.
Options []string
The list of all options configured for the pipeline.
registryName
This property is required.
Changes to this property will trigger replacement.
String
The name of the container registry.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
target This property is required. ExportPipelineTargetProperties
The target properties of the export pipeline.
exportPipelineName Changes to this property will trigger replacement. String
The name of the export pipeline.
identity IdentityProperties
The identity of the export pipeline.
location String
The location of the export pipeline.
options List<Either<String,PipelineOptions>>
The list of all options configured for the pipeline.
registryName
This property is required.
Changes to this property will trigger replacement.
string
The name of the container registry.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
target This property is required. ExportPipelineTargetProperties
The target properties of the export pipeline.
exportPipelineName Changes to this property will trigger replacement. string
The name of the export pipeline.
identity IdentityProperties
The identity of the export pipeline.
location string
The location of the export pipeline.
options (string | PipelineOptions)[]
The list of all options configured for the pipeline.
registry_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the container registry.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
target This property is required. ExportPipelineTargetPropertiesArgs
The target properties of the export pipeline.
export_pipeline_name Changes to this property will trigger replacement. str
The name of the export pipeline.
identity IdentityPropertiesArgs
The identity of the export pipeline.
location str
The location of the export pipeline.
options Sequence[Union[str, PipelineOptions]]
The list of all options configured for the pipeline.
registryName
This property is required.
Changes to this property will trigger replacement.
String
The name of the container registry.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
target This property is required. Property Map
The target properties of the export pipeline.
exportPipelineName Changes to this property will trigger replacement. String
The name of the export pipeline.
identity Property Map
The identity of the export pipeline.
location String
The location of the export pipeline.
options List<String | "OverwriteTags" | "OverwriteBlobs" | "DeleteSourceBlobOnSuccess" | "ContinueOnErrors">
The list of all options configured for the pipeline.

Outputs

All input properties are implicitly available as output properties. Additionally, the ExportPipeline resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
ProvisioningState string
The provisioning state of the pipeline at the time the operation was called.
SystemData Pulumi.AzureNative.ContainerRegistry.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
ProvisioningState string
The provisioning state of the pipeline at the time the operation was called.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
provisioningState String
The provisioning state of the pipeline at the time the operation was called.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource.
provisioningState string
The provisioning state of the pipeline at the time the operation was called.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the resource.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource.
provisioning_state str
The provisioning state of the pipeline at the time the operation was called.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
provisioningState String
The provisioning state of the pipeline at the time the operation was called.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.

Supporting Types

ExportPipelineTargetProperties
, ExportPipelineTargetPropertiesArgs

KeyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
Type string
The type of target for the export pipeline.
Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
KeyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
Type string
The type of target for the export pipeline.
Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. String
They key vault secret uri to obtain the target storage SAS token.
type String
The type of target for the export pipeline.
uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
type string
The type of target for the export pipeline.
uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
key_vault_uri This property is required. str
They key vault secret uri to obtain the target storage SAS token.
type str
The type of target for the export pipeline.
uri str
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. String
They key vault secret uri to obtain the target storage SAS token.
type String
The type of target for the export pipeline.
uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"

ExportPipelineTargetPropertiesResponse
, ExportPipelineTargetPropertiesResponseArgs

KeyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
Type string
The type of target for the export pipeline.
Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
KeyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
Type string
The type of target for the export pipeline.
Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. String
They key vault secret uri to obtain the target storage SAS token.
type String
The type of target for the export pipeline.
uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. string
They key vault secret uri to obtain the target storage SAS token.
type string
The type of target for the export pipeline.
uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
key_vault_uri This property is required. str
They key vault secret uri to obtain the target storage SAS token.
type str
The type of target for the export pipeline.
uri str
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
keyVaultUri This property is required. String
They key vault secret uri to obtain the target storage SAS token.
type String
The type of target for the export pipeline.
uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"

IdentityProperties
, IdentityPropertiesArgs

PrincipalId string
The principal ID of resource identity.
TenantId string
The tenant ID of resource.
Type Pulumi.AzureNative.ContainerRegistry.ResourceIdentityType
The identity type.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ContainerRegistry.Inputs.UserIdentityProperties>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
PrincipalId string
The principal ID of resource identity.
TenantId string
The tenant ID of resource.
Type ResourceIdentityType
The identity type.
UserAssignedIdentities map[string]UserIdentityProperties
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId String
The principal ID of resource identity.
tenantId String
The tenant ID of resource.
type ResourceIdentityType
The identity type.
userAssignedIdentities Map<String,UserIdentityProperties>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId string
The principal ID of resource identity.
tenantId string
The tenant ID of resource.
type ResourceIdentityType
The identity type.
userAssignedIdentities {[key: string]: UserIdentityProperties}
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principal_id str
The principal ID of resource identity.
tenant_id str
The tenant ID of resource.
type ResourceIdentityType
The identity type.
user_assigned_identities Mapping[str, UserIdentityProperties]
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId String
The principal ID of resource identity.
tenantId String
The tenant ID of resource.
type "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None"
The identity type.
userAssignedIdentities Map<Property Map>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

IdentityPropertiesResponse
, IdentityPropertiesResponseArgs

PrincipalId string
The principal ID of resource identity.
TenantId string
The tenant ID of resource.
Type string
The identity type.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ContainerRegistry.Inputs.UserIdentityPropertiesResponse>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
PrincipalId string
The principal ID of resource identity.
TenantId string
The tenant ID of resource.
Type string
The identity type.
UserAssignedIdentities map[string]UserIdentityPropertiesResponse
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId String
The principal ID of resource identity.
tenantId String
The tenant ID of resource.
type String
The identity type.
userAssignedIdentities Map<String,UserIdentityPropertiesResponse>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId string
The principal ID of resource identity.
tenantId string
The tenant ID of resource.
type string
The identity type.
userAssignedIdentities {[key: string]: UserIdentityPropertiesResponse}
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principal_id str
The principal ID of resource identity.
tenant_id str
The tenant ID of resource.
type str
The identity type.
user_assigned_identities Mapping[str, UserIdentityPropertiesResponse]
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId String
The principal ID of resource identity.
tenantId String
The tenant ID of resource.
type String
The identity type.
userAssignedIdentities Map<Property Map>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

PipelineOptions
, PipelineOptionsArgs

OverwriteTags
OverwriteTags
OverwriteBlobs
OverwriteBlobs
DeleteSourceBlobOnSuccess
DeleteSourceBlobOnSuccess
ContinueOnErrors
ContinueOnErrors
PipelineOptionsOverwriteTags
OverwriteTags
PipelineOptionsOverwriteBlobs
OverwriteBlobs
PipelineOptionsDeleteSourceBlobOnSuccess
DeleteSourceBlobOnSuccess
PipelineOptionsContinueOnErrors
ContinueOnErrors
OverwriteTags
OverwriteTags
OverwriteBlobs
OverwriteBlobs
DeleteSourceBlobOnSuccess
DeleteSourceBlobOnSuccess
ContinueOnErrors
ContinueOnErrors
OverwriteTags
OverwriteTags
OverwriteBlobs
OverwriteBlobs
DeleteSourceBlobOnSuccess
DeleteSourceBlobOnSuccess
ContinueOnErrors
ContinueOnErrors
OVERWRITE_TAGS
OverwriteTags
OVERWRITE_BLOBS
OverwriteBlobs
DELETE_SOURCE_BLOB_ON_SUCCESS
DeleteSourceBlobOnSuccess
CONTINUE_ON_ERRORS
ContinueOnErrors
"OverwriteTags"
OverwriteTags
"OverwriteBlobs"
OverwriteBlobs
"DeleteSourceBlobOnSuccess"
DeleteSourceBlobOnSuccess
"ContinueOnErrors"
ContinueOnErrors

ResourceIdentityType
, ResourceIdentityTypeArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
ResourceIdentityTypeSystemAssigned
SystemAssigned
ResourceIdentityTypeUserAssigned
UserAssigned
ResourceIdentityType_SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
ResourceIdentityTypeNone
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned, UserAssigned
NONE
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned, UserAssigned"
SystemAssigned, UserAssigned
"None"
None

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource modification (UTC).
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource modification (UTC).
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserIdentityProperties
, UserIdentityPropertiesArgs

ClientId string
The client id of user assigned identity.
PrincipalId string
The principal id of user assigned identity.
ClientId string
The client id of user assigned identity.
PrincipalId string
The principal id of user assigned identity.
clientId String
The client id of user assigned identity.
principalId String
The principal id of user assigned identity.
clientId string
The client id of user assigned identity.
principalId string
The principal id of user assigned identity.
client_id str
The client id of user assigned identity.
principal_id str
The principal id of user assigned identity.
clientId String
The client id of user assigned identity.
principalId String
The principal id of user assigned identity.

UserIdentityPropertiesResponse
, UserIdentityPropertiesResponseArgs

ClientId string
The client id of user assigned identity.
PrincipalId string
The principal id of user assigned identity.
ClientId string
The client id of user assigned identity.
PrincipalId string
The principal id of user assigned identity.
clientId String
The client id of user assigned identity.
principalId String
The principal id of user assigned identity.
clientId string
The client id of user assigned identity.
principalId string
The principal id of user assigned identity.
client_id str
The client id of user assigned identity.
principal_id str
The principal id of user assigned identity.
clientId String
The client id of user assigned identity.
principalId String
The principal id of user assigned identity.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:containerregistry:ExportPipeline myExportPipeline /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/exportPipelines/{exportPipelineName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi