Skip to main content

plans_web_apps_by_hybrid_connections

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

Overview

Nameplans_web_apps_by_hybrid_connections
TypeResource
Idazure.app_service.plans_web_apps_by_hybrid_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, name, namespaceName, relayName, subscriptionIdDescription for Get all apps that use a Hybrid Connection in an App Service Plan.

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
namestringName of the App Service plan.
namespaceNamestringName of the Hybrid Connection namespace.
relayNamestringName of the Hybrid Connection relay.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Description for Get all apps that use a Hybrid Connection in an App Service Plan.

SELECT
*
FROM azure.app_service.plans_web_apps_by_hybrid_connections
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND relayName = '{{ relayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;