Show / Hide Table of Contents

Class PeerTargetDatabaseCollection

Summary of peer target databases of a primary target database.

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

Properties

CompartmentId

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

The OCID of the compartment that contains the primary target database.

Remarks

Required

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<PeerTargetDatabaseSummary> Items { get; set; }
Property Value
Type Description
List<PeerTargetDatabaseSummary>

The list of peer target databases associated to the primary target database.

TargetDatabaseId

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

The OCID of the Data Safe target database.

Remarks

Required

In this article
Back to top