Skip to main content

upgrade_notifications

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

Overview

Nameupgrade_notifications
TypeResource
Idazure_isv.redis.upgrade_notifications

Fields

The following fields are returned by SELECT queries:

All upgrade notifications in given time range

NameDatatypeDescription
namestringName of upgrade notification.
timestampstring (date-time)Timestamp when upgrade notification occurred.
upsellNotificationobjectDetails about this upgrade notification

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, name, subscriptionId, historyGets 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.

NameDatatypeDescription
historynumber (double)how many minutes in past to look for upgrade notifications
namestringThe name of the Redis cache.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;