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
Name | Datatype | Description |
---|---|---|
name | string | Name of upgrade notification. |
timestamp | string | Timestamp when upgrade notification occurred. |
upsellNotification | object | Details about this upgrade notification |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | history, name, resourceGroupName, subscriptionId | Gets any upgrade notifications for a Redis cache. |
SELECT
examples
Gets any upgrade notifications for a Redis cache.
SELECT
name,
timestamp,
upsellNotification
FROM azure_isv.redis.upgrade_notifications
WHERE history = '{{ history }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';