Show / Hide Table of Contents

Class ListIncidentsResponse

Inheritance
object
OciResponse
ListIncidentsResponse
Implements
IOciResponse
Inherited Members
OciResponse.httpResponseMessage
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CimsService.Responses
Assembly: OCI.DotNetSDK.Cims.dll
Syntax
public class ListIncidentsResponse : OciResponse, IOciResponse

Properties

AsOfTime

Declaration
[HttpConverter(TargetEnum.Header, "as-of-time")]
public string AsOfTime { get; set; }
Property Value
Type Description
string

Returns the age of the incidents in the response in epoch milliseconds. This is used because the incidents might be cached.

Items

Declaration
[HttpConverter(TargetEnum.Body)]
public List<IncidentSummary> Items { get; set; }
Property Value
Type Description
List<IncidentSummary>

A list of IncidentSummary instances.

OpcNextPage

Declaration
[HttpConverter(TargetEnum.Header, "opc-next-page")]
public string OpcNextPage { get; set; }
Property Value
Type Description
string

For list pagination. When this header appears in the response, additional pages of results remain. For important details about how pagination works, see List Pagination.

OpcPrevPage

Declaration
[HttpConverter(TargetEnum.Header, "opc-prev-page")]
public string OpcPrevPage { get; set; }
Property Value
Type Description
string

For list pagination. When this header appears in the response, previous pages of results can be queried. For important details about how pagination works, see List Pagination.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Implements

IOciResponse
In this article
Back to top