Show / Hide Table of Contents

Class JavaDownloadCountAggregation

Count of Java downloads aggregated by the specified type.

Inheritance
object
JavaDownloadCountAggregation
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 JavaDownloadCountAggregation

Properties

Architecture

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

The target Operating System architecture for the artifact. Applicable only to PLATFORM aggregationType.

DownloadCount

Declaration
[Required(ErrorMessage = "DownloadCount is required.")]
[JsonProperty(PropertyName = "downloadCount")]
public long? DownloadCount { get; set; }
Property Value
Type Description
long?

Count of Java downloads.

Remarks

Required

FamilyDisplayName

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

The Java family display name.

FamilyVersion

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

The Java family version.

OsFamily

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

The target Operating System family for the artifact. Applicable only to PLATFORM aggregationType.

PackageType

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

The package type (typically the file extension) of the artifact. Applicable only to PLATFORM aggregationType.

PackageTypeDetail

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

Additional information about the package type. Applicable only to PLATFORM aggregationType.

ReleaseVersion

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

The Java release version. Applicable only to JAVA_RELEASE aggregationType.

In this article
Back to top