Show / Hide Table of Contents

Class UpdateBulkProblemStatusDetails

List of problem IDs to be passed in to update problem status.

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

Properties

Comment

Declaration
[JsonProperty(PropertyName = "comment")]
public string Comment { get; set; }
Property Value
Type Description
string

User-defined comment to be passed in to update the problem

ProblemIds

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

List of problem IDs to be passed in to update the problem status

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public ProblemLifecycleDetail? Status { get; set; }
Property Value
Type Description
ProblemLifecycleDetail?

Action taken by user

Remarks

Required

In this article
Back to top