azure-native.containerregistry.ExportPipeline
An object that represents an export pipeline for a container registry. API Version: 2020-11-01-preview.
Example Usage
ExportPipelineCreate
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var exportPipeline = new AzureNative.ContainerRegistry.ExportPipeline("exportPipeline", new()
{
ExportPipelineName = "myExportPipeline",
Identity = new AzureNative.ContainerRegistry.Inputs.IdentityPropertiesArgs
{
Type = AzureNative.ContainerRegistry.ResourceIdentityType.SystemAssigned,
},
Location = "westus",
Options = new[]
{
"OverwriteBlobs",
},
RegistryName = "myRegistry",
ResourceGroupName = "myResourceGroup",
Target = new AzureNative.ContainerRegistry.Inputs.ExportPipelineTargetPropertiesArgs
{
KeyVaultUri = "https://myvault.vault.azure.net/secrets/acrexportsas",
Type = "AzureStorageBlobContainer",
Uri = "https://accountname.blob.core.windows.net/containername",
},
});
});
package main
import (
containerregistry "github.com/pulumi/pulumi-azure-native/sdk/go/azure/containerregistry"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := containerregistry.NewExportPipeline(ctx, "exportPipeline", &containerregistry.ExportPipelineArgs{
ExportPipelineName: pulumi.String("myExportPipeline"),
Identity: &containerregistry.IdentityPropertiesArgs{
Type: containerregistry.ResourceIdentityTypeSystemAssigned,
},
Location: pulumi.String("westus"),
Options: pulumi.StringArray{
pulumi.String("OverwriteBlobs"),
},
RegistryName: pulumi.String("myRegistry"),
ResourceGroupName: pulumi.String("myResourceGroup"),
Target: &containerregistry.ExportPipelineTargetPropertiesArgs{
KeyVaultUri: pulumi.String("https://myvault.vault.azure.net/secrets/acrexportsas"),
Type: pulumi.String("AzureStorageBlobContainer"),
Uri: pulumi.String("https://accountname.blob.core.windows.net/containername"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.containerregistry.ExportPipeline;
import com.pulumi.azurenative.containerregistry.ExportPipelineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exportPipeline = new ExportPipeline("exportPipeline", ExportPipelineArgs.builder()
.exportPipelineName("myExportPipeline")
.identity(Map.of("type", "SystemAssigned"))
.location("westus")
.options("OverwriteBlobs")
.registryName("myRegistry")
.resourceGroupName("myResourceGroup")
.target(Map.ofEntries(
Map.entry("keyVaultUri", "https://myvault.vault.azure.net/secrets/acrexportsas"),
Map.entry("type", "AzureStorageBlobContainer"),
Map.entry("uri", "https://accountname.blob.core.windows.net/containername")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
export_pipeline = azure_native.containerregistry.ExportPipeline("exportPipeline",
export_pipeline_name="myExportPipeline",
identity=azure_native.containerregistry.IdentityPropertiesArgs(
type=azure_native.containerregistry.ResourceIdentityType.SYSTEM_ASSIGNED,
),
location="westus",
options=["OverwriteBlobs"],
registry_name="myRegistry",
resource_group_name="myResourceGroup",
target=azure_native.containerregistry.ExportPipelineTargetPropertiesArgs(
key_vault_uri="https://myvault.vault.azure.net/secrets/acrexportsas",
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 exportPipeline = new azure_native.containerregistry.ExportPipeline("exportPipeline", {
exportPipelineName: "myExportPipeline",
identity: {
type: azure_native.containerregistry.ResourceIdentityType.SystemAssigned,
},
location: "westus",
options: ["OverwriteBlobs"],
registryName: "myRegistry",
resourceGroupName: "myResourceGroup",
target: {
keyVaultUri: "https://myvault.vault.azure.net/secrets/acrexportsas",
type: "AzureStorageBlobContainer",
uri: "https://accountname.blob.core.windows.net/containername",
},
});
resources:
exportPipeline:
type: azure-native:containerregistry:ExportPipeline
properties:
exportPipelineName: myExportPipeline
identity:
type: SystemAssigned
location: westus
options:
- OverwriteBlobs
registryName: myRegistry
resourceGroupName: myResourceGroup
target:
keyVaultUri: https://myvault.vault.azure.net/secrets/acrexportsas
type: AzureStorageBlobContainer
uri: https://accountname.blob.core.windows.net/containername
Create ExportPipeline Resource
new ExportPipeline(name: string, args: ExportPipelineArgs, opts?: CustomResourceOptions);
@overload
def ExportPipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
export_pipeline_name: Optional[str] = None,
identity: Optional[IdentityPropertiesArgs] = None,
location: Optional[str] = None,
options: Optional[Sequence[Union[str, PipelineOptions]]] = None,
registry_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
target: Optional[ExportPipelineTargetPropertiesArgs] = None)
@overload
def ExportPipeline(resource_name: str,
args: ExportPipelineArgs,
opts: Optional[ResourceOptions] = None)
func NewExportPipeline(ctx *Context, name string, args ExportPipelineArgs, opts ...ResourceOption) (*ExportPipeline, error)
public ExportPipeline(string name, ExportPipelineArgs args, CustomResourceOptions? opts = null)
public ExportPipeline(String name, ExportPipelineArgs args)
public ExportPipeline(String name, ExportPipelineArgs args, CustomResourceOptions options)
type: azure-native:containerregistry:ExportPipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExportPipelineArgs
- 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 ExportPipelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExportPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExportPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExportPipelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ExportPipeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ExportPipeline 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.
- Target
Pulumi.
Azure Native. Container Registry. Inputs. Export Pipeline Target Properties Args The target properties of the export pipeline.
- Export
Pipeline stringName The name of the export pipeline.
- Identity
Pulumi.
Azure Native. Container Registry. Inputs. Identity Properties Args The identity of the export pipeline.
- Location string
The location of the export pipeline.
- Options
List<Union<string, Pulumi.
Azure Native. Container Registry. Pipeline Options>> The list of all options configured for the 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.
- Target
Export
Pipeline Target Properties Args The target properties of the export pipeline.
- Export
Pipeline stringName The name of the export pipeline.
- Identity
Identity
Properties Args The identity of the export pipeline.
- Location string
The location of the export pipeline.
- Options []string
The list of all options configured for the pipeline.
- registry
Name String The name of the container registry.
- resource
Group StringName The name of the resource group to which the container registry belongs.
- target
Export
Pipeline Target Properties Args The target properties of the export pipeline.
- export
Pipeline StringName The name of the export pipeline.
- identity
Identity
Properties Args The identity of the export pipeline.
- location String
The location of the export pipeline.
- options
List<Either<String,Pipeline
Options>> The list of all options configured for the 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.
- target
Export
Pipeline Target Properties Args The target properties of the export pipeline.
- export
Pipeline stringName The name of the export pipeline.
- identity
Identity
Properties Args The identity of the export pipeline.
- location string
The location of the export pipeline.
- options
(string | Pipeline
Options)[] The list of all options configured for the 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.
- target
Export
Pipeline Target Properties Args The target properties of the export pipeline.
- export_
pipeline_ strname The name of the export pipeline.
- identity
Identity
Properties Args The identity of the export pipeline.
- location str
The location of the export pipeline.
- options
Sequence[Union[str, Pipeline
Options]] The list of all options configured for the 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.
- target Property Map
The target properties of the export pipeline.
- export
Pipeline StringName The name of the export pipeline.
- identity Property Map
The identity of the export pipeline.
- location String
The location of the export pipeline.
- options
List<String | "Overwrite
Tags" | "Overwrite Blobs" | "Delete Source Blob On Success" | "Continue On Errors"> The list of all options configured for the pipeline.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExportPipeline resource produces the following output properties:
- 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
ExportPipelineTargetProperties
- Key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- Type string
The type of target for the export pipeline.
- Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- Key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- Type string
The type of target for the export pipeline.
- Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault StringUri They key vault secret uri to obtain the target storage SAS token.
- type String
The type of target for the export pipeline.
- uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- type string
The type of target for the export pipeline.
- uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key_
vault_ struri They key vault secret uri to obtain the target storage SAS token.
- type str
The type of target for the export pipeline.
- uri str
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault StringUri They key vault secret uri to obtain the target storage SAS token.
- type String
The type of target for the export pipeline.
- uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
ExportPipelineTargetPropertiesResponse
- Key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- Type string
The type of target for the export pipeline.
- Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- Key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- Type string
The type of target for the export pipeline.
- Uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault StringUri They key vault secret uri to obtain the target storage SAS token.
- type String
The type of target for the export pipeline.
- uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault stringUri They key vault secret uri to obtain the target storage SAS token.
- type string
The type of target for the export pipeline.
- uri string
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key_
vault_ struri They key vault secret uri to obtain the target storage SAS token.
- type str
The type of target for the export pipeline.
- uri str
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
- key
Vault StringUri They key vault secret uri to obtain the target storage SAS token.
- type String
The type of target for the export pipeline.
- uri String
The target uri of the export pipeline. When 'AzureStorageBlob': "https://accountName.blob.core.windows.net/containerName/blobName" When 'AzureStorageBlobContainer': "https://accountName.blob.core.windows.net/containerName"
IdentityProperties
- 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
- 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}'.
PipelineOptions
- 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
ResourceIdentityType
- 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
- 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.
UserIdentityProperties
- 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
- 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:ExportPipeline myExportPipeline /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/exportPipelines/myExportPipeline
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0