1. Packages
  2. Azure Native
  3. API Docs
  4. containerregistry
  5. TaskRun
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.containerregistry.TaskRun

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    The task run that has the ARM resource and properties. The task run will have the information of request and result of a run. Azure REST API version: 2019-06-01-preview. Prior API version in Azure Native 1.x: 2019-06-01-preview.

    Example Usage

    TaskRuns_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var taskRun = new AzureNative.ContainerRegistry.TaskRun("taskRun", new()
        {
            ForceUpdateTag = "test",
            RegistryName = "myRegistry",
            ResourceGroupName = "myResourceGroup",
            RunRequest = new AzureNative.ContainerRegistry.Inputs.EncodedTaskRunRequestArgs
            {
                Credentials = null,
                EncodedTaskContent = "c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K",
                EncodedValuesContent = "Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==",
                Platform = new AzureNative.ContainerRegistry.Inputs.PlatformPropertiesArgs
                {
                    Architecture = "amd64",
                    Os = "Linux",
                },
                Type = "EncodedTaskRunRequest",
                Values = new() { },
            },
            TaskRunName = "myRun",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/containerregistry/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := containerregistry.NewTaskRun(ctx, "taskRun", &containerregistry.TaskRunArgs{
    			ForceUpdateTag:    pulumi.String("test"),
    			RegistryName:      pulumi.String("myRegistry"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			RunRequest: containerregistry.EncodedTaskRunRequest{
    				Credentials:          nil,
    				EncodedTaskContent:   "c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K",
    				EncodedValuesContent: "Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==",
    				Platform: containerregistry.PlatformProperties{
    					Architecture: "amd64",
    					Os:           "Linux",
    				},
    				Type:   "EncodedTaskRunRequest",
    				Values: []containerregistry.SetValue{},
    			},
    			TaskRunName: pulumi.String("myRun"),
    		})
    		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.TaskRun;
    import com.pulumi.azurenative.containerregistry.TaskRunArgs;
    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 taskRun = new TaskRun("taskRun", TaskRunArgs.builder()        
                .forceUpdateTag("test")
                .registryName("myRegistry")
                .resourceGroupName("myResourceGroup")
                .runRequest(EncodedTaskRunRequestArgs.builder()
                    .credentials()
                    .encodedTaskContent("c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K")
                    .encodedValuesContent("Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==")
                    .platform(PlatformPropertiesArgs.builder()
                        .architecture("amd64")
                        .os("Linux")
                        .build())
                    .type("EncodedTaskRunRequest")
                    .values()
                    .build())
                .taskRunName("myRun")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    task_run = azure_native.containerregistry.TaskRun("taskRun",
        force_update_tag="test",
        registry_name="myRegistry",
        resource_group_name="myResourceGroup",
        run_request=azure_native.containerregistry.EncodedTaskRunRequestArgs(
            credentials=azure_native.containerregistry.CredentialsArgs(),
            encoded_task_content="c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K",
            encoded_values_content="Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==",
            platform=azure_native.containerregistry.PlatformPropertiesArgs(
                architecture="amd64",
                os="Linux",
            ),
            type="EncodedTaskRunRequest",
            values=[],
        ),
        task_run_name="myRun")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const taskRun = new azure_native.containerregistry.TaskRun("taskRun", {
        forceUpdateTag: "test",
        registryName: "myRegistry",
        resourceGroupName: "myResourceGroup",
        runRequest: {
            credentials: {},
            encodedTaskContent: "c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K",
            encodedValuesContent: "Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==",
            platform: {
                architecture: "amd64",
                os: "Linux",
            },
            type: "EncodedTaskRunRequest",
            values: [],
        },
        taskRunName: "myRun",
    });
    
    resources:
      taskRun:
        type: azure-native:containerregistry:TaskRun
        properties:
          forceUpdateTag: test
          registryName: myRegistry
          resourceGroupName: myResourceGroup
          runRequest:
            credentials: {}
            encodedTaskContent: c3RlcHM6IAogIC0gY21kOiB7eyAuVmFsdWVzLmNvbW1hbmQgfX0K
            encodedValuesContent: Y29tbWFuZDogYmFzaCBlY2hvIHt7LlJ1bi5SZWdpc3RyeX19Cg==
            platform:
              architecture: amd64
              os: Linux
            type: EncodedTaskRunRequest
            values: []
          taskRunName: myRun
    

    Create TaskRun Resource

    new TaskRun(name: string, args: TaskRunArgs, opts?: CustomResourceOptions);
    @overload
    def TaskRun(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                force_update_tag: Optional[str] = None,
                identity: Optional[IdentityPropertiesArgs] = None,
                location: Optional[str] = None,
                registry_name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                run_request: Optional[Union[DockerBuildRequestArgs, EncodedTaskRunRequestArgs, FileTaskRunRequestArgs, TaskRunRequestArgs]] = None,
                task_run_name: Optional[str] = None)
    @overload
    def TaskRun(resource_name: str,
                args: TaskRunArgs,
                opts: Optional[ResourceOptions] = None)
    func NewTaskRun(ctx *Context, name string, args TaskRunArgs, opts ...ResourceOption) (*TaskRun, error)
    public TaskRun(string name, TaskRunArgs args, CustomResourceOptions? opts = null)
    public TaskRun(String name, TaskRunArgs args)
    public TaskRun(String name, TaskRunArgs args, CustomResourceOptions options)
    
    type: azure-native:containerregistry:TaskRun
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TaskRunArgs
    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 TaskRunArgs
    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 TaskRunArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TaskRunArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TaskRunArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    TaskRun 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 TaskRun resource accepts the following input properties:

    RegistryName string
    The name of the container registry.
    ResourceGroupName string
    The name of the resource group to which the container registry belongs.
    ForceUpdateTag string
    How the run should be forced to rerun even if the run request configuration has not changed
    Identity Pulumi.AzureNative.ContainerRegistry.Inputs.IdentityProperties
    Identity for the resource.
    Location string
    The location of the resource
    RunRequest Pulumi.AzureNative.ContainerRegistry.Inputs.DockerBuildRequest | Pulumi.AzureNative.ContainerRegistry.Inputs.EncodedTaskRunRequest | Pulumi.AzureNative.ContainerRegistry.Inputs.FileTaskRunRequest | Pulumi.AzureNative.ContainerRegistry.Inputs.TaskRunRequest
    The request (parameters) for the run
    TaskRunName string
    The name of the task run.
    RegistryName string
    The name of the container registry.
    ResourceGroupName string
    The name of the resource group to which the container registry belongs.
    ForceUpdateTag string
    How the run should be forced to rerun even if the run request configuration has not changed
    Identity IdentityPropertiesArgs
    Identity for the resource.
    Location string
    The location of the resource
    RunRequest DockerBuildRequestArgs | EncodedTaskRunRequestArgs | FileTaskRunRequestArgs | TaskRunRequestArgs
    The request (parameters) for the run
    TaskRunName string
    The name of the task run.
    registryName String
    The name of the container registry.
    resourceGroupName String
    The name of the resource group to which the container registry belongs.
    forceUpdateTag String
    How the run should be forced to rerun even if the run request configuration has not changed
    identity IdentityProperties
    Identity for the resource.
    location String
    The location of the resource
    runRequest DockerBuildRequest | EncodedTaskRunRequest | FileTaskRunRequest | TaskRunRequest
    The request (parameters) for the run
    taskRunName String
    The name of the task run.
    registryName string
    The name of the container registry.
    resourceGroupName string
    The name of the resource group to which the container registry belongs.
    forceUpdateTag string
    How the run should be forced to rerun even if the run request configuration has not changed
    identity IdentityProperties
    Identity for the resource.
    location string
    The location of the resource
    runRequest DockerBuildRequest | EncodedTaskRunRequest | FileTaskRunRequest | TaskRunRequest
    The request (parameters) for the run
    taskRunName string
    The name of the task run.
    registry_name str
    The name of the container registry.
    resource_group_name str
    The name of the resource group to which the container registry belongs.
    force_update_tag str
    How the run should be forced to rerun even if the run request configuration has not changed
    identity IdentityPropertiesArgs
    Identity for the resource.
    location str
    The location of the resource
    run_request DockerBuildRequestArgs | EncodedTaskRunRequestArgs | FileTaskRunRequestArgs | TaskRunRequestArgs
    The request (parameters) for the run
    task_run_name str
    The name of the task run.
    registryName String
    The name of the container registry.
    resourceGroupName String
    The name of the resource group to which the container registry belongs.
    forceUpdateTag String
    How the run should be forced to rerun even if the run request configuration has not changed
    identity Property Map
    Identity for the resource.
    location String
    The location of the resource
    runRequest Property Map | Property Map | Property Map | Property Map
    The request (parameters) for the run
    taskRunName String
    The name of the task run.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TaskRun 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 this task run
    RunResult Pulumi.AzureNative.ContainerRegistry.Outputs.RunResponse
    The result of this task run
    SystemData Pulumi.AzureNative.ContainerRegistry.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    ProvisioningState string
    The provisioning state of this task run
    RunResult RunResponse
    The result of this task run
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The provisioning state of this task run
    runResult RunResponse
    The result of this task run
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    provisioningState string
    The provisioning state of this task run
    runResult RunResponse
    The result of this task run
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    provisioning_state str
    The provisioning state of this task run
    run_result RunResponse
    The result of this task run
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The provisioning state of this task run
    runResult Property Map
    The result of this task run
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.

    Supporting Types

    AgentProperties, AgentPropertiesArgs

    Cpu int
    The CPU configuration in terms of number of cores required for the run.
    Cpu int
    The CPU configuration in terms of number of cores required for the run.
    cpu Integer
    The CPU configuration in terms of number of cores required for the run.
    cpu number
    The CPU configuration in terms of number of cores required for the run.
    cpu int
    The CPU configuration in terms of number of cores required for the run.
    cpu Number
    The CPU configuration in terms of number of cores required for the run.

    AgentPropertiesResponse, AgentPropertiesResponseArgs

    Cpu int
    The CPU configuration in terms of number of cores required for the run.
    Cpu int
    The CPU configuration in terms of number of cores required for the run.
    cpu Integer
    The CPU configuration in terms of number of cores required for the run.
    cpu number
    The CPU configuration in terms of number of cores required for the run.
    cpu int
    The CPU configuration in terms of number of cores required for the run.
    cpu Number
    The CPU configuration in terms of number of cores required for the run.

    Architecture, ArchitectureArgs

    Amd64
    amd64
    X86
    x86
    Architecture_386
    386
    Arm
    arm
    Arm64
    arm64
    ArchitectureAmd64
    amd64
    ArchitectureX86
    x86
    Architecture_386
    386
    ArchitectureArm
    arm
    ArchitectureArm64
    arm64
    Amd64
    amd64
    X86
    x86
    _386
    386
    Arm
    arm
    Arm64
    arm64
    Amd64
    amd64
    X86
    x86
    Architecture_386
    386
    Arm
    arm
    Arm64
    arm64
    AMD64
    amd64
    X86
    x86
    ARCHITECTURE_386
    386
    ARM
    arm
    ARM64
    arm64
    "amd64"
    amd64
    "x86"
    x86
    "386"
    386
    "arm"
    arm
    "arm64"
    arm64

    Argument, ArgumentArgs

    Name string
    The name of the argument.
    Value string
    The value of the argument.
    IsSecret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    Name string
    The name of the argument.
    Value string
    The value of the argument.
    IsSecret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name String
    The name of the argument.
    value String
    The value of the argument.
    isSecret Boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name string
    The name of the argument.
    value string
    The value of the argument.
    isSecret boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name str
    The name of the argument.
    value str
    The value of the argument.
    is_secret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name String
    The name of the argument.
    value String
    The value of the argument.
    isSecret Boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.

    ArgumentResponse, ArgumentResponseArgs

    Name string
    The name of the argument.
    Value string
    The value of the argument.
    IsSecret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    Name string
    The name of the argument.
    Value string
    The value of the argument.
    IsSecret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name String
    The name of the argument.
    value String
    The value of the argument.
    isSecret Boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name string
    The name of the argument.
    value string
    The value of the argument.
    isSecret boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name str
    The name of the argument.
    value str
    The value of the argument.
    is_secret bool
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.
    name String
    The name of the argument.
    value String
    The value of the argument.
    isSecret Boolean
    Flag to indicate whether the argument represents a secret and want to be removed from build logs.

    Credentials, CredentialsArgs

    CustomRegistries Dictionary<string, Pulumi.AzureNative.ContainerRegistry.Inputs.CustomRegistryCredentials>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    SourceRegistry Pulumi.AzureNative.ContainerRegistry.Inputs.SourceRegistryCredentials
    Describes the credential parameters for accessing the source registry.
    CustomRegistries map[string]CustomRegistryCredentials
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    SourceRegistry SourceRegistryCredentials
    Describes the credential parameters for accessing the source registry.
    customRegistries Map<String,CustomRegistryCredentials>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry SourceRegistryCredentials
    Describes the credential parameters for accessing the source registry.
    customRegistries {[key: string]: CustomRegistryCredentials}
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry SourceRegistryCredentials
    Describes the credential parameters for accessing the source registry.
    custom_registries Mapping[str, CustomRegistryCredentials]
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    source_registry SourceRegistryCredentials
    Describes the credential parameters for accessing the source registry.
    customRegistries Map<Property Map>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry Property Map
    Describes the credential parameters for accessing the source registry.

    CredentialsResponse, CredentialsResponseArgs

    CustomRegistries Dictionary<string, Pulumi.AzureNative.ContainerRegistry.Inputs.CustomRegistryCredentialsResponse>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    SourceRegistry Pulumi.AzureNative.ContainerRegistry.Inputs.SourceRegistryCredentialsResponse
    Describes the credential parameters for accessing the source registry.
    CustomRegistries map[string]CustomRegistryCredentialsResponse
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    SourceRegistry SourceRegistryCredentialsResponse
    Describes the credential parameters for accessing the source registry.
    customRegistries Map<String,CustomRegistryCredentialsResponse>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry SourceRegistryCredentialsResponse
    Describes the credential parameters for accessing the source registry.
    customRegistries {[key: string]: CustomRegistryCredentialsResponse}
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry SourceRegistryCredentialsResponse
    Describes the credential parameters for accessing the source registry.
    custom_registries Mapping[str, CustomRegistryCredentialsResponse]
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    source_registry SourceRegistryCredentialsResponse
    Describes the credential parameters for accessing the source registry.
    customRegistries Map<Property Map>
    Describes the credential parameters for accessing other custom registries. The key for the dictionary item will be the registry login server (myregistry.azurecr.io) and the value of the item will be the registry credentials for accessing the registry.
    sourceRegistry Property Map
    Describes the credential parameters for accessing the source registry.

    CustomRegistryCredentials, CustomRegistryCredentialsArgs

    Identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    Password Pulumi.AzureNative.ContainerRegistry.Inputs.SecretObject
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    UserName Pulumi.AzureNative.ContainerRegistry.Inputs.SecretObject
    The username for logging into the custom registry.
    Identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    Password SecretObject
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    UserName SecretObject
    The username for logging into the custom registry.
    identity String
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObject
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName SecretObject
    The username for logging into the custom registry.
    identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObject
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName SecretObject
    The username for logging into the custom registry.
    identity str
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObject
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    user_name SecretObject
    The username for logging into the custom registry.
    identity String
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password Property Map
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName Property Map
    The username for logging into the custom registry.

    CustomRegistryCredentialsResponse, CustomRegistryCredentialsResponseArgs

    Identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    Password Pulumi.AzureNative.ContainerRegistry.Inputs.SecretObjectResponse
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    UserName Pulumi.AzureNative.ContainerRegistry.Inputs.SecretObjectResponse
    The username for logging into the custom registry.
    Identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    Password SecretObjectResponse
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    UserName SecretObjectResponse
    The username for logging into the custom registry.
    identity String
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObjectResponse
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName SecretObjectResponse
    The username for logging into the custom registry.
    identity string
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObjectResponse
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName SecretObjectResponse
    The username for logging into the custom registry.
    identity str
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password SecretObjectResponse
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    user_name SecretObjectResponse
    The username for logging into the custom registry.
    identity String
    Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
    password Property Map
    The password for logging into the custom registry. The password is a secret object that allows multiple ways of providing the value for it.
    userName Property Map
    The username for logging into the custom registry.

    DockerBuildRequest, DockerBuildRequestArgs

    DockerFilePath string
    The Docker file path relative to the source location.
    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformProperties
    The platform properties against which the run has to happen.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Arguments List<Pulumi.AzureNative.ContainerRegistry.Inputs.Argument>
    The collection of override arguments to be used when executing the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    ImageNames List<string>
    The fully qualified image names including the repository and tag.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    IsPushEnabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    NoCache bool
    The value of this property indicates whether the image cache is enabled or not.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Target string
    The name of the target build stage for the docker build.
    Timeout int
    Run timeout in seconds.
    DockerFilePath string
    The Docker file path relative to the source location.
    Platform PlatformProperties
    The platform properties against which the run has to happen.
    AgentConfiguration AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Arguments []Argument
    The collection of override arguments to be used when executing the run.
    Credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    ImageNames []string
    The fully qualified image names including the repository and tag.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    IsPushEnabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    NoCache bool
    The value of this property indicates whether the image cache is enabled or not.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Target string
    The name of the target build stage for the docker build.
    Timeout int
    Run timeout in seconds.
    dockerFilePath String
    The Docker file path relative to the source location.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    arguments List<Argument>
    The collection of override arguments to be used when executing the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames List<String>
    The fully qualified image names including the repository and tag.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled Boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    noCache Boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target String
    The name of the target build stage for the docker build.
    timeout Integer
    Run timeout in seconds.
    dockerFilePath string
    The Docker file path relative to the source location.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    arguments Argument[]
    The collection of override arguments to be used when executing the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames string[]
    The fully qualified image names including the repository and tag.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    noCache boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target string
    The name of the target build stage for the docker build.
    timeout number
    Run timeout in seconds.
    docker_file_path str
    The Docker file path relative to the source location.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agent_configuration AgentProperties
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    arguments Sequence[Argument]
    The collection of override arguments to be used when executing the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    image_names Sequence[str]
    The fully qualified image names including the repository and tag.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    is_push_enabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    no_cache bool
    The value of this property indicates whether the image cache is enabled or not.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target str
    The name of the target build stage for the docker build.
    timeout int
    Run timeout in seconds.
    dockerFilePath String
    The Docker file path relative to the source location.
    platform Property Map
    The platform properties against which the run has to happen.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    arguments List<Property Map>
    The collection of override arguments to be used when executing the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames List<String>
    The fully qualified image names including the repository and tag.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled Boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    noCache Boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target String
    The name of the target build stage for the docker build.
    timeout Number
    Run timeout in seconds.

    DockerBuildRequestResponse, DockerBuildRequestResponseArgs

    DockerFilePath string
    The Docker file path relative to the source location.
    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Arguments List<Pulumi.AzureNative.ContainerRegistry.Inputs.ArgumentResponse>
    The collection of override arguments to be used when executing the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    ImageNames List<string>
    The fully qualified image names including the repository and tag.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    IsPushEnabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    NoCache bool
    The value of this property indicates whether the image cache is enabled or not.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Target string
    The name of the target build stage for the docker build.
    Timeout int
    Run timeout in seconds.
    DockerFilePath string
    The Docker file path relative to the source location.
    Platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    AgentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Arguments []ArgumentResponse
    The collection of override arguments to be used when executing the run.
    Credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    ImageNames []string
    The fully qualified image names including the repository and tag.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    IsPushEnabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    NoCache bool
    The value of this property indicates whether the image cache is enabled or not.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Target string
    The name of the target build stage for the docker build.
    Timeout int
    Run timeout in seconds.
    dockerFilePath String
    The Docker file path relative to the source location.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    arguments List<ArgumentResponse>
    The collection of override arguments to be used when executing the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames List<String>
    The fully qualified image names including the repository and tag.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled Boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    noCache Boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target String
    The name of the target build stage for the docker build.
    timeout Integer
    Run timeout in seconds.
    dockerFilePath string
    The Docker file path relative to the source location.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    arguments ArgumentResponse[]
    The collection of override arguments to be used when executing the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames string[]
    The fully qualified image names including the repository and tag.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    noCache boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target string
    The name of the target build stage for the docker build.
    timeout number
    Run timeout in seconds.
    docker_file_path str
    The Docker file path relative to the source location.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agent_configuration AgentPropertiesResponse
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    arguments Sequence[ArgumentResponse]
    The collection of override arguments to be used when executing the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    image_names Sequence[str]
    The fully qualified image names including the repository and tag.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    is_push_enabled bool
    The value of this property indicates whether the image built should be pushed to the registry or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    no_cache bool
    The value of this property indicates whether the image cache is enabled or not.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target str
    The name of the target build stage for the docker build.
    timeout int
    Run timeout in seconds.
    dockerFilePath String
    The Docker file path relative to the source location.
    platform Property Map
    The platform properties against which the run has to happen.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    arguments List<Property Map>
    The collection of override arguments to be used when executing the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    imageNames List<String>
    The fully qualified image names including the repository and tag.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    isPushEnabled Boolean
    The value of this property indicates whether the image built should be pushed to the registry or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    noCache Boolean
    The value of this property indicates whether the image cache is enabled or not.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    target String
    The name of the target build stage for the docker build.
    timeout Number
    Run timeout in seconds.

    EncodedTaskRunRequest, EncodedTaskRunRequestArgs

    EncodedTaskContent string
    Base64 encoded value of the template/definition file content.
    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformProperties
    The platform properties against which the run has to happen.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    EncodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValue>
    The collection of overridable values that can be passed when running a task.
    EncodedTaskContent string
    Base64 encoded value of the template/definition file content.
    Platform PlatformProperties
    The platform properties against which the run has to happen.
    AgentConfiguration AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    EncodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values []SetValue
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent String
    Base64 encoded value of the template/definition file content.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent String
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Integer
    Run timeout in seconds.
    values List<SetValue>
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent string
    Base64 encoded value of the template/definition file content.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout number
    Run timeout in seconds.
    values SetValue[]
    The collection of overridable values that can be passed when running a task.
    encoded_task_content str
    Base64 encoded value of the template/definition file content.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    agent_configuration AgentProperties
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    encoded_values_content str
    Base64 encoded value of the parameters/values file content.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout int
    Run timeout in seconds.
    values Sequence[SetValue]
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent String
    Base64 encoded value of the template/definition file content.
    platform Property Map
    The platform properties against which the run has to happen.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent String
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Number
    Run timeout in seconds.
    values List<Property Map>
    The collection of overridable values that can be passed when running a task.

    EncodedTaskRunRequestResponse, EncodedTaskRunRequestResponseArgs

    EncodedTaskContent string
    Base64 encoded value of the template/definition file content.
    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    EncodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValueResponse>
    The collection of overridable values that can be passed when running a task.
    EncodedTaskContent string
    Base64 encoded value of the template/definition file content.
    Platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    AgentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    EncodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values []SetValueResponse
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent String
    Base64 encoded value of the template/definition file content.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent String
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Integer
    Run timeout in seconds.
    values List<SetValueResponse>
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent string
    Base64 encoded value of the template/definition file content.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent string
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout number
    Run timeout in seconds.
    values SetValueResponse[]
    The collection of overridable values that can be passed when running a task.
    encoded_task_content str
    Base64 encoded value of the template/definition file content.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    agent_configuration AgentPropertiesResponse
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    encoded_values_content str
    Base64 encoded value of the parameters/values file content.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout int
    Run timeout in seconds.
    values Sequence[SetValueResponse]
    The collection of overridable values that can be passed when running a task.
    encodedTaskContent String
    Base64 encoded value of the template/definition file content.
    platform Property Map
    The platform properties against which the run has to happen.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    encodedValuesContent String
    Base64 encoded value of the parameters/values file content.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Number
    Run timeout in seconds.
    values List<Property Map>
    The collection of overridable values that can be passed when running a task.

    FileTaskRunRequest, FileTaskRunRequestArgs

    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformProperties
    The platform properties against which the run has to happen.
    TaskFilePath string
    The template/definition file path relative to the source.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValue>
    The collection of overridable values that can be passed when running a task.
    ValuesFilePath string
    The values/parameters file path relative to the source.
    Platform PlatformProperties
    The platform properties against which the run has to happen.
    TaskFilePath string
    The template/definition file path relative to the source.
    AgentConfiguration AgentProperties
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values []SetValue
    The collection of overridable values that can be passed when running a task.
    ValuesFilePath string
    The values/parameters file path relative to the source.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    taskFilePath String
    The template/definition file path relative to the source.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Integer
    Run timeout in seconds.
    values List<SetValue>
    The collection of overridable values that can be passed when running a task.
    valuesFilePath String
    The values/parameters file path relative to the source.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    taskFilePath string
    The template/definition file path relative to the source.
    agentConfiguration AgentProperties
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout number
    Run timeout in seconds.
    values SetValue[]
    The collection of overridable values that can be passed when running a task.
    valuesFilePath string
    The values/parameters file path relative to the source.
    platform PlatformProperties
    The platform properties against which the run has to happen.
    task_file_path str
    The template/definition file path relative to the source.
    agent_configuration AgentProperties
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    credentials Credentials
    The properties that describes a set of credentials that will be used when this run is invoked.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout int
    Run timeout in seconds.
    values Sequence[SetValue]
    The collection of overridable values that can be passed when running a task.
    values_file_path str
    The values/parameters file path relative to the source.
    platform Property Map
    The platform properties against which the run has to happen.
    taskFilePath String
    The template/definition file path relative to the source.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Number
    Run timeout in seconds.
    values List<Property Map>
    The collection of overridable values that can be passed when running a task.
    valuesFilePath String
    The values/parameters file path relative to the source.

    FileTaskRunRequestResponse, FileTaskRunRequestResponseArgs

    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    TaskFilePath string
    The template/definition file path relative to the source.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials Pulumi.AzureNative.ContainerRegistry.Inputs.CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValueResponse>
    The collection of overridable values that can be passed when running a task.
    ValuesFilePath string
    The values/parameters file path relative to the source.
    Platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    TaskFilePath string
    The template/definition file path relative to the source.
    AgentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    Credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    SourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    Timeout int
    Run timeout in seconds.
    Values []SetValueResponse
    The collection of overridable values that can be passed when running a task.
    ValuesFilePath string
    The values/parameters file path relative to the source.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    taskFilePath String
    The template/definition file path relative to the source.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Integer
    Run timeout in seconds.
    values List<SetValueResponse>
    The collection of overridable values that can be passed when running a task.
    valuesFilePath String
    The values/parameters file path relative to the source.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    taskFilePath string
    The template/definition file path relative to the source.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    sourceLocation string
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout number
    Run timeout in seconds.
    values SetValueResponse[]
    The collection of overridable values that can be passed when running a task.
    valuesFilePath string
    The values/parameters file path relative to the source.
    platform PlatformPropertiesResponse
    The platform properties against which the run has to happen.
    task_file_path str
    The template/definition file path relative to the source.
    agent_configuration AgentPropertiesResponse
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    credentials CredentialsResponse
    The properties that describes a set of credentials that will be used when this run is invoked.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    source_location str
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout int
    Run timeout in seconds.
    values Sequence[SetValueResponse]
    The collection of overridable values that can be passed when running a task.
    values_file_path str
    The values/parameters file path relative to the source.
    platform Property Map
    The platform properties against which the run has to happen.
    taskFilePath String
    The template/definition file path relative to the source.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    credentials Property Map
    The properties that describes a set of credentials that will be used when this run is invoked.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    sourceLocation String
    The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository. If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
    timeout Number
    Run timeout in seconds.
    values List<Property Map>
    The collection of overridable values that can be passed when running a task.
    valuesFilePath String
    The values/parameters file path relative to the source.

    IdentityProperties, IdentityPropertiesArgs

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

    IdentityPropertiesResponse, IdentityPropertiesResponseArgs

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

    ImageDescriptorResponse, ImageDescriptorResponseArgs

    Digest string
    The sha256-based digest of the image manifest.
    Registry string
    The registry login server.
    Repository string
    The repository name.
    Tag string
    The tag name.
    Digest string
    The sha256-based digest of the image manifest.
    Registry string
    The registry login server.
    Repository string
    The repository name.
    Tag string
    The tag name.
    digest String
    The sha256-based digest of the image manifest.
    registry String
    The registry login server.
    repository String
    The repository name.
    tag String
    The tag name.
    digest string
    The sha256-based digest of the image manifest.
    registry string
    The registry login server.
    repository string
    The repository name.
    tag string
    The tag name.
    digest str
    The sha256-based digest of the image manifest.
    registry str
    The registry login server.
    repository str
    The repository name.
    tag str
    The tag name.
    digest String
    The sha256-based digest of the image manifest.
    registry String
    The registry login server.
    repository String
    The repository name.
    tag String
    The tag name.

    ImageUpdateTriggerResponse, ImageUpdateTriggerResponseArgs

    Id string
    The unique ID of the trigger.
    Images List<Pulumi.AzureNative.ContainerRegistry.Inputs.ImageDescriptorResponse>
    The list of image updates that caused the build.
    Timestamp string
    The timestamp when the image update happened.
    Id string
    The unique ID of the trigger.
    Images []ImageDescriptorResponse
    The list of image updates that caused the build.
    Timestamp string
    The timestamp when the image update happened.
    id String
    The unique ID of the trigger.
    images List<ImageDescriptorResponse>
    The list of image updates that caused the build.
    timestamp String
    The timestamp when the image update happened.
    id string
    The unique ID of the trigger.
    images ImageDescriptorResponse[]
    The list of image updates that caused the build.
    timestamp string
    The timestamp when the image update happened.
    id str
    The unique ID of the trigger.
    images Sequence[ImageDescriptorResponse]
    The list of image updates that caused the build.
    timestamp str
    The timestamp when the image update happened.
    id String
    The unique ID of the trigger.
    images List<Property Map>
    The list of image updates that caused the build.
    timestamp String
    The timestamp when the image update happened.

    OS, OSArgs

    Windows
    Windows
    Linux
    Linux
    OSWindows
    Windows
    OSLinux
    Linux
    Windows
    Windows
    Linux
    Linux
    Windows
    Windows
    Linux
    Linux
    WINDOWS
    Windows
    LINUX
    Linux
    "Windows"
    Windows
    "Linux"
    Linux

    OverrideTaskStepProperties, OverrideTaskStepPropertiesArgs

    Arguments List<Pulumi.AzureNative.ContainerRegistry.Inputs.Argument>
    Gets or sets the collection of override arguments to be used when executing a build step.
    ContextPath string
    The source context against which run has to be queued.
    File string
    The file against which run has to be queued.
    Target string
    The name of the target build stage for the docker build.
    UpdateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValue>
    The collection of overridable values that can be passed when running a Task.
    Arguments []Argument
    Gets or sets the collection of override arguments to be used when executing a build step.
    ContextPath string
    The source context against which run has to be queued.
    File string
    The file against which run has to be queued.
    Target string
    The name of the target build stage for the docker build.
    UpdateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    Values []SetValue
    The collection of overridable values that can be passed when running a Task.
    arguments List<Argument>
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath String
    The source context against which run has to be queued.
    file String
    The file against which run has to be queued.
    target String
    The name of the target build stage for the docker build.
    updateTriggerToken String
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values List<SetValue>
    The collection of overridable values that can be passed when running a Task.
    arguments Argument[]
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath string
    The source context against which run has to be queued.
    file string
    The file against which run has to be queued.
    target string
    The name of the target build stage for the docker build.
    updateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values SetValue[]
    The collection of overridable values that can be passed when running a Task.
    arguments Sequence[Argument]
    Gets or sets the collection of override arguments to be used when executing a build step.
    context_path str
    The source context against which run has to be queued.
    file str
    The file against which run has to be queued.
    target str
    The name of the target build stage for the docker build.
    update_trigger_token str
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values Sequence[SetValue]
    The collection of overridable values that can be passed when running a Task.
    arguments List<Property Map>
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath String
    The source context against which run has to be queued.
    file String
    The file against which run has to be queued.
    target String
    The name of the target build stage for the docker build.
    updateTriggerToken String
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values List<Property Map>
    The collection of overridable values that can be passed when running a Task.

    OverrideTaskStepPropertiesResponse, OverrideTaskStepPropertiesResponseArgs

    Arguments List<Pulumi.AzureNative.ContainerRegistry.Inputs.ArgumentResponse>
    Gets or sets the collection of override arguments to be used when executing a build step.
    ContextPath string
    The source context against which run has to be queued.
    File string
    The file against which run has to be queued.
    Target string
    The name of the target build stage for the docker build.
    UpdateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    Values List<Pulumi.AzureNative.ContainerRegistry.Inputs.SetValueResponse>
    The collection of overridable values that can be passed when running a Task.
    Arguments []ArgumentResponse
    Gets or sets the collection of override arguments to be used when executing a build step.
    ContextPath string
    The source context against which run has to be queued.
    File string
    The file against which run has to be queued.
    Target string
    The name of the target build stage for the docker build.
    UpdateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    Values []SetValueResponse
    The collection of overridable values that can be passed when running a Task.
    arguments List<ArgumentResponse>
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath String
    The source context against which run has to be queued.
    file String
    The file against which run has to be queued.
    target String
    The name of the target build stage for the docker build.
    updateTriggerToken String
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values List<SetValueResponse>
    The collection of overridable values that can be passed when running a Task.
    arguments ArgumentResponse[]
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath string
    The source context against which run has to be queued.
    file string
    The file against which run has to be queued.
    target string
    The name of the target build stage for the docker build.
    updateTriggerToken string
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values SetValueResponse[]
    The collection of overridable values that can be passed when running a Task.
    arguments Sequence[ArgumentResponse]
    Gets or sets the collection of override arguments to be used when executing a build step.
    context_path str
    The source context against which run has to be queued.
    file str
    The file against which run has to be queued.
    target str
    The name of the target build stage for the docker build.
    update_trigger_token str
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values Sequence[SetValueResponse]
    The collection of overridable values that can be passed when running a Task.
    arguments List<Property Map>
    Gets or sets the collection of override arguments to be used when executing a build step.
    contextPath String
    The source context against which run has to be queued.
    file String
    The file against which run has to be queued.
    target String
    The name of the target build stage for the docker build.
    updateTriggerToken String
    Base64 encoded update trigger token that will be attached with the base image trigger webhook.
    values List<Property Map>
    The collection of overridable values that can be passed when running a Task.

    PlatformProperties, PlatformPropertiesArgs

    Os string | Pulumi.AzureNative.ContainerRegistry.OS
    The operating system type required for the run.
    Architecture string | Pulumi.AzureNative.ContainerRegistry.Architecture
    The OS architecture.
    Variant string | Pulumi.AzureNative.ContainerRegistry.Variant
    Variant of the CPU.
    Os string | OS
    The operating system type required for the run.
    Architecture string | Architecture
    The OS architecture.
    Variant string | Variant
    Variant of the CPU.
    os String | OS
    The operating system type required for the run.
    architecture String | Architecture
    The OS architecture.
    variant String | Variant
    Variant of the CPU.
    os string | OS
    The operating system type required for the run.
    architecture string | Architecture
    The OS architecture.
    variant string | Variant
    Variant of the CPU.
    os str | OS
    The operating system type required for the run.
    architecture str | Architecture
    The OS architecture.
    variant str | Variant
    Variant of the CPU.
    os String | "Windows" | "Linux"
    The operating system type required for the run.
    architecture String | "amd64" | "x86" | "386" | "arm" | "arm64"
    The OS architecture.
    variant String | "v6" | "v7" | "v8"
    Variant of the CPU.

    PlatformPropertiesResponse, PlatformPropertiesResponseArgs

    Os string
    The operating system type required for the run.
    Architecture string
    The OS architecture.
    Variant string
    Variant of the CPU.
    Os string
    The operating system type required for the run.
    Architecture string
    The OS architecture.
    Variant string
    Variant of the CPU.
    os String
    The operating system type required for the run.
    architecture String
    The OS architecture.
    variant String
    Variant of the CPU.
    os string
    The operating system type required for the run.
    architecture string
    The OS architecture.
    variant string
    Variant of the CPU.
    os str
    The operating system type required for the run.
    architecture str
    The OS architecture.
    variant str
    Variant of the CPU.
    os String
    The operating system type required for the run.
    architecture String
    The OS architecture.
    variant String
    Variant of the CPU.

    ResourceIdentityType, ResourceIdentityTypeArgs

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

    RunResponse, RunResponseArgs

    Id string
    The resource ID.
    LogArtifact Pulumi.AzureNative.ContainerRegistry.Inputs.ImageDescriptorResponse
    The image description for the log artifact.
    Name string
    The name of the resource.
    RunErrorMessage string
    The error message received from backend systems after the run is scheduled.
    SystemData Pulumi.AzureNative.ContainerRegistry.Inputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    AgentConfiguration Pulumi.AzureNative.ContainerRegistry.Inputs.AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    CreateTime string
    The time the run was scheduled.
    CustomRegistries List<string>
    The list of custom registries that were logged in during this run.
    FinishTime string
    The time the run finished.
    ImageUpdateTrigger Pulumi.AzureNative.ContainerRegistry.Inputs.ImageUpdateTriggerResponse
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled or not.
    LastUpdatedTime string
    The last updated time for the run.
    OutputImages List<Pulumi.AzureNative.ContainerRegistry.Inputs.ImageDescriptorResponse>
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    Platform Pulumi.AzureNative.ContainerRegistry.Inputs.PlatformPropertiesResponse
    The platform properties against which the run will happen.
    ProvisioningState string
    The provisioning state of a run.
    RunId string
    The unique identifier for the run.
    RunType string
    The type of run.
    SourceRegistryAuth string
    The scope of the credentials that were used to login to the source registry during this run.
    SourceTrigger Pulumi.AzureNative.ContainerRegistry.Inputs.SourceTriggerDescriptorResponse
    The source trigger that caused the run.
    StartTime string
    The time the run started.
    Status string
    The current status of the run.
    Task string
    The task against which run was scheduled.
    TimerTrigger Pulumi.AzureNative.ContainerRegistry.Inputs.TimerTriggerDescriptorResponse
    The timer trigger that caused the run.
    UpdateTriggerToken string
    The update trigger token passed for the Run.
    Id string
    The resource ID.
    LogArtifact ImageDescriptorResponse
    The image description for the log artifact.
    Name string
    The name of the resource.
    RunErrorMessage string
    The error message received from backend systems after the run is scheduled.
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    AgentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    AgentPoolName string
    The dedicated agent pool for the run.
    CreateTime string
    The time the run was scheduled.
    CustomRegistries []string
    The list of custom registries that were logged in during this run.
    FinishTime string
    The time the run finished.
    ImageUpdateTrigger ImageUpdateTriggerResponse
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled or not.
    LastUpdatedTime string
    The last updated time for the run.
    OutputImages []ImageDescriptorResponse
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    Platform PlatformPropertiesResponse
    The platform properties against which the run will happen.
    ProvisioningState string
    The provisioning state of a run.
    RunId string
    The unique identifier for the run.
    RunType string
    The type of run.
    SourceRegistryAuth string
    The scope of the credentials that were used to login to the source registry during this run.
    SourceTrigger SourceTriggerDescriptorResponse
    The source trigger that caused the run.
    StartTime string
    The time the run started.
    Status string
    The current status of the run.
    Task string
    The task against which run was scheduled.
    TimerTrigger TimerTriggerDescriptorResponse
    The timer trigger that caused the run.
    UpdateTriggerToken string
    The update trigger token passed for the Run.
    id String
    The resource ID.
    logArtifact ImageDescriptorResponse
    The image description for the log artifact.
    name String
    The name of the resource.
    runErrorMessage String
    The error message received from backend systems after the run is scheduled.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    createTime String
    The time the run was scheduled.
    customRegistries List<String>
    The list of custom registries that were logged in during this run.
    finishTime String
    The time the run finished.
    imageUpdateTrigger ImageUpdateTriggerResponse
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled or not.
    lastUpdatedTime String
    The last updated time for the run.
    outputImages List<ImageDescriptorResponse>
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    platform PlatformPropertiesResponse
    The platform properties against which the run will happen.
    provisioningState String
    The provisioning state of a run.
    runId String
    The unique identifier for the run.
    runType String
    The type of run.
    sourceRegistryAuth String
    The scope of the credentials that were used to login to the source registry during this run.
    sourceTrigger SourceTriggerDescriptorResponse
    The source trigger that caused the run.
    startTime String
    The time the run started.
    status String
    The current status of the run.
    task String
    The task against which run was scheduled.
    timerTrigger TimerTriggerDescriptorResponse
    The timer trigger that caused the run.
    updateTriggerToken String
    The update trigger token passed for the Run.
    id string
    The resource ID.
    logArtifact ImageDescriptorResponse
    The image description for the log artifact.
    name string
    The name of the resource.
    runErrorMessage string
    The error message received from backend systems after the run is scheduled.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource.
    agentConfiguration AgentPropertiesResponse
    The machine configuration of the run agent.
    agentPoolName string
    The dedicated agent pool for the run.
    createTime string
    The time the run was scheduled.
    customRegistries string[]
    The list of custom registries that were logged in during this run.
    finishTime string
    The time the run finished.
    imageUpdateTrigger ImageUpdateTriggerResponse
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled or not.
    lastUpdatedTime string
    The last updated time for the run.
    outputImages ImageDescriptorResponse[]
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    platform PlatformPropertiesResponse
    The platform properties against which the run will happen.
    provisioningState string
    The provisioning state of a run.
    runId string
    The unique identifier for the run.
    runType string
    The type of run.
    sourceRegistryAuth string
    The scope of the credentials that were used to login to the source registry during this run.
    sourceTrigger SourceTriggerDescriptorResponse
    The source trigger that caused the run.
    startTime string
    The time the run started.
    status string
    The current status of the run.
    task string
    The task against which run was scheduled.
    timerTrigger TimerTriggerDescriptorResponse
    The timer trigger that caused the run.
    updateTriggerToken string
    The update trigger token passed for the Run.
    id str
    The resource ID.
    log_artifact ImageDescriptorResponse
    The image description for the log artifact.
    name str
    The name of the resource.
    run_error_message str
    The error message received from backend systems after the run is scheduled.
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource.
    agent_configuration AgentPropertiesResponse
    The machine configuration of the run agent.
    agent_pool_name str
    The dedicated agent pool for the run.
    create_time str
    The time the run was scheduled.
    custom_registries Sequence[str]
    The list of custom registries that were logged in during this run.
    finish_time str
    The time the run finished.
    image_update_trigger ImageUpdateTriggerResponse
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled or not.
    last_updated_time str
    The last updated time for the run.
    output_images Sequence[ImageDescriptorResponse]
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    platform PlatformPropertiesResponse
    The platform properties against which the run will happen.
    provisioning_state str
    The provisioning state of a run.
    run_id str
    The unique identifier for the run.
    run_type str
    The type of run.
    source_registry_auth str
    The scope of the credentials that were used to login to the source registry during this run.
    source_trigger SourceTriggerDescriptorResponse
    The source trigger that caused the run.
    start_time str
    The time the run started.
    status str
    The current status of the run.
    task str
    The task against which run was scheduled.
    timer_trigger TimerTriggerDescriptorResponse
    The timer trigger that caused the run.
    update_trigger_token str
    The update trigger token passed for the Run.
    id String
    The resource ID.
    logArtifact Property Map
    The image description for the log artifact.
    name String
    The name of the resource.
    runErrorMessage String
    The error message received from backend systems after the run is scheduled.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    agentConfiguration Property Map
    The machine configuration of the run agent.
    agentPoolName String
    The dedicated agent pool for the run.
    createTime String
    The time the run was scheduled.
    customRegistries List<String>
    The list of custom registries that were logged in during this run.
    finishTime String
    The time the run finished.
    imageUpdateTrigger Property Map
    The image update trigger that caused the run. This is applicable if the task has base image trigger configured.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled or not.
    lastUpdatedTime String
    The last updated time for the run.
    outputImages List<Property Map>
    The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.
    platform Property Map
    The platform properties against which the run will happen.
    provisioningState String
    The provisioning state of a run.
    runId String
    The unique identifier for the run.
    runType String
    The type of run.
    sourceRegistryAuth String
    The scope of the credentials that were used to login to the source registry during this run.
    sourceTrigger Property Map
    The source trigger that caused the run.
    startTime String
    The time the run started.
    status String
    The current status of the run.
    task String
    The task against which run was scheduled.
    timerTrigger Property Map
    The timer trigger that caused the run.
    updateTriggerToken String
    The update trigger token passed for the Run.

    SecretObject, SecretObjectArgs

    Type string | Pulumi.AzureNative.ContainerRegistry.SecretObjectType
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    Value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    Type string | SecretObjectType
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    Value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type String | SecretObjectType
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value String
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type string | SecretObjectType
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type str | SecretObjectType
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value str
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type String | "Opaque" | "Vaultsecret"
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value String
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.

    SecretObjectResponse, SecretObjectResponseArgs

    Type string
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    Value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    Type string
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    Value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type String
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value String
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type string
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value string
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type str
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value str
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
    type String
    The type of the secret object which determines how the value of the secret object has to be interpreted.
    value String
    The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.

    SecretObjectType, SecretObjectTypeArgs

    Opaque
    Opaque
    Vaultsecret
    Vaultsecret
    SecretObjectTypeOpaque
    Opaque
    SecretObjectTypeVaultsecret
    Vaultsecret
    Opaque
    Opaque
    Vaultsecret
    Vaultsecret
    Opaque
    Opaque
    Vaultsecret
    Vaultsecret
    OPAQUE
    Opaque
    VAULTSECRET
    Vaultsecret
    "Opaque"
    Opaque
    "Vaultsecret"
    Vaultsecret

    SetValue, SetValueArgs

    Name string
    The name of the overridable value.
    Value string
    The overridable value.
    IsSecret bool
    Flag to indicate whether the value represents a secret or not.
    Name string
    The name of the overridable value.
    Value string
    The overridable value.
    IsSecret bool
    Flag to indicate whether the value represents a secret or not.
    name String
    The name of the overridable value.
    value String
    The overridable value.
    isSecret Boolean
    Flag to indicate whether the value represents a secret or not.
    name string
    The name of the overridable value.
    value string
    The overridable value.
    isSecret boolean
    Flag to indicate whether the value represents a secret or not.
    name str
    The name of the overridable value.
    value str
    The overridable value.
    is_secret bool
    Flag to indicate whether the value represents a secret or not.
    name String
    The name of the overridable value.
    value String
    The overridable value.
    isSecret Boolean
    Flag to indicate whether the value represents a secret or not.

    SetValueResponse, SetValueResponseArgs

    Name string
    The name of the overridable value.
    Value string
    The overridable value.
    IsSecret bool
    Flag to indicate whether the value represents a secret or not.
    Name string
    The name of the overridable value.
    Value string
    The overridable value.
    IsSecret bool
    Flag to indicate whether the value represents a secret or not.
    name String
    The name of the overridable value.
    value String
    The overridable value.
    isSecret Boolean
    Flag to indicate whether the value represents a secret or not.
    name string
    The name of the overridable value.
    value string
    The overridable value.
    isSecret boolean
    Flag to indicate whether the value represents a secret or not.
    name str
    The name of the overridable value.
    value str
    The overridable value.
    is_secret bool
    Flag to indicate whether the value represents a secret or not.
    name String
    The name of the overridable value.
    value String
    The overridable value.
    isSecret Boolean
    Flag to indicate whether the value represents a secret or not.

    SourceRegistryCredentials, SourceRegistryCredentialsArgs

    LoginMode string | Pulumi.AzureNative.ContainerRegistry.SourceRegistryLoginMode
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    LoginMode string | SourceRegistryLoginMode
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode String | SourceRegistryLoginMode
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode string | SourceRegistryLoginMode
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    login_mode str | SourceRegistryLoginMode
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode String | "None" | "Default"
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.

    SourceRegistryCredentialsResponse, SourceRegistryCredentialsResponseArgs

    LoginMode string
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    LoginMode string
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode String
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode string
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    login_mode str
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.
    loginMode String
    The authentication mode which determines the source registry login scope. The credentials for the source registry will be generated using the given scope. These credentials will be used to login to the source registry during the run.

    SourceRegistryLoginMode, SourceRegistryLoginModeArgs

    None
    None
    Default
    Default
    SourceRegistryLoginModeNone
    None
    SourceRegistryLoginModeDefault
    Default
    None
    None
    Default
    Default
    None
    None
    Default
    Default
    NONE
    None
    DEFAULT
    Default
    "None"
    None
    "Default"
    Default

    SourceTriggerDescriptorResponse, SourceTriggerDescriptorResponseArgs

    BranchName string
    The branch name in the repository.
    CommitId string
    The unique ID that identifies a commit.
    EventType string
    The event type of the trigger.
    Id string
    The unique ID of the trigger.
    ProviderType string
    The source control provider type.
    PullRequestId string
    The unique ID that identifies pull request.
    RepositoryUrl string
    The repository URL.
    BranchName string
    The branch name in the repository.
    CommitId string
    The unique ID that identifies a commit.
    EventType string
    The event type of the trigger.
    Id string
    The unique ID of the trigger.
    ProviderType string
    The source control provider type.
    PullRequestId string
    The unique ID that identifies pull request.
    RepositoryUrl string
    The repository URL.
    branchName String
    The branch name in the repository.
    commitId String
    The unique ID that identifies a commit.
    eventType String
    The event type of the trigger.
    id String
    The unique ID of the trigger.
    providerType String
    The source control provider type.
    pullRequestId String
    The unique ID that identifies pull request.
    repositoryUrl String
    The repository URL.
    branchName string
    The branch name in the repository.
    commitId string
    The unique ID that identifies a commit.
    eventType string
    The event type of the trigger.
    id string
    The unique ID of the trigger.
    providerType string
    The source control provider type.
    pullRequestId string
    The unique ID that identifies pull request.
    repositoryUrl string
    The repository URL.
    branch_name str
    The branch name in the repository.
    commit_id str
    The unique ID that identifies a commit.
    event_type str
    The event type of the trigger.
    id str
    The unique ID of the trigger.
    provider_type str
    The source control provider type.
    pull_request_id str
    The unique ID that identifies pull request.
    repository_url str
    The repository URL.
    branchName String
    The branch name in the repository.
    commitId String
    The unique ID that identifies a commit.
    eventType String
    The event type of the trigger.
    id String
    The unique ID of the trigger.
    providerType String
    The source control provider type.
    pullRequestId String
    The unique ID that identifies pull request.
    repositoryUrl String
    The repository URL.

    SystemDataResponse, SystemDataResponseArgs

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

    TaskRunRequest, TaskRunRequestArgs

    TaskId string
    The resource ID of task against which run has to be queued.
    AgentPoolName string
    The dedicated agent pool for the run.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    OverrideTaskStepProperties Pulumi.AzureNative.ContainerRegistry.Inputs.OverrideTaskStepProperties
    Set of overridable parameters that can be passed when running a Task.
    TaskId string
    The resource ID of task against which run has to be queued.
    AgentPoolName string
    The dedicated agent pool for the run.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    OverrideTaskStepProperties OverrideTaskStepProperties
    Set of overridable parameters that can be passed when running a Task.
    taskId String
    The resource ID of task against which run has to be queued.
    agentPoolName String
    The dedicated agent pool for the run.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties OverrideTaskStepProperties
    Set of overridable parameters that can be passed when running a Task.
    taskId string
    The resource ID of task against which run has to be queued.
    agentPoolName string
    The dedicated agent pool for the run.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties OverrideTaskStepProperties
    Set of overridable parameters that can be passed when running a Task.
    task_id str
    The resource ID of task against which run has to be queued.
    agent_pool_name str
    The dedicated agent pool for the run.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    override_task_step_properties OverrideTaskStepProperties
    Set of overridable parameters that can be passed when running a Task.
    taskId String
    The resource ID of task against which run has to be queued.
    agentPoolName String
    The dedicated agent pool for the run.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties Property Map
    Set of overridable parameters that can be passed when running a Task.

    TaskRunRequestResponse, TaskRunRequestResponseArgs

    TaskId string
    The resource ID of task against which run has to be queued.
    AgentPoolName string
    The dedicated agent pool for the run.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    OverrideTaskStepProperties Pulumi.AzureNative.ContainerRegistry.Inputs.OverrideTaskStepPropertiesResponse
    Set of overridable parameters that can be passed when running a Task.
    TaskId string
    The resource ID of task against which run has to be queued.
    AgentPoolName string
    The dedicated agent pool for the run.
    IsArchiveEnabled bool
    The value that indicates whether archiving is enabled for the run or not.
    LogTemplate string
    The template that describes the repository and tag information for run log artifact.
    OverrideTaskStepProperties OverrideTaskStepPropertiesResponse
    Set of overridable parameters that can be passed when running a Task.
    taskId String
    The resource ID of task against which run has to be queued.
    agentPoolName String
    The dedicated agent pool for the run.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties OverrideTaskStepPropertiesResponse
    Set of overridable parameters that can be passed when running a Task.
    taskId string
    The resource ID of task against which run has to be queued.
    agentPoolName string
    The dedicated agent pool for the run.
    isArchiveEnabled boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate string
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties OverrideTaskStepPropertiesResponse
    Set of overridable parameters that can be passed when running a Task.
    task_id str
    The resource ID of task against which run has to be queued.
    agent_pool_name str
    The dedicated agent pool for the run.
    is_archive_enabled bool
    The value that indicates whether archiving is enabled for the run or not.
    log_template str
    The template that describes the repository and tag information for run log artifact.
    override_task_step_properties OverrideTaskStepPropertiesResponse
    Set of overridable parameters that can be passed when running a Task.
    taskId String
    The resource ID of task against which run has to be queued.
    agentPoolName String
    The dedicated agent pool for the run.
    isArchiveEnabled Boolean
    The value that indicates whether archiving is enabled for the run or not.
    logTemplate String
    The template that describes the repository and tag information for run log artifact.
    overrideTaskStepProperties Property Map
    Set of overridable parameters that can be passed when running a Task.

    TimerTriggerDescriptorResponse, TimerTriggerDescriptorResponseArgs

    ScheduleOccurrence string
    The occurrence that triggered the run.
    TimerTriggerName string
    The timer trigger name that caused the run.
    ScheduleOccurrence string
    The occurrence that triggered the run.
    TimerTriggerName string
    The timer trigger name that caused the run.
    scheduleOccurrence String
    The occurrence that triggered the run.
    timerTriggerName String
    The timer trigger name that caused the run.
    scheduleOccurrence string
    The occurrence that triggered the run.
    timerTriggerName string
    The timer trigger name that caused the run.
    schedule_occurrence str
    The occurrence that triggered the run.
    timer_trigger_name str
    The timer trigger name that caused the run.
    scheduleOccurrence String
    The occurrence that triggered the run.
    timerTriggerName String
    The timer trigger name that caused the run.

    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.

    Variant, VariantArgs

    V6
    v6
    V7
    v7
    V8
    v8
    VariantV6
    v6
    VariantV7
    v7
    VariantV8
    v8
    V6
    v6
    V7
    v7
    V8
    v8
    V6
    v6
    V7
    v7
    V8
    v8
    V6
    v6
    V7
    v7
    V8
    v8
    "v6"
    v6
    "v7"
    v7
    "v8"
    v8

    Import

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

    $ pulumi import azure-native:containerregistry:TaskRun myrun /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/taskRuns/{taskRunName} 
    

    Package Details

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