Skip to main content

notifications

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

Overview

Namenotifications
TypeResource
Idazure_extras.marketplace_notifications.notifications

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
created_datetextfield from the properties object
notificationtextfield from the properties object
offer_display_nametextfield from the properties object
offer_idtextfield from the properties object
principalIdtextfield from the properties object
principal_idtextfield from the properties object
subscriptiontextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTnotification, principalId, subscription
listSELECTprincipalId, subscription

SELECT examples

SELECT
id,
name,
created_date,
notification,
offer_display_name,
offer_id,
principalId,
principal_id,
subscription,
system_data,
type
FROM azure_extras.marketplace_notifications.vw_notifications
WHERE principalId = '{{ principalId }}'
AND subscription = '{{ subscription }}';