runs_log_sas_urls
Creates, updates, deletes, gets or lists a runs_log_sas_urls resource.
Overview
| Name | runs_log_sas_urls |
| Type | Resource |
| Id | azure.container_registry.runs_log_sas_urls |
Fields
The following fields are returned by SELECT queries:
- get
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
logArtifactLink | string | The link to logs in registry for a run on a azure container registry. |
logLink | string | The link to logs for a run on a azure container registry. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, registryName, runId | Gets 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.
| Name | Datatype | Description |
|---|---|---|
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
runId | string | The run ID. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
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
;