Skip to main content

catalogs_device_groups

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

Overview

Namecatalogs_device_groups
TypeResource
Idazure.sphere.catalogs_device_groups

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, catalogName$filter, $top, $skip, $maxpagesizeList the device groups for the catalog.

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
catalogNamestringName of catalog
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
$filterstringFilter the result list using the given expression
$maxpagesizeinteger (int32)The maximum number of result items per page.
$skipinteger (int32)The number of result items to skip.
$topinteger (int32)The number of result items to return.

SELECT examples

List the device groups for the catalog.

SELECT
properties
FROM azure.sphere.catalogs_device_groups
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND catalogName = '{{ catalogName }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $skip = '{{ $skip }}'
AND $maxpagesize = '{{ $maxpagesize }}'
;