Show / Hide Table of Contents

Class ListErrataRequest

Inheritance
object
ListErrataRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementService.Requests
Assembly: OCI.DotNetSDK.Osmanagement.dll
Syntax
public class ListErrataRequest : IOciRequest
Examples

Click here to see an example of how to use ListErrata request.

Properties

AdvisoryName

Declaration
[HttpConverter(TargetEnum.Query, "advisoryName")]
public string AdvisoryName { get; set; }
Property Value
Type Description
string

The assigned erratum name. It's unique and not changeable.
Example: ELSA-2020-5804

CompartmentId

Declaration
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The ID of the compartment in which to list resources. This parameter is optional and in some cases may have no effect.

ErratumId

Declaration
[HttpConverter(TargetEnum.Query, "erratumId")]
public string ErratumId { get; set; }
Property Value
Type Description
string

The OCID of the erratum.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

OpcRequestId

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

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListErrataRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListErrataRequest.SortByEnum?

The field to sort errata by. Only one sort order may be provided. Default order for ISSUEDATE is descending. Default order for ADVISORYNAME is ascending. If no value is specified ISSUEDATE is default.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListErrataRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListErrataRequest.SortOrderEnum?

The sort order to use, either 'asc' or 'desc'.

TimeIssueDateEnd

Declaration
[HttpConverter(TargetEnum.Query, "timeIssueDateEnd")]
public DateTime? TimeIssueDateEnd { get; set; }
Property Value
Type Description
DateTime?

The issue date before which to list all errata, in ISO 8601 format
Example: 2017-07-14T02:40:00.000Z

TimeIssueDateStart

Declaration
[HttpConverter(TargetEnum.Query, "timeIssueDateStart")]
public DateTime? TimeIssueDateStart { get; set; }
Property Value
Type Description
DateTime?

The issue date after which to list all errata, in ISO 8601 format
Example: 2017-07-14T02:40:00.000Z

Implements

IOciRequest
In this article
Back to top