Show / Hide Table of Contents

Class EventContent

Information about the data collected as a ZIP file when the event occurred.

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

Properties

ContentAvailability

Declaration
[JsonProperty(PropertyName = "contentAvailability")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ContentAvailability? ContentAvailability { get; set; }
Property Value
Type Description
ContentAvailability?

Status of the event content

InstancePath

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

Path to the event content on the instance

Size

Declaration
[JsonProperty(PropertyName = "size")]
public int? Size { get; set; }
Property Value
Type Description
int?

size in bytes of the event content (size of the zip file uploaded)

In this article
Back to top