Show / Hide Table of Contents

Class NotificationPreference

Notification information to get notified when the fleet status changes.

Inheritance
object
NotificationPreference
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class NotificationPreference

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

Compartment ID the topic belongs to.

Remarks

Required

Preferences

Declaration
[JsonProperty(PropertyName = "preferences")]
public Preferences Preferences { get; set; }
Property Value
Type Description
Preferences

TopicId

Declaration
[Required(ErrorMessage = "TopicId is required.")]
[JsonProperty(PropertyName = "topicId")]
public string TopicId { get; set; }
Property Value
Type Description
string

Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.

Remarks

Required

In this article
Back to top