azure-native.containerregistry.ImportPipeline
Explore with Pulumi AI
An object that represents an import pipeline for a container registry. API Version: 2020-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[]
        {
            "OverwriteTags",
            "DeleteSourceBlobOnSuccess",
            "ContinueOnErrors",
        },
        RegistryName = "myRegistry",
        ResourceGroupName = "myResourceGroup",
        Source = new AzureNative.ContainerRegistry.Inputs.ImportPipelineSourcePropertiesArgs
        {
            KeyVaultUri = "https://myvault.vault.azure.net/secrets/acrimportsas",
            Type = "AzureStorageBlobContainer",
            Uri = "https://accountname.blob.core.windows.net/containername",
        },
    });
});
package main
import (
	containerregistry "github.com/pulumi/pulumi-azure-native-sdk/containerregistry"
	"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.IdentityPropertiesResponse{
				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("OverwriteTags"),
				pulumi.String("DeleteSourceBlobOnSuccess"),
				pulumi.String("ContinueOnErrors"),
			},
			RegistryName:      pulumi.String("myRegistry"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Source: &containerregistry.ImportPipelineSourcePropertiesArgs{
				KeyVaultUri: pulumi.String("https://myvault.vault.azure.net/secrets/acrimportsas"),
				Type:        pulumi.String("AzureStorageBlobContainer"),
				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 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(Map.ofEntries(
                Map.entry("type", "UserAssigned"),
                Map.entry("userAssignedIdentities", Map.of("/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(Map.ofEntries(
                Map.entry("keyVaultUri", "https://myvault.vault.azure.net/secrets/acrimportsas"),
                Map.entry("type", "AzureStorageBlobContainer"),
                Map.entry("uri", "https://accountname.blob.core.windows.net/containername")
            ))
            .build());
    }
}
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: [
        "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",
    },
});
import pulumi
import pulumi_azure_native as azure_native
import_pipeline = azure_native.containerregistry.ImportPipeline("importPipeline",
    identity=azure_native.containerregistry.IdentityPropertiesResponseArgs(
        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=[
        "OverwriteTags",
        "DeleteSourceBlobOnSuccess",
        "ContinueOnErrors",
    ],
    registry_name="myRegistry",
    resource_group_name="myResourceGroup",
    source=azure_native.containerregistry.ImportPipelineSourcePropertiesArgs(
        key_vault_uri="https://myvault.vault.azure.net/secrets/acrimportsas",
        type="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.
Constructor 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 = 
    {
        { "keyVaultUri", "string" },
        { "type", "string" },
        { "uri", "string" },
    },
    Identity = 
    {
        { "principalId", "string" },
        { "tenantId", "string" },
        { "type", "SystemAssigned" },
        { "userAssignedIdentities", 
        {
            { "string", 
            {
                { "clientId", "string" },
                { "principalId", "string" },
            } },
        } },
    },
    ImportPipelineName = "string",
    Location = "string",
    Options = new[]
    {
        "string",
    },
    Trigger = 
    {
        { "sourceTrigger", 
        {
            { "status", "string" },
        } },
    },
});
example, err := containerregistry.NewImportPipeline(ctx, "importPipelineResource", &containerregistry.ImportPipelineArgs{
	RegistryName:      "string",
	ResourceGroupName: "string",
	Source: map[string]interface{}{
		"keyVaultUri": "string",
		"type":        "string",
		"uri":         "string",
	},
	Identity: map[string]interface{}{
		"principalId": "string",
		"tenantId":    "string",
		"type":        "SystemAssigned",
		"userAssignedIdentities": map[string]interface{}{
			"string": map[string]interface{}{
				"clientId":    "string",
				"principalId": "string",
			},
		},
	},
	ImportPipelineName: "string",
	Location:           "string",
	Options: []string{
		"string",
	},
	Trigger: map[string]interface{}{
		"sourceTrigger": map[string]interface{}{
			"status": "string",
		},
	},
})
var importPipelineResource = new ImportPipeline("importPipelineResource", ImportPipelineArgs.builder()
    .registryName("string")
    .resourceGroupName("string")
    .source(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .importPipelineName("string")
    .location("string")
    .options("string")
    .trigger(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
import_pipeline_resource = azure_native.containerregistry.ImportPipeline("importPipelineResource",
    registry_name=string,
    resource_group_name=string,
    source={
        keyVaultUri: string,
        type: string,
        uri: string,
    },
    identity={
        principalId: string,
        tenantId: string,
        type: SystemAssigned,
        userAssignedIdentities: {
            string: {
                clientId: string,
                principalId: string,
            },
        },
    },
    import_pipeline_name=string,
    location=string,
    options=[string],
    trigger={
        sourceTrigger: {
            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: "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ImportPipeline resource accepts the following input properties:
- RegistryName string
- The name of the container registry.
- ResourceGroup stringName 
- The name of the resource group to which the container registry belongs.
- Source
Pulumi.Azure Native. Container Registry. Inputs. Import Pipeline Source Properties 
- The source properties of the import pipeline.
- Identity
Pulumi.Azure Native. Container Registry. Inputs. Identity Properties 
- The identity of the import pipeline.
- ImportPipeline stringName 
- The name of the import pipeline.
- Location string
- The location of the import pipeline.
- Options
List<Union<string, Pulumi.Azure Native. Container Registry. Pipeline Options>> 
- The list of all options configured for the pipeline.
- Trigger
Pulumi.Azure Native. Container Registry. Inputs. Pipeline Trigger Properties 
- The properties that describe the trigger of the import pipeline.
- RegistryName string
- The name of the container registry.
- ResourceGroup stringName 
- The name of the resource group to which the container registry belongs.
- Source
ImportPipeline Source Properties Args 
- The source properties of the import pipeline.
- Identity
IdentityProperties Args 
- The identity of the import pipeline.
- ImportPipeline stringName 
- 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
PipelineTrigger Properties Args 
- The properties that describe the trigger of the import pipeline.
- registryName String
- The name of the container registry.
- resourceGroup StringName 
- The name of the resource group to which the container registry belongs.
- source
ImportPipeline Source Properties 
- The source properties of the import pipeline.
- identity
IdentityProperties 
- The identity of the import pipeline.
- importPipeline StringName 
- 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
PipelineTrigger Properties 
- The properties that describe the trigger of the import pipeline.
- registryName string
- The name of the container registry.
- resourceGroup stringName 
- The name of the resource group to which the container registry belongs.
- source
ImportPipeline Source Properties 
- The source properties of the import pipeline.
- identity
IdentityProperties 
- The identity of the import pipeline.
- importPipeline stringName 
- 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
PipelineTrigger Properties 
- The properties that describe the trigger of the import pipeline.
- registry_name str
- The name of the container registry.
- resource_group_ strname 
- The name of the resource group to which the container registry belongs.
- source
ImportPipeline Source Properties Args 
- The source properties of the import pipeline.
- identity
IdentityProperties Args 
- The identity of the import pipeline.
- import_pipeline_ strname 
- 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
PipelineTrigger Properties Args 
- The properties that describe the trigger of the import pipeline.
- registryName String
- The name of the container registry.
- resourceGroup StringName 
- The name of the resource group to which the container registry belongs.
- source Property Map
- The source properties of the import pipeline.
- identity Property Map
- The identity of the import pipeline.
- importPipeline StringName 
- The name of the import pipeline.
- location String
- The location of the import pipeline.
- options
List<String | "OverwriteTags" | "Overwrite Blobs" | "Delete Source Blob On Success" | "Continue On Errors"> 
- 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.Azure Native. Container Registry. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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.Azure Native. Container Registry. Resource Identity Type 
- The identity type.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Container Registry. Inputs. User Identity Properties> 
- 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
ResourceIdentity Type 
- The identity type.
- UserAssigned map[string]UserIdentities Identity Properties 
- 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
ResourceIdentity Type 
- The identity type.
- userAssigned Map<String,UserIdentities Identity Properties> 
- 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
ResourceIdentity Type 
- The identity type.
- userAssigned {[key: string]: UserIdentities Identity Properties} 
- 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
ResourceIdentity Type 
- The identity type.
- user_assigned_ Mapping[str, Useridentities Identity Properties] 
- 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" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- The identity type.
- userAssigned Map<Property Map>Identities 
- 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.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Container Registry. Inputs. User Identity Properties Response> 
- 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.
- UserAssigned map[string]UserIdentities Identity Properties Response 
- 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.
- userAssigned Map<String,UserIdentities Identity Properties Response> 
- 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.
- userAssigned {[key: string]: UserIdentities Identity Properties Response} 
- 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_ Mapping[str, Useridentities Identity Properties Response] 
- 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.
- userAssigned Map<Property Map>Identities 
- 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        
- KeyVault stringUri 
- They key vault secret uri to obtain the source storage SAS token.
- Type
string | Pulumi.Azure Native. Container Registry. Pipeline Source Type 
- 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"
- KeyVault stringUri 
- They key vault secret uri to obtain the source storage SAS token.
- Type
string | PipelineSource Type 
- 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"
- keyVault StringUri 
- They key vault secret uri to obtain the source storage SAS token.
- type
String | PipelineSource Type 
- 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"
- keyVault stringUri 
- They key vault secret uri to obtain the source storage SAS token.
- type
string | PipelineSource Type 
- 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_ struri 
- They key vault secret uri to obtain the source storage SAS token.
- type
str | PipelineSource Type 
- 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"
- keyVault StringUri 
- They key vault secret uri to obtain the source storage SAS token.
- type
String | "AzureStorage Blob Container" 
- 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          
- KeyVault stringUri 
- 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"
- KeyVault stringUri 
- 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"
- keyVault StringUri 
- 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"
- keyVault stringUri 
- 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_ struri 
- 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"
- keyVault StringUri 
- 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
- DeleteSource Blob On Success 
- DeleteSourceBlobOnSuccess
- ContinueOn Errors 
- ContinueOnErrors
- PipelineOptions Overwrite Tags 
- OverwriteTags
- PipelineOptions Overwrite Blobs 
- OverwriteBlobs
- PipelineOptions Delete Source Blob On Success 
- DeleteSourceBlobOnSuccess
- PipelineOptions Continue On Errors 
- ContinueOnErrors
- OverwriteTags 
- OverwriteTags
- OverwriteBlobs 
- OverwriteBlobs
- DeleteSource Blob On Success 
- DeleteSourceBlobOnSuccess
- ContinueOn Errors 
- ContinueOnErrors
- OverwriteTags 
- OverwriteTags
- OverwriteBlobs 
- OverwriteBlobs
- DeleteSource Blob On Success 
- DeleteSourceBlobOnSuccess
- ContinueOn Errors 
- ContinueOnErrors
- OVERWRITE_TAGS
- OverwriteTags
- OVERWRITE_BLOBS
- OverwriteBlobs
- DELETE_SOURCE_BLOB_ON_SUCCESS
- DeleteSourceBlobOnSuccess
- CONTINUE_ON_ERRORS
- ContinueOnErrors
- "OverwriteTags" 
- OverwriteTags
- "OverwriteBlobs" 
- OverwriteBlobs
- "DeleteSource Blob On Success" 
- DeleteSourceBlobOnSuccess
- "ContinueOn Errors" 
- ContinueOnErrors
PipelineSourceTriggerProperties, PipelineSourceTriggerPropertiesArgs        
- Status
string | Pulumi.Azure Native. Container Registry. Trigger Status 
- 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      
- AzureStorage Blob Container 
- AzureStorageBlobContainer
- PipelineSource Type Azure Storage Blob Container 
- AzureStorageBlobContainer
- AzureStorage Blob Container 
- AzureStorageBlobContainer
- AzureStorage Blob Container 
- AzureStorageBlobContainer
- AZURE_STORAGE_BLOB_CONTAINER
- AzureStorageBlobContainer
- "AzureStorage Blob Container" 
- AzureStorageBlobContainer
PipelineTriggerProperties, PipelineTriggerPropertiesArgs      
- SourceTrigger Pulumi.Azure Native. Container Registry. Inputs. Pipeline Source Trigger Properties 
- The source trigger properties of the pipeline.
- SourceTrigger PipelineSource Trigger Properties 
- The source trigger properties of the pipeline.
- sourceTrigger PipelineSource Trigger Properties 
- The source trigger properties of the pipeline.
- sourceTrigger PipelineSource Trigger Properties 
- The source trigger properties of the pipeline.
- source_trigger PipelineSource Trigger Properties 
- The source trigger properties of the pipeline.
- sourceTrigger Property Map
- The source trigger properties of the pipeline.
PipelineTriggerPropertiesResponse, PipelineTriggerPropertiesResponseArgs        
- SourceTrigger Pulumi.Azure Native. Container Registry. Inputs. Pipeline Source Trigger Properties Response 
- The source trigger properties of the pipeline.
- SourceTrigger PipelineSource Trigger Properties Response 
- The source trigger properties of the pipeline.
- sourceTrigger PipelineSource Trigger Properties Response 
- The source trigger properties of the pipeline.
- sourceTrigger PipelineSource Trigger Properties Response 
- The source trigger properties of the pipeline.
- source_trigger PipelineSource Trigger Properties Response 
- The source trigger properties of the pipeline.
- sourceTrigger Property Map
- The source trigger properties of the pipeline.
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- ResourceIdentity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ResourceIdentity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource modification (UTC).
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource modification (UTC).
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource modification (UTC).
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource modification (UTC).
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource modification (UTC).
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource modification (UTC).
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TriggerStatus, TriggerStatusArgs    
- Disabled
- Disabled
- Enabled
- Enabled
- TriggerStatus Disabled 
- Disabled
- TriggerStatus Enabled 
- 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/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/importPipelines/myImportPipeline 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0