@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.15 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets a link to download the run logs.
*
* 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 listRunLogSasUrl(args: ListRunLogSasUrlArgs, opts?: pulumi.InvokeOptions): Promise<ListRunLogSasUrlResult>;
export interface ListRunLogSasUrlArgs {
/**
* The name of the container registry.
*/
registryName: string;
/**
* The name of the resource group to which the container registry belongs.
*/
resourceGroupName: string;
/**
* The run ID.
*/
runId: string;
}
/**
* The result of get log link operation.
*/
export interface ListRunLogSasUrlResult {
/**
* The link to logs in registry for a run on a azure container registry.
*/
readonly logArtifactLink?: string;
/**
* The link to logs for a run on a azure container registry.
*/
readonly logLink?: string;
}
/**
* Gets a link to download the run logs.
*
* 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 listRunLogSasUrlOutput(args: ListRunLogSasUrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListRunLogSasUrlResult>;
export interface ListRunLogSasUrlOutputArgs {
/**
* 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 run ID.
*/
runId: pulumi.Input<string>;
}