deployments_log_file_urls
Creates, updates, deletes, gets or lists a deployments_log_file_urls
resource.
Overview
Name | deployments_log_file_urls |
Type | Resource |
Id | azure.spring_apps.deployments_log_file_urls |
Fields
The following fields are returned by SELECT
queries:
- get
Success. The response contains the log file URL.
Name | Datatype | Description |
---|---|---|
url | string | URL of the log file |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , serviceName , appName , deploymentName | Get deployment log file 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 |
---|---|---|
appName | string | The name of the App resource. |
deploymentName | string | The name of the Deployment 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 deployment log file URL
SELECT
url
FROM azure.spring_apps.deployments_log_file_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND appName = '{{ appName }}' -- required
AND deploymentName = '{{ deploymentName }}' -- required
;