Show / Hide Table of Contents

Class CryptoTlsPosture

TLS posture details.

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

Properties

AreWeakCipherSuitesAllowed

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

Indicates if weak TLS cipher suites are allowed.

CipherSuitesConfigured

Declaration
[JsonProperty(PropertyName = "cipherSuitesConfigured")]
public List<string> CipherSuitesConfigured { get; set; }
Property Value
Type Description
List<string>

TLS cipher suites configured on target.

FipsModeConfigured

Declaration
[JsonProperty(PropertyName = "fipsModeConfigured")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CryptoPosture.FipsModeConfiguredEnum? FipsModeConfigured { get; set; }
Property Value
Type Description
CryptoPosture.FipsModeConfiguredEnum?

FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.

IsMtlsConfigured

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

Whether TLS client authentication is configured.

QuantumReadiness

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

Quantum-readiness classification for TLS posture.

RevocationMode

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

Certificate revocation checking mode.

Status

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

TLS enablement status.

Versions

Declaration
[JsonProperty(PropertyName = "versions")]
public List<string> Versions { get; set; }
Property Value
Type Description
List<string>

TLS versions configured on target.

WalletLocation

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

TLS wallet location observed on target.

In this article
Back to top