Skip to main content

web_categories

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

Overview

Nameweb_categories
TypeResource
Idazure.network.web_categories

Fields

NameDatatypeDescription
idtextResource ID.
nametextResource name.
etagtextA unique read-only string that changes whenever the resource is updated.
grouptextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, subscriptionIdGets the specified Azure Web Category.
list_by_subscriptionSELECTsubscriptionIdGets all the Azure Web Categories in a subscription.

SELECT examples

Gets all the Azure Web Categories in a subscription.

SELECT
id,
name,
etag,
group,
subscriptionId,
type
FROM azure.network.vw_web_categories
WHERE subscriptionId = '{{ subscriptionId }}';