Show / Hide Table of Contents

Class MaintenanceNotificationResponse

Response for request to send customer maintenance notification.

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

Properties

FailedNotifications

Declaration
[JsonProperty(PropertyName = "failedNotifications")]
public List<MaintenanceNotificationFailure> FailedNotifications { get; set; }
Property Value
Type Description
List<MaintenanceNotificationFailure>

List of failed maintenance notifications

Message

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

Response message for the maintenance notification request

Remarks

Required

In this article
Back to top