Show / Hide Table of Contents

Class CreateMacsecProperties

Properties used to configure MACsec (if capable).

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

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.

IsUnprotectedTrafficAllowed

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

Indicates whether unencrypted traffic is allowed if MACsec Key Agreement protocol (MKA) fails.

PrimaryKey

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

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