Skip to main content

deployments_remote_debugging_configs

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

Overview

Namedeployments_remote_debugging_configs
TypeResource
Idazure.spring_apps.deployments_remote_debugging_configs

Fields

The following fields are returned by SELECT queries:

Success.

NameDatatypeDescription
enabledbooleanIndicate if remote debugging is enabled
portinteger (int32)Application debugging port

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, serviceName, appName, deploymentNameGet remote debugging config.

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
appNamestringThe name of the App resource.
deploymentNamestringThe name of the Deployment resource.
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceNamestringThe name of the Service resource.
subscriptionIdstringGets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Get remote debugging config.

SELECT
enabled,
port
FROM azure.spring_apps.deployments_remote_debugging_configs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND appName = '{{ appName }}' -- required
AND deploymentName = '{{ deploymentName }}' -- required
;