build_service_build_result_logs
Creates, updates, deletes, gets or lists a build_service_build_result_logs resource.
Overview
| Name | build_service_build_result_logs |
| Type | Resource |
| Id | azure.spring_apps.build_service_build_result_logs |
Fields
The following fields are returned by SELECT queries:
- get
Success. Build result log exists and can be downloaded.
| Name | Datatype | Description |
|---|---|---|
blobUrl | string | The public download URL of this build result log |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, serviceName, buildServiceName, buildName, buildResultName | Get a KPack build result log download URL. |
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 |
|---|---|---|
buildName | string | The name of the build resource. |
buildResultName | string | The name of the build result resource. |
buildServiceName | string | The name of the build service resource. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
serviceName | string | The name of the Service resource. |
subscriptionId | string | Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
Get a KPack build result log download URL.
SELECT
blobUrl
FROM azure.spring_apps.build_service_build_result_logs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND buildServiceName = '{{ buildServiceName }}' -- required
AND buildName = '{{ buildName }}' -- required
AND buildResultName = '{{ buildResultName }}' -- required
;