notifications
Creates, updates, deletes, gets or lists a notifications
resource.
Overview
Name | notifications |
Type | Resource |
Id | azure_extras.marketplace_notifications.notifications |
Fields
- vw_notifications
- notifications
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
created_date | text | field from the properties object |
notification | text | field from the properties object |
offer_display_name | text | field from the properties object |
offer_id | text | field from the properties object |
principalId | text | field from the properties object |
principal_id | text | field from the properties object |
subscription | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | notification, principalId, subscription | |
list | SELECT | principalId, subscription |
SELECT
examples
- vw_notifications
- notifications
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.marketplace_notifications.notifications
WHERE principalId = '{{ principalId }}'
AND subscription = '{{ subscription }}';