@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.45 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the detailed information for a given task run that includes all secrets.
*
* Uses Azure REST 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 function listTaskRunDetails(args: ListTaskRunDetailsArgs, opts?: pulumi.InvokeOptions): Promise<ListTaskRunDetailsResult>;
export interface ListTaskRunDetailsArgs {
/**
* The name of the container registry.
*/
registryName: string;
/**
* The name of the resource group to which the container registry belongs.
*/
resourceGroupName: string;
/**
* The name of the task run.
*/
taskRunName: string;
}
/**
* The task run that has the ARM resource and properties.
* The task run will have the information of request and result of a run.
*/
export interface ListTaskRunDetailsResult {
/**
* How the run should be forced to rerun even if the run request configuration has not changed
*/
readonly forceUpdateTag?: string;
/**
* The resource ID.
*/
readonly id: string;
/**
* Identity for the resource.
*/
readonly identity?: outputs.containerregistry.IdentityPropertiesResponse;
/**
* The location of the resource
*/
readonly location?: string;
/**
* The name of the resource.
*/
readonly name: string;
/**
* The provisioning state of this task run
*/
readonly provisioningState: string;
/**
* The request (parameters) for the run
*/
readonly runRequest?: outputs.containerregistry.DockerBuildRequestResponse | outputs.containerregistry.EncodedTaskRunRequestResponse | outputs.containerregistry.FileTaskRunRequestResponse | outputs.containerregistry.TaskRunRequestResponse;
/**
* The result of this task run
*/
readonly runResult: outputs.containerregistry.RunResponse;
/**
* Metadata pertaining to creation and last modification of the resource.
*/
readonly systemData: outputs.containerregistry.SystemDataResponse;
/**
* The type of the resource.
*/
readonly type: string;
}
/**
* Gets the detailed information for a given task run that includes all secrets.
*
* Uses Azure REST 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 function listTaskRunDetailsOutput(args: ListTaskRunDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListTaskRunDetailsResult>;
export interface ListTaskRunDetailsOutputArgs {
/**
* 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 name of the task run.
*/
taskRunName: pulumi.Input<string>;
}