Show / Hide Table of Contents

Class PatchAlertsDetails

The alert details to update the status of one or more alerts specified by the alert IDs.

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

Properties

CompartmentId

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

The OCID of the compartment that contains the alerts.

Remarks

Required

Items

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

Array of alert detail to update the status of the alert specified by the alert ID.

Remarks

Required

In this article
Back to top