notifications
Creates, updates, deletes, gets or lists a notifications
resource.
Overview
Name | notifications |
Type | Resource |
Id | azure_extras.marketplace_notifications.notifications |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK. The request has succeeded.
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 | The offer data structure. |
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" |
OK. The request has succeeded.
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 | The offer data structure. |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscription , notification , principalId | api-version | |
list | select | subscription , principalId | api-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.
Name | Datatype | Description |
---|---|---|
notification | string | the notification id |
principalId | string | user's principal id |
subscription | string | user's subscription id |
api-version | string | The API version to use for the request. |
SELECT
examples
- get
- list
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 }}'
;
OK. The request has succeeded.
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.marketplace_notifications.notifications
WHERE subscription = '{{ subscription }}' -- required
AND principalId = '{{ principalId }}' -- required
AND api-version = '{{ api-version }}'
;