Show / Hide Table of Contents

Class MacsecProperties

Properties used for MACsec (if capable).

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

Properties

EncryptionCipher

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

Type of encryption cipher suite to use for the MACsec connection.

PrimaryKey

Declaration
[JsonProperty(PropertyName = "primaryKey")]
public MacsecKey PrimaryKey { get; set; }
Property Value
Type Description
MacsecKey

State

Declaration
[Required(ErrorMessage = "State is required.")]
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(StringEnumConverter))]
public MacsecState? State { get; set; }
Property Value
Type Description
MacsecState?

Indicates whether or not MACsec is enabled.

Remarks

Required

In this article
Back to top