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

NameDatatypeDescription
namestringName of upgrade notification.
timestampstringTimestamp when upgrade notification occurred.
upsellNotificationobjectDetails about this upgrade notification

Methods

NameAccessible byRequired ParamsDescription
listSELECThistory, name, resourceGroupName, subscriptionIdGets 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 }}';