Show / Hide Table of Contents

Class MaintenanceNotificationFailure

Failed maintenance notification for a cluster

Inheritance
object
MaintenanceNotificationFailure
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 MaintenanceNotificationFailure

Properties

ClusterIds

Declaration
[Required(ErrorMessage = "ClusterIds is required.")]
[JsonProperty(PropertyName = "clusterIds")]
public List<string> ClusterIds { get; set; }
Property Value
Type Description
List<string>

IDs of clusters

Remarks

Required

ErrorCode

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

Error Code

Remarks

Required

ErrorDescription

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

Error Description

Remarks

Required

TenantId

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

Tenant ID of the cluster

Remarks

Required

In this article
Back to top