Skip to main content

publishers

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

Overview

Namepublishers
TypeResource
Idazure_extras.edge_marketplace.publishers

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceUri, publisherNameGet a Publisher
listselectresourceUri$top, skip, maxpagesize, $filter, $skipTokenList Publisher resources by parent
list_by_subscriptionselectsubscriptionId$top, skip, maxpagesize, $filter, $skipTokenList Publisher resources in 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
publisherNamestringName of the publisher
resourceUristringThe fully qualified Azure Resource manager identifier of the resource.
subscriptionIdstringThe ID of the target subscription.
$filterstringFilter the result list using the given expression.
$skipTokenstringSkip over when retrieving results.
$topinteger (int32)The number of result items to return.
maxpagesizeinteger (int32)The maximum number of result items per page.
skipinteger (int32)The number of result items to skip.

SELECT examples

Get a Publisher

SELECT
properties
FROM azure_extras.edge_marketplace.publishers
WHERE resourceUri = '{{ resourceUri }}' -- required
AND publisherName = '{{ publisherName }}' -- required
;