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

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting azureWebCategory resource.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of the Azure Web Category.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectname, subscriptionId$expandGets the specified Azure Web Category.
list_by_subscriptionselectsubscriptionIdGets all the Azure Web Categories in a subscription.

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
namestringThe name of the azureWebCategory.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$expandstringExpands resourceIds back referenced by the azureWebCategory resource.

SELECT examples

Gets the specified Azure Web Category.

SELECT
id,
name,
etag,
properties,
type
FROM azure.network.web_categories
WHERE name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $expand = '{{ $expand }}'
;