Skip to main content

network_features

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

Overview

Namenetwork_features
TypeResource
Idazure.app_service.network_features

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectNetworkFeatures resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, name, view, subscriptionIdDescription for Gets all network features used by the app (or deployment slot, if specified).

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.
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).
viewstringThe type of view. Only "summary" is supported at this time.

SELECT examples

Description for Gets all network features used by the app (or deployment slot, if specified).

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.network_features
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND view = '{{ view }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;