Show / Hide Table of Contents

Class CreateEkmsPrivateEndpointDetails

Information needed to create EKMS private endpoint resource

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

Properties

CaBundle

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

CABundle to validate TLS certificate of the external key manager system in PEM format

Remarks

Required

CompartmentId

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

Compartment identifier.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

Display name of the EKMS private endpoint resource being created.

Remarks

Required

ExternalKeyManagerIp

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

External private IP to connect to from this EKMS private endpoint

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Port

Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The port of the external key manager system

SubnetId

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

The OCID of subnet in which the EKMS private endpoint is to be created

Remarks

Required

In this article
Back to top