Show / Hide Table of Contents

Class WorkRequestEventDataAdditionalDetails

Provides additional information for the work request associated with an event.

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

Properties

InitiatorId

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

The OCID of the resource that triggered the event, such as scheduled job id.

Remarks

Required

WorkRequestIds

Declaration
[JsonProperty(PropertyName = "workRequestIds")]
public List<string> WorkRequestIds { get; set; }
Property Value
Type Description
List<string>

List of all work request OCIDs associated with the event.

In this article
Back to top