upgrade_notifications
Creates, updates, deletes, gets or lists a upgrade_notifications
resource.
Overview
Name | upgrade_notifications |
Type | Resource |
Id | azure_isv.redis.upgrade_notifications |
Fields
The following fields are returned by SELECT
queries:
- list
All upgrade notifications in given time range
Name | Datatype | Description |
---|---|---|
name | string | Name of upgrade notification. |
timestamp | string (date-time) | Timestamp when upgrade notification occurred. |
upsellNotification | object | Details about this upgrade notification |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , name , subscriptionId , history | Gets any upgrade notifications for a Redis cache. |
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 |
---|---|---|
history | number (double) | how many minutes in past to look for upgrade notifications |
name | string | The name of the Redis cache. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Gets any upgrade notifications for a Redis cache.
SELECT
name,
timestamp,
upsellNotification
FROM azure_isv.redis.upgrade_notifications
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND history = '{{ history }}' -- required
;