web_categories
Creates, updates, deletes, gets or lists a web_categories
resource.
Overview
Name | web_categories |
Type | Resource |
Id | azure.network.web_categories |
Fields
- vw_web_categories
- web_categories
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
etag | text | A unique read-only string that changes whenever the resource is updated. |
group | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Azure Web Category Properties. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, subscriptionId | Gets the specified Azure Web Category. |
list_by_subscription | SELECT | subscriptionId | Gets all the Azure Web Categories in a subscription. |
SELECT
examples
Gets all the Azure Web Categories in a subscription.
- vw_web_categories
- web_categories
SELECT
id,
name,
etag,
group,
subscriptionId,
type
FROM azure.network.vw_web_categories
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.web_categories
WHERE subscriptionId = '{{ subscriptionId }}';