Skip to main content

notifications

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

Overview

Namenotifications
TypeResource
Idazure_extras.marketplace_notifications.notifications

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectThe offer data structure.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscription, notification, principalIdapi-version
listselectsubscription, principalIdapi-version

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
notificationstringthe notification id
principalIdstringuser's principal id
subscriptionstringuser's subscription id
api-versionstringThe API version to use for the request.

SELECT examples

OK. The request has succeeded.

SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.marketplace_notifications.notifications
WHERE subscription = '{{ subscription }}' -- required
AND notification = '{{ notification }}' -- required
AND principalId = '{{ principalId }}' -- required
AND api-version = '{{ api-version }}'
;