Show / Hide Table of Contents

Class CryptoSqlnetParameter

One SQLNET parameter and its evaluated quantum readiness.

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

Properties

Name

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

SQLNET parameter name.

Remarks

Required

QuantumReadiness

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

Quantum-readiness classification of this parameter.

Remarks

Required

Value

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

Required

In this article
Back to top