@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 7.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* The task that has the ARM resource and task properties.
* The task will have all information to schedule a run against it.
*
* Uses Azure REST API version 2019-06-01-preview. In version 2.x of the Azure Native provider, it used API version 2019-06-01-preview.
*
* Other available API versions: 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare class Task extends pulumi.CustomResource {
/**
* Get an existing Task resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Task;
/**
* Returns true if the given object is an instance of Task. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is Task;
/**
* The machine configuration of the run agent.
*/
readonly agentConfiguration: pulumi.Output<outputs.containerregistry.AgentPropertiesResponse | undefined>;
/**
* The dedicated agent pool for the task.
*/
readonly agentPoolName: pulumi.Output<string | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The creation date of task.
*/
readonly creationDate: pulumi.Output<string>;
/**
* The properties that describes a set of credentials that will be used when this run is invoked.
*/
readonly credentials: pulumi.Output<outputs.containerregistry.CredentialsResponse | undefined>;
/**
* Identity for the resource.
*/
readonly identity: pulumi.Output<outputs.containerregistry.IdentityPropertiesResponse | undefined>;
/**
* The value of this property indicates whether the task resource is system task or not.
*/
readonly isSystemTask: pulumi.Output<boolean | undefined>;
/**
* The location of the resource. This cannot be changed after the resource is created.
*/
readonly location: pulumi.Output<string>;
/**
* The template that describes the repository and tag information for run log artifact.
*/
readonly logTemplate: pulumi.Output<string | undefined>;
/**
* The name of the resource.
*/
readonly name: pulumi.Output<string>;
/**
* The platform properties against which the run has to happen.
*/
readonly platform: pulumi.Output<outputs.containerregistry.PlatformPropertiesResponse | undefined>;
/**
* The provisioning state of the task.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* The current status of task.
*/
readonly status: pulumi.Output<string | undefined>;
/**
* The properties of a task step.
*/
readonly step: pulumi.Output<outputs.containerregistry.DockerBuildStepResponse | outputs.containerregistry.EncodedTaskStepResponse | outputs.containerregistry.FileTaskStepResponse | undefined>;
/**
* Metadata pertaining to creation and last modification of the resource.
*/
readonly systemData: pulumi.Output<outputs.containerregistry.SystemDataResponse>;
/**
* The tags of the resource.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Run timeout in seconds.
*/
readonly timeout: pulumi.Output<number | undefined>;
/**
* The properties that describe all triggers for the task.
*/
readonly trigger: pulumi.Output<outputs.containerregistry.TriggerPropertiesResponse | undefined>;
/**
* The type of the resource.
*/
readonly type: pulumi.Output<string>;
/**
* Create a Task resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: TaskArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Task resource.
*/
export interface TaskArgs {
/**
* The machine configuration of the run agent.
*/
agentConfiguration?: pulumi.Input<inputs.containerregistry.AgentPropertiesArgs>;
/**
* The dedicated agent pool for the task.
*/
agentPoolName?: pulumi.Input<string>;
/**
* The properties that describes a set of credentials that will be used when this run is invoked.
*/
credentials?: pulumi.Input<inputs.containerregistry.CredentialsArgs>;
/**
* Identity for the resource.
*/
identity?: pulumi.Input<inputs.containerregistry.IdentityPropertiesArgs>;
/**
* The value of this property indicates whether the task resource is system task or not.
*/
isSystemTask?: pulumi.Input<boolean>;
/**
* The location of the resource. This cannot be changed after the resource is created.
*/
location?: pulumi.Input<string>;
/**
* The template that describes the repository and tag information for run log artifact.
*/
logTemplate?: pulumi.Input<string>;
/**
* The platform properties against which the run has to happen.
*/
platform?: pulumi.Input<inputs.containerregistry.PlatformPropertiesArgs>;
/**
* The name of the container registry.
*/
registryName: pulumi.Input<string>;
/**
* The name of the resource group to which the container registry belongs.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The current status of task.
*/
status?: pulumi.Input<string | enums.containerregistry.TaskStatus>;
/**
* The properties of a task step.
*/
step?: pulumi.Input<inputs.containerregistry.DockerBuildStepArgs | inputs.containerregistry.EncodedTaskStepArgs | inputs.containerregistry.FileTaskStepArgs>;
/**
* The tags of the resource.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* The name of the container registry task.
*/
taskName?: pulumi.Input<string>;
/**
* Run timeout in seconds.
*/
timeout?: pulumi.Input<number>;
/**
* The properties that describe all triggers for the task.
*/
trigger?: pulumi.Input<inputs.containerregistry.TriggerPropertiesArgs>;
}