Show / Hide Table of Contents

Class NewInstallationSite

The properties of a new Java installation site.

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

Properties

ArtifactContentType

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

Artifact content type for the Java version.

ForceInstall

Declaration
[JsonProperty(PropertyName = "forceInstall")]
public bool? ForceInstall { get; set; }
Property Value
Type Description
bool?

Forces the installation request even if a more recent release is already present in the host.

HeadlessMode

Declaration
[JsonProperty(PropertyName = "headlessMode")]
public bool? HeadlessMode { get; set; }
Property Value
Type Description
bool?

Flag to install headless or headful Java installation. Only valid for Oracle Linux in OCI.

InstallationPath

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

Custom path to install new Java installation site.

ManagedInstanceId

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

The OCID of the related managed instance.

Remarks

Required

ReleaseVersion

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

The release version of the Java Runtime.

Remarks

Required

In this article
Back to top