Skip to main content

runs_log_sas_urls

Creates, updates, deletes, gets or lists a runs_log_sas_urls resource.

Overview

Nameruns_log_sas_urls
TypeResource
Idazure.container_registry.runs_log_sas_urls

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
logArtifactLinkstringThe link to logs in registry for a run on a azure container registry.
logLinkstringThe link to logs for a run on a azure container registry.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryName, runIdGets a link to download the run logs.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
registryNamestringThe name of the container registry.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
runIdstringThe run ID.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets a link to download the run logs.

SELECT
logArtifactLink,
logLink
FROM azure.container_registry.runs_log_sas_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND runId = '{{ runId }}' -- required
;