Show / Hide Table of Contents

Class MacsecKey

An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

Inheritance
object
MacsecKey
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 MacsecKey

Properties

ConnectivityAssociationKeySecretId

Declaration
[Required(ErrorMessage = "ConnectivityAssociationKeySecretId is required.")]
[JsonProperty(PropertyName = "connectivityAssociationKeySecretId")]
public string ConnectivityAssociationKeySecretId { get; set; }
Property Value
Type Description
string

Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

Remarks

Required

ConnectivityAssociationKeySecretVersion

Declaration
[JsonProperty(PropertyName = "connectivityAssociationKeySecretVersion")]
public long? ConnectivityAssociationKeySecretVersion { get; set; }
Property Value
Type Description
long?

The secret version of the connectivityAssociationKey secret in Vault.

ConnectivityAssociationNameSecretId

Declaration
[Required(ErrorMessage = "ConnectivityAssociationNameSecretId is required.")]
[JsonProperty(PropertyName = "connectivityAssociationNameSecretId")]
public string ConnectivityAssociationNameSecretId { get; set; }
Property Value
Type Description
string

Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

Remarks

Required

ConnectivityAssociationNameSecretVersion

Declaration
[JsonProperty(PropertyName = "connectivityAssociationNameSecretVersion")]
public long? ConnectivityAssociationNameSecretVersion { get; set; }
Property Value
Type Description
long?

The secret version of the connectivity association name secret in Vault.

In this article
Back to top