Show / Hide Table of Contents

Class PostInstallationActionSettings

List of available post actions you can execute after the successful Java installation.

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

Properties

AddLoggingHandler

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

Sets FileHandler and ConsoleHandler as handlers in logging.properties file.

DisabledTlsVersions

Declaration
[JsonProperty(PropertyName = "disabledTlsVersions")]
public List<TlsVersions> DisabledTlsVersions { get; set; }
Property Value
Type Description
List<TlsVersions>

The following post JRE installation actions are supported by the field:

  • Disable TLS 1.0 , TLS 1.1

GlobalLoggingLevel

Declaration
[JsonProperty(PropertyName = "globalLoggingLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GlobalLoggingLevel? GlobalLoggingLevel { get; set; }
Property Value
Type Description
GlobalLoggingLevel?

Sets the logging level in logging.properties file.

MinimumKeySizeSettings

Declaration
[JsonProperty(PropertyName = "minimumKeySizeSettings")]
public MinimumKeySizeSettings MinimumKeySizeSettings { get; set; }
Property Value
Type Description
MinimumKeySizeSettings

Proxies

Declaration
[JsonProperty(PropertyName = "proxies")]
public Proxies Proxies { get; set; }
Property Value
Type Description
Proxies

ShouldReplaceCertificatesOperatingSystem

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

Restores JDK root certificates with the certificates that are available in the operating system. The following action is supported by the field:

  • Replace JDK root certificates with a list provided by the operating system.
In this article
Back to top