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 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",
))
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",
},
});
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
The ImportPipeline resource accepts the following input properties:
- Registry
Name string - The name of the container registry.
- Resource
Group 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.
- Import
Pipeline 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.
- Registry
Name string - The name of the container registry.
- Resource
Group stringName - The name of the resource group to which the container registry belongs.
- Source
Import
Pipeline Source Properties Args - The source properties of the import pipeline.
- Identity
Identity
Properties Args - The identity of the import pipeline.
- Import
Pipeline 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
Pipeline
Trigger Properties Args - The properties that describe the trigger of the import pipeline.
- registry
Name String - The name of the container registry.
- resource
Group StringName - The name of the resource group to which the container registry belongs.
- source
Import
Pipeline Source Properties - The source properties of the import pipeline.
- identity
Identity
Properties - The identity of the import pipeline.
- import
Pipeline StringName - The name of the import pipeline.
- location String
- The location of the import pipeline.
- options
List<Either<String,Pipeline
Options>> - The list of all options configured for the pipeline.
- trigger
Pipeline
Trigger Properties - The properties that describe the trigger of the import pipeline.
- registry
Name string - The name of the container registry.
- resource
Group stringName - The name of the resource group to which the container registry belongs.
- source
Import
Pipeline Source Properties - The source properties of the import pipeline.
- identity
Identity
Properties - The identity of the import pipeline.
- import
Pipeline stringName - The name of the import pipeline.
- location string
- The location of the import pipeline.
- options
(string | Pipeline
Options)[] - The list of all options configured for the pipeline.
- trigger
Pipeline
Trigger 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
Import
Pipeline Source Properties Args - The source properties of the import pipeline.
- identity
Identity
Properties 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, Pipeline
Options]] - The list of all options configured for the pipeline.
- trigger
Pipeline
Trigger Properties Args - The properties that describe the trigger of the import pipeline.
- registry
Name String - The name of the container registry.
- resource
Group 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.
- import
Pipeline StringName - The name of the import pipeline.
- location String
- The location of the import pipeline.
- options
List<String | "Overwrite
Tags" | "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.
- Provisioning
State string - The provisioning state of the pipeline at the time the operation was called.
- System
Data 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.
- Provisioning
State string - 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 string
- The type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- provisioning
State String - 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 String
- The type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- provisioning
State string - 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 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.
- provisioning
State String - The provisioning state of the pipeline at the time the operation was called.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
Supporting Types
IdentityProperties, IdentityPropertiesArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type
Pulumi.
Azure Native. Container Registry. Resource Identity Type - The identity type.
- User
Assigned 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}'.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type
Resource
Identity Type - The identity type.
- User
Assigned 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}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned 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}'.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned {[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
Resource
Identity 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}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type
"System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "None" - The identity type.
- user
Assigned 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
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned 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}'.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned 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}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned 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}'.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[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}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned 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
- Key
Vault 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"
- Key
Vault stringUri - They key vault secret uri to obtain the source storage SAS token.
- Type
string | 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"
- key
Vault StringUri - They key vault secret uri to obtain the source storage SAS token.
- type
String | 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"
- key
Vault stringUri - They key vault secret uri to obtain the source storage SAS token.
- type
string | 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"
- key_
vault_ struri - They key vault secret uri to obtain the source storage SAS token.
- type
str | Pipeline
Source 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"
- key
Vault StringUri - They key vault secret uri to obtain the source storage SAS token.
- type
String | "Azure
Storage 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
- Key
Vault 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 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 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 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"
- key
Vault 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
- Overwrite
Tags - OverwriteTags
- Overwrite
Blobs - OverwriteBlobs
- Delete
Source Blob On Success - DeleteSourceBlobOnSuccess
- Continue
On Errors - ContinueOnErrors
- Pipeline
Options Overwrite Tags - OverwriteTags
- Pipeline
Options Overwrite Blobs - OverwriteBlobs
- Pipeline
Options Delete Source Blob On Success - DeleteSourceBlobOnSuccess
- Pipeline
Options Continue On Errors - ContinueOnErrors
- Overwrite
Tags - OverwriteTags
- Overwrite
Blobs - OverwriteBlobs
- Delete
Source Blob On Success - DeleteSourceBlobOnSuccess
- Continue
On Errors - ContinueOnErrors
- Overwrite
Tags - OverwriteTags
- Overwrite
Blobs - OverwriteBlobs
- Delete
Source Blob On Success - DeleteSourceBlobOnSuccess
- Continue
On Errors - ContinueOnErrors
- OVERWRITE_TAGS
- OverwriteTags
- OVERWRITE_BLOBS
- OverwriteBlobs
- DELETE_SOURCE_BLOB_ON_SUCCESS
- DeleteSourceBlobOnSuccess
- CONTINUE_ON_ERRORS
- ContinueOnErrors
- "Overwrite
Tags" - OverwriteTags
- "Overwrite
Blobs" - OverwriteBlobs
- "Delete
Source Blob On Success" - DeleteSourceBlobOnSuccess
- "Continue
On Errors" - ContinueOnErrors
PipelineSourceTriggerProperties, PipelineSourceTriggerPropertiesArgs
- Status
string | Pulumi.
Azure Native. Container Registry. Trigger Status - The current status of the source trigger.
- Status
string | Trigger
Status - The current status of the source trigger.
- status
String | Trigger
Status - The current status of the source trigger.
- status
string | Trigger
Status - The current status of the source trigger.
- status
str | Trigger
Status - 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
- Azure
Storage Blob Container - AzureStorageBlobContainer
- Pipeline
Source Type Azure Storage Blob Container - AzureStorageBlobContainer
- Azure
Storage Blob Container - AzureStorageBlobContainer
- Azure
Storage Blob Container - AzureStorageBlobContainer
- AZURE_STORAGE_BLOB_CONTAINER
- AzureStorageBlobContainer
- "Azure
Storage Blob Container" - AzureStorageBlobContainer
PipelineTriggerProperties, PipelineTriggerPropertiesArgs
- Source
Trigger Pulumi.Azure Native. Container Registry. Inputs. Pipeline Source Trigger Properties - The source trigger properties of the pipeline.
- Source
Trigger PipelineSource Trigger Properties - The source trigger properties of the pipeline.
- source
Trigger PipelineSource Trigger Properties - The source trigger properties of the pipeline.
- source
Trigger PipelineSource Trigger Properties - The source trigger properties of the pipeline.
- source_
trigger PipelineSource Trigger Properties - The source trigger properties of the pipeline.
- source
Trigger Property Map - The source trigger properties of the pipeline.
PipelineTriggerPropertiesResponse, PipelineTriggerPropertiesResponseArgs
- Source
Trigger Pulumi.Azure Native. Container Registry. Inputs. Pipeline Source Trigger Properties Response - The source trigger properties of the pipeline.
- Source
Trigger PipelineSource Trigger Properties Response - The source trigger properties of the pipeline.
- source
Trigger PipelineSource Trigger Properties Response - The source trigger properties of the pipeline.
- source
Trigger PipelineSource Trigger Properties Response - The source trigger properties of the pipeline.
- source_
trigger PipelineSource Trigger Properties Response - The source trigger properties of the pipeline.
- source
Trigger Property Map - The source trigger properties of the pipeline.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
- "None"
- None
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource modification (UTC).
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TriggerStatus, TriggerStatusArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Trigger
Status Disabled - Disabled
- Trigger
Status Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
UserIdentityProperties, UserIdentityPropertiesArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id 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.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
UserIdentityPropertiesResponse, UserIdentityPropertiesResponseArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id 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.
- client
Id String - The client id of user assigned identity.
- principal
Id 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