web_categories
Creates, updates, deletes, gets or lists a web_categories
resource.
Overview
Name | web_categories |
Type | Resource |
Id | azure.network.web_categories |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_subscription
Request successful. The operation returns the resulting azureWebCategory resource.
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 | Properties of the Azure Web Category. |
type | string | Resource type. |
Success. The operation returns a list of Azure Web Category resources.
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 | Properties of the Azure Web Category. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | name , subscriptionId | $expand | Gets the specified Azure Web Category. |
list_by_subscription | select | subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
name | string | The name of the azureWebCategory. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$expand | string | Expands resourceIds back referenced by the azureWebCategory resource. |
SELECT
examples
- get
- list_by_subscription
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 }}'
;
Gets all the Azure Web Categories in a subscription.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.web_categories
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;