Skip to main content

catalogs_deployments

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

Overview

Namecatalogs_deployments
TypeResource
Idazure.sphere.catalogs_deployments

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, $maxpagesizeLists deployments for 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

Lists deployments for catalog.

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