Show / Hide Table of Contents

Class ListJavaDownloadRecordsRequest

Inheritance
object
ListJavaDownloadRecordsRequest
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.JmsjavadownloadsService.Requests
Assembly: OCI.DotNetSDK.Jmsjavadownloads.dll
Syntax
public class ListJavaDownloadRecordsRequest : IOciRequest
Examples

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

Properties

Architecture

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

Target Operating System architecture of the artifact.

CompartmentId

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

The OCID of the tenancy.

Remarks

Required

FamilyVersion

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

Unique Java family version identifier.

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.

OsFamily

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

Target Operating System family of the artifact.

PackageTypeDetail

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

Packaging type detail of the artifact.

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. The token is usually retrieved from a previous list call.

ReleaseVersion

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

Unique Java release version identifier.

SortBy

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

If no value is specified timeDownloaded is default.

SortOrder

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

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

TimeEnd

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

The end of the time period for which reports are searched (formatted according to RFC3339).

TimeStart

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

The start of the time period for which reports are searched (formatted according to RFC3339).

Implements

IOciRequest
In this article
Back to top