Class CreateMacsecProperties
Properties used to configure MACsec (if capable).
Inherited Members
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