Class UpdateMacsecProperties
Properties used to update MACsec settings.
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class UpdateMacsecProperties
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 UpdateMacsecKey PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
UpdateMacsecKey |
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