Show / Hide Table of Contents

Class GetJobLogsRequest

Inheritance
object
GetJobLogsRequest
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.ResourcemanagerService.Requests
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class GetJobLogsRequest : IOciRequest
Examples

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

Properties

JobId

Declaration
[Required(ErrorMessage = "JobId is required.")]
[HttpConverter(TargetEnum.Path, "jobId")]
public string JobId { get; set; }
Property Value
Type Description
string

The OCID of the job.

Remarks

Required

LevelGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "levelGreaterThanOrEqualTo")]
public LogEntry.LevelEnum? LevelGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
LogEntry.LevelEnum?

A filter that returns only log entries that match a given severity level or greater.

Limit

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

The number of items returned in a paginated List call. For information about pagination, 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.

Page

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

The value of the opc-next-page response header from the preceding List call. For information about pagination, see List Pagination.

SortOrder

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

The sort order to use when sorting returned resources. Ascending (ASC) or descending (DESC).

TimestampGreaterThanOrEqualTo

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

Time stamp specifying the lower time limit for which logs are returned in a query. Format is defined by RFC3339. Example: 2020-01-01T12:00:00.000Z

TimestampLessThanOrEqualTo

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

Time stamp specifying the upper time limit for which logs are returned in a query. Format is defined by RFC3339. Example: 2020-02-01T12:00:00.000Z

Type

Declaration
[HttpConverter(TargetEnum.Query, "type", CollectionFormatType.Multi)]
public List<LogEntry.TypeEnum> Type { get; set; }
Property Value
Type Description
List<LogEntry.TypeEnum>

A filter that returns only logs of a specified type.

Implements

IOciRequest
In this article
Back to top