Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.redis; import org.joda.time.DateTime; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty;
Properties of upgrade notification.
/** * Properties of upgrade notification. */
public class UpgradeNotification {
Name of upgrade notification.
/** * Name of upgrade notification. */
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY) private String name;
Timestamp when upgrade notification occured.
/** * Timestamp when upgrade notification occured. */
@JsonProperty(value = "timestamp", access = JsonProperty.Access.WRITE_ONLY) private DateTime timestamp;
Details about this upgrade notification.
/** * Details about this upgrade notification. */
@JsonProperty(value = "upsellNotification", access = JsonProperty.Access.WRITE_ONLY) private Map<String, String> upsellNotification;
Get the name value.
Returns:the name value
/** * Get the name value. * * @return the name value */
public String name() { return this.name; }
Get the timestamp value.
Returns:the timestamp value
/** * Get the timestamp value. * * @return the timestamp value */
public DateTime timestamp() { return this.timestamp; }
Get the upsellNotification value.
Returns:the upsellNotification value
/** * Get the upsellNotification value. * * @return the upsellNotification value */
public Map<String, String> upsellNotification() { return this.upsellNotification; } }