Class MacsecProperties
Properties used for MACsec (if capable).
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class MacsecProperties
  Properties
EncryptionCipher
Declaration
[JsonProperty(PropertyName = "encryptionCipher")]
[JsonConverter(typeof(ResponseEnumConverter))]
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 MacsecKey PrimaryKey { get; set; }
  Property Value
| Type | Description | 
|---|---|
| MacsecKey | 
State
Declaration
[Required(ErrorMessage = "State is required.")]
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MacsecState? State { get; set; }
  Property Value
| Type | Description | 
|---|---|
| MacsecState? | Indicates whether or not MACsec is enabled.  | 
      
Remarks
Required