1. Packages
  2. Azure Native
  3. API Docs
  4. containerregistry
  5. ImportPipeline
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.containerregistry.ImportPipeline

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    An object that represents an import pipeline for a container registry. Azure REST API version: 2023-01-01-preview. Prior API version in Azure Native 1.x: 2020-11-01-preview.

    Other available API versions: 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview.

    Example Usage

    ImportPipelineCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var importPipeline = new AzureNative.ContainerRegistry.ImportPipeline("importPipeline", new()
        {
            Identity = new AzureNative.ContainerRegistry.Inputs.IdentityPropertiesArgs
            {
                Type = AzureNative.ContainerRegistry.ResourceIdentityType.UserAssigned,
                UserAssignedIdentities = 
                {
                    { "/subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2", null },
                },
            },
            ImportPipelineName = "myImportPipeline",
            Location = "westus",
            Options = new[]
            {
                AzureNative.ContainerRegistry.PipelineOptions.OverwriteTags,
                AzureNative.ContainerRegistry.PipelineOptions.DeleteSourceBlobOnSuccess,
                AzureNative.ContainerRegistry.PipelineOptions.ContinueOnErrors,
            },
            RegistryName = "myRegistry",
            ResourceGroupName = "myResourceGroup",
            Source = new AzureNative.ContainerRegistry.Inputs.ImportPipelineSourcePropertiesArgs
            {
                KeyVaultUri = "https://myvault.vault.azure.net/secrets/acrimportsas",
                Type = AzureNative.ContainerRegistry.PipelineSourceType.AzureStorageBlobContainer,
                Uri = "https://accountname.blob.core.windows.net/containername",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/containerregistry/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := containerregistry.NewImportPipeline(ctx, "importPipeline", &containerregistry.ImportPipelineArgs{
    			Identity: &containerregistry.IdentityPropertiesArgs{
    				Type: containerregistry.ResourceIdentityTypeUserAssigned,
    				UserAssignedIdentities: containerregistry.UserIdentityPropertiesMap{
    					"/subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": nil,
    				},
    			},
    			ImportPipelineName: pulumi.String("myImportPipeline"),
    			Location:           pulumi.String("westus"),
    			Options: pulumi.StringArray{
    				pulumi.String(containerregistry.PipelineOptionsOverwriteTags),
    				pulumi.String(containerregistry.PipelineOptionsDeleteSourceBlobOnSuccess),
    				pulumi.String(containerregistry.PipelineOptionsContinueOnErrors),
    			},
    			RegistryName:      pulumi.String("myRegistry"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			Source: &containerregistry.ImportPipelineSourcePropertiesArgs{
    				KeyVaultUri: pulumi.String("https://myvault.vault.azure.net/secrets/acrimportsas"),
    				Type:        pulumi.String(containerregistry.PipelineSourceTypeAzureStorageBlobContainer),
    				Uri:         pulumi.String("https://accountname.blob.core.windows.net/containername"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.containerregistry.ImportPipeline;
    import com.pulumi.azurenative.containerregistry.ImportPipelineArgs;
    import com.pulumi.azurenative.containerregistry.inputs.IdentityPropertiesArgs;
    import com.pulumi.azurenative.containerregistry.inputs.ImportPipelineSourcePropertiesArgs;
    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 importPipeline = new ImportPipeline("importPipeline", ImportPipelineArgs.builder()        
                .identity(IdentityPropertiesArgs.builder()
                    .type("UserAssigned")
                    .userAssignedIdentities(Map.of("/subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2", ))
                    .build())
                .importPipelineName("myImportPipeline")
                .location("westus")
                .options(            
                    "OverwriteTags",
                    "DeleteSourceBlobOnSuccess",
                    "ContinueOnErrors")
                .registryName("myRegistry")
                .resourceGroupName("myResourceGroup")
                .source(ImportPipelineSourcePropertiesArgs.builder()
                    .keyVaultUri("https://myvault.vault.azure.net/secrets/acrimportsas")
                    .type("AzureStorageBlobContainer")
                    .uri("https://accountname.blob.core.windows.net/containername")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    import_pipeline = azure_native.containerregistry.ImportPipeline("importPipeline",
        identity=azure_native.containerregistry.IdentityPropertiesArgs(
            type=azure_native.containerregistry.ResourceIdentityType.USER_ASSIGNED,
            user_assigned_identities={
                "/subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": azure_native.containerregistry.UserIdentityPropertiesArgs(),
            },
        ),
        import_pipeline_name="myImportPipeline",
        location="westus",
        options=[
            azure_native.containerregistry.PipelineOptions.OVERWRITE_TAGS,
            azure_native.containerregistry.PipelineOptions.DELETE_SOURCE_BLOB_ON_SUCCESS,
            azure_native.containerregistry.PipelineOptions.CONTINUE_ON_ERRORS,
        ],
        registry_name="myRegistry",
        resource_group_name="myResourceGroup",
        source=azure_native.containerregistry.ImportPipelineSourcePropertiesArgs(
            key_vault_uri="https://myvault.vault.azure.net/secrets/acrimportsas",
            type=azure_native.containerregistry.PipelineSourceType.AZURE_STORAGE_BLOB_CONTAINER,
            uri="https://accountname.blob.core.windows.net/containername",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const importPipeline = new azure_native.containerregistry.ImportPipeline("importPipeline", {
        identity: {
            type: azure_native.containerregistry.ResourceIdentityType.UserAssigned,
            userAssignedIdentities: {
                "/subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {},
            },
        },
        importPipelineName: "myImportPipeline",
        location: "westus",
        options: [
            azure_native.containerregistry.PipelineOptions.OverwriteTags,
            azure_native.containerregistry.PipelineOptions.DeleteSourceBlobOnSuccess,
            azure_native.containerregistry.PipelineOptions.ContinueOnErrors,
        ],
        registryName: "myRegistry",
        resourceGroupName: "myResourceGroup",
        source: {
            keyVaultUri: "https://myvault.vault.azure.net/secrets/acrimportsas",
            type: azure_native.containerregistry.PipelineSourceType.AzureStorageBlobContainer,
            uri: "https://accountname.blob.core.windows.net/containername",
        },
    });
    
    resources:
      importPipeline:
        type: azure-native:containerregistry:ImportPipeline
        properties:
          identity:
            type: UserAssigned
            userAssignedIdentities:
              ? /subscriptions/f9d7ebed-adbd-4cb4-b973-aaf82c136138/resourcegroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2
              : {}
          importPipelineName: myImportPipeline
          location: westus
          options:
            - OverwriteTags
            - DeleteSourceBlobOnSuccess
            - ContinueOnErrors
          registryName: myRegistry
          resourceGroupName: myResourceGroup
          source:
            keyVaultUri: https://myvault.vault.azure.net/secrets/acrimportsas
            type: AzureStorageBlobContainer
            uri: https://accountname.blob.core.windows.net/containername
    

    Create ImportPipeline Resource

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

    Constructor syntax

    new ImportPipeline(name: string, args: ImportPipelineArgs, opts?: CustomResourceOptions);
    @overload
    def ImportPipeline(resource_name: str,
                       args: ImportPipelineArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ImportPipeline(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       registry_name: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       source: Optional[ImportPipelineSourcePropertiesArgs] = None,
                       identity: Optional[IdentityPropertiesArgs] = None,
                       import_pipeline_name: Optional[str] = None,
                       location: Optional[str] = None,
                       options: Optional[Sequence[Union[str, PipelineOptions]]] = None,
                       trigger: Optional[PipelineTriggerPropertiesArgs] = None)
    func NewImportPipeline(ctx *Context, name string, args ImportPipelineArgs, opts ...ResourceOption) (*ImportPipeline, error)
    public ImportPipeline(string name, ImportPipelineArgs args, CustomResourceOptions? opts = null)
    public ImportPipeline(String name, ImportPipelineArgs args)
    public ImportPipeline(String name, ImportPipelineArgs args, CustomResourceOptions options)
    
    type: azure-native:containerregistry:ImportPipeline
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var importPipelineResource = new AzureNative.ContainerRegistry.ImportPipeline("importPipelineResource", new()
    {
        RegistryName = "string",
        ResourceGroupName = "string",
        Source = new AzureNative.ContainerRegistry.Inputs.ImportPipelineSourcePropertiesArgs
        {
            KeyVaultUri = "string",
            Type = "string",
            Uri = "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",
                } },
            },
        },
        ImportPipelineName = "string",
        Location = "string",
        Options = new[]
        {
            "string",
        },
        Trigger = new AzureNative.ContainerRegistry.Inputs.PipelineTriggerPropertiesArgs
        {
            SourceTrigger = new AzureNative.ContainerRegistry.Inputs.PipelineSourceTriggerPropertiesArgs
            {
                Status = "string",
            },
        },
    });
    
    example, err := containerregistry.NewImportPipeline(ctx, "importPipelineResource", &containerregistry.ImportPipelineArgs{
    RegistryName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Source: &containerregistry.ImportPipelineSourcePropertiesArgs{
    KeyVaultUri: pulumi.String("string"),
    Type: pulumi.String("string"),
    Uri: 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"),
    },
    },
    },
    ImportPipelineName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Options: pulumi.StringArray{
    pulumi.String("string"),
    },
    Trigger: &containerregistry.PipelineTriggerPropertiesArgs{
    SourceTrigger: &containerregistry.PipelineSourceTriggerPropertiesArgs{
    Status: pulumi.String("string"),
    },
    },
    })
    
    var importPipelineResource = new ImportPipeline("importPipelineResource", ImportPipelineArgs.builder()        
        .registryName("string")
        .resourceGroupName("string")
        .source(ImportPipelineSourcePropertiesArgs.builder()
            .keyVaultUri("string")
            .type("string")
            .uri("string")
            .build())
        .identity(IdentityPropertiesArgs.builder()
            .principalId("string")
            .tenantId("string")
            .type("SystemAssigned")
            .userAssignedIdentities(Map.of("string", Map.ofEntries(
                Map.entry("clientId", "string"),
                Map.entry("principalId", "string")
            )))
            .build())
        .importPipelineName("string")
        .location("string")
        .options("string")
        .trigger(PipelineTriggerPropertiesArgs.builder()
            .sourceTrigger(PipelineSourceTriggerPropertiesArgs.builder()
                .status("string")
                .build())
            .build())
        .build());
    
    import_pipeline_resource = azure_native.containerregistry.ImportPipeline("importPipelineResource",
        registry_name="string",
        resource_group_name="string",
        source=azure_native.containerregistry.ImportPipelineSourcePropertiesArgs(
            key_vault_uri="string",
            type="string",
            uri="string",
        ),
        identity=azure_native.containerregistry.IdentityPropertiesArgs(
            principal_id="string",
            tenant_id="string",
            type=azure_native.containerregistry.ResourceIdentityType.SYSTEM_ASSIGNED,
            user_assigned_identities={
                "string": azure_native.containerregistry.UserIdentityPropertiesArgs(
                    client_id="string",
                    principal_id="string",
                ),
            },
        ),
        import_pipeline_name="string",
        location="string",
        options=["string"],
        trigger=azure_native.containerregistry.PipelineTriggerPropertiesArgs(
            source_trigger=azure_native.containerregistry.PipelineSourceTriggerPropertiesArgs(
                status="string",
            ),
        ))
    
    const importPipelineResource = new azure_native.containerregistry.ImportPipeline("importPipelineResource", {
        registryName: "string",
        resourceGroupName: "string",
        source: {
            keyVaultUri: "string",
            type: "string",
            uri: "string",
        },
        identity: {
            principalId: "string",
            tenantId: "string",
            type: azure_native.containerregistry.ResourceIdentityType.SystemAssigned,
            userAssignedIdentities: {
                string: {
                    clientId: "string",
                    principalId: "string",
                },
            },
        },
        importPipelineName: "string",
        location: "string",
        options: ["string"],
        trigger: {
            sourceTrigger: {
                status: "string",
            },
        },
    });
    
    type: azure-native:containerregistry:ImportPipeline
    properties:
        identity:
            principalId: string
            tenantId: string
            type: SystemAssigned
            userAssignedIdentities:
                string:
                    clientId: string
                    principalId: string
        importPipelineName: string
        location: string
        options:
            - string
        registryName: string
        resourceGroupName: string
        source:
            keyVaultUri: string
            type: string
            uri: string
        trigger:
            sourceTrigger:
                status: string
    

    ImportPipeline Resource Properties

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

    Inputs

    The ImportPipeline resource accepts the following input properties:

    RegistryName string
    The name of the container registry.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Source Pulumi.AzureNative.ContainerRegistry.Inputs.ImportPipelineSourceProperties
    The source properties of the import pipeline.
    Identity Pulumi.AzureNative.ContainerRegistry.Inputs.IdentityProperties
    The identity of the import pipeline.
    ImportPipelineName string
    The name of the import pipeline.
    Location string
    The location of the import pipeline.
    Options List<Union<string, Pulumi.AzureNative.ContainerRegistry.PipelineOptions>>
    The list of all options configured for the pipeline.
    Trigger Pulumi.AzureNative.ContainerRegistry.Inputs.PipelineTriggerProperties
    The properties that describe the trigger 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.
    Source ImportPipelineSourcePropertiesArgs
    The source properties of the import pipeline.
    Identity IdentityPropertiesArgs
    The identity of the import pipeline.
    ImportPipelineName string
    The name of the import pipeline.
    Location string
    The location of the import pipeline.
    Options []string
    The list of all options configured for the pipeline.
    Trigger PipelineTriggerPropertiesArgs
    The properties that describe the trigger 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.
    source ImportPipelineSourceProperties
    The source properties of the import pipeline.
    identity IdentityProperties
    The identity of the import pipeline.
    importPipelineName String
    The name of the import pipeline.
    location String
    The location of the import pipeline.
    options List<Either<String,PipelineOptions>>
    The list of all options configured for the pipeline.
    trigger PipelineTriggerProperties
    The properties that describe the trigger 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.
    source ImportPipelineSourceProperties
    The source properties of the import pipeline.
    identity IdentityProperties
    The identity of the import pipeline.
    importPipelineName string
    The name of the import pipeline.
    location string
    The location of the import pipeline.
    options (string | PipelineOptions)[]
    The list of all options configured for the pipeline.
    trigger PipelineTriggerProperties
    The properties that describe the trigger of the import pipeline.
    registry_name str
    The name of the container registry.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    source ImportPipelineSourcePropertiesArgs
    The source properties of the import pipeline.
    identity IdentityPropertiesArgs
    The identity of the import pipeline.
    import_pipeline_name str
    The name of the import pipeline.
    location str
    The location of the import pipeline.
    options Sequence[Union[str, PipelineOptions]]
    The list of all options configured for the pipeline.
    trigger PipelineTriggerPropertiesArgs
    The properties that describe the trigger 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.
    source Property Map
    The source properties of the import pipeline.
    identity Property Map
    The identity of the import pipeline.
    importPipelineName String
    The name of the import pipeline.
    location String
    The location of the import pipeline.
    options List<String | "OverwriteTags" | "OverwriteBlobs" | "DeleteSourceBlobOnSuccess" | "ContinueOnErrors">
    The list of all options configured for the pipeline.
    trigger Property Map
    The properties that describe the trigger of the import pipeline.

    Outputs

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

    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.
    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.
    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.
    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.
    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.
    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

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

    ImportPipelineSourceProperties, ImportPipelineSourcePropertiesArgs

    KeyVaultUri string
    They key vault secret uri to obtain the source storage SAS token.
    Type string | Pulumi.AzureNative.ContainerRegistry.PipelineSourceType
    The type of source for the import pipeline.
    Uri string
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
    KeyVaultUri string
    They key vault secret uri to obtain the source storage SAS token.
    Type string | PipelineSourceType
    The type of source for the import pipeline.
    Uri string
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
    keyVaultUri String
    They key vault secret uri to obtain the source storage SAS token.
    type String | PipelineSourceType
    The type of source for the import pipeline.
    uri String
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
    keyVaultUri string
    They key vault secret uri to obtain the source storage SAS token.
    type string | PipelineSourceType
    The type of source for the import pipeline.
    uri string
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
    key_vault_uri str
    They key vault secret uri to obtain the source storage SAS token.
    type str | PipelineSourceType
    The type of source for the import pipeline.
    uri str
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
    keyVaultUri String
    They key vault secret uri to obtain the source storage SAS token.
    type String | "AzureStorageBlobContainer"
    The type of source for the import pipeline.
    uri String
    The source uri of the import pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"

    ImportPipelineSourcePropertiesResponse, ImportPipelineSourcePropertiesResponseArgs

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

    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

    PipelineSourceTriggerProperties, PipelineSourceTriggerPropertiesArgs

    Status string | Pulumi.AzureNative.ContainerRegistry.TriggerStatus
    The current status of the source trigger.
    Status string | TriggerStatus
    The current status of the source trigger.
    status String | TriggerStatus
    The current status of the source trigger.
    status string | TriggerStatus
    The current status of the source trigger.
    status str | TriggerStatus
    The current status of the source trigger.
    status String | "Disabled" | "Enabled"
    The current status of the source trigger.

    PipelineSourceTriggerPropertiesResponse, PipelineSourceTriggerPropertiesResponseArgs

    Status string
    The current status of the source trigger.
    Status string
    The current status of the source trigger.
    status String
    The current status of the source trigger.
    status string
    The current status of the source trigger.
    status str
    The current status of the source trigger.
    status String
    The current status of the source trigger.

    PipelineSourceType, PipelineSourceTypeArgs

    AzureStorageBlobContainer
    AzureStorageBlobContainer
    PipelineSourceTypeAzureStorageBlobContainer
    AzureStorageBlobContainer
    AzureStorageBlobContainer
    AzureStorageBlobContainer
    AzureStorageBlobContainer
    AzureStorageBlobContainer
    AZURE_STORAGE_BLOB_CONTAINER
    AzureStorageBlobContainer
    "AzureStorageBlobContainer"
    AzureStorageBlobContainer

    PipelineTriggerProperties, PipelineTriggerPropertiesArgs

    SourceTrigger PipelineSourceTriggerProperties
    The source trigger properties of the pipeline.
    sourceTrigger PipelineSourceTriggerProperties
    The source trigger properties of the pipeline.
    sourceTrigger PipelineSourceTriggerProperties
    The source trigger properties of the pipeline.
    source_trigger PipelineSourceTriggerProperties
    The source trigger properties of the pipeline.
    sourceTrigger Property Map
    The source trigger properties of the pipeline.

    PipelineTriggerPropertiesResponse, PipelineTriggerPropertiesResponseArgs

    SourceTrigger PipelineSourceTriggerPropertiesResponse
    The source trigger properties of the pipeline.
    sourceTrigger PipelineSourceTriggerPropertiesResponse
    The source trigger properties of the pipeline.
    sourceTrigger PipelineSourceTriggerPropertiesResponse
    The source trigger properties of the pipeline.
    source_trigger PipelineSourceTriggerPropertiesResponse
    The source trigger properties of the pipeline.
    sourceTrigger Property Map
    The source trigger properties of the pipeline.

    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.

    TriggerStatus, TriggerStatusArgs

    Disabled
    Disabled
    Enabled
    Enabled
    TriggerStatusDisabled
    Disabled
    TriggerStatusEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    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:ImportPipeline myImportPipeline /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/importPipelines/{importPipelineName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi