Show / Hide Table of Contents

Class RequestSummarizedJavaDownloadCountsDetails

Attributes to summarize the Java download counts in a tenancy.

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

Properties

CompartmentId

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

The compartment OCID here should be the tenancy OCID.

Remarks

Required

FamilyVersion

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

Unique Java family version identifier.

GroupAs

Declaration
[Required(ErrorMessage = "GroupAs is required.")]
[JsonProperty(PropertyName = "groupAs")]
[JsonConverter(typeof(StringEnumConverter))]
public JavaDownloadCountAggregationType? GroupAs { get; set; }
Property Value
Type Description
JavaDownloadCountAggregationType?

The property that specifies the aggregation type for the download counts.

Remarks

Required

Limit

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

The maximum number of items to return.

Page

Declaration
[JsonProperty(PropertyName = "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 call.

ReleaseVersion

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

Unique Java release version identifier.

SortBy

Declaration
[JsonProperty(PropertyName = "sortBy")]
[JsonConverter(typeof(StringEnumConverter))]
public AggregationSortBy? SortBy { get; set; }
Property Value
Type Description
AggregationSortBy?

The property to be used for sorting the aggregated report.

SortOrder

Declaration
[JsonProperty(PropertyName = "sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

The sort order for the aggregated report.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The end time until when the download data has to be included (formatted according to RFC3339).

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

The start time from when download data has to be included (formatted according to RFC3339).

In this article
Back to top