UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

93 lines (92 loc) 3.45 kB
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>; }