Class JavaRuntimeId
The essential properties to identify a Java Runtime.
Inherited Members
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class JavaRuntimeId
Properties
Distribution
Declaration
[Required(ErrorMessage = "Distribution is required.")]
[JsonProperty(PropertyName = "distribution")]
public string Distribution { get; set; }
Property Value
Type | Description |
---|---|
string | The distribution of a Java Runtime is the name of the lineage of product to which it belongs, for example Java(TM) SE Runtime Environment. |
Remarks
Required
JreKey
Declaration
[JsonProperty(PropertyName = "jreKey")]
public string JreKey { get; set; }
Property Value
Type | Description |
---|---|
string | The unique identifier for a Java Runtime. |
Vendor
Declaration
[Required(ErrorMessage = "Vendor is required.")]
[JsonProperty(PropertyName = "vendor")]
public string Vendor { get; set; }
Property Value
Type | Description |
---|---|
string | The vendor of the Java Runtime. |
Remarks
Required
Version
Declaration
[Required(ErrorMessage = "Version is required.")]
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type | Description |
---|---|
string | The version of the Java Runtime. |
Remarks
Required