Show / Hide Table of Contents

Class CreateDbConnectionBundleDetails

The details for creating a database connection bundle.

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

Properties

AssociatedResourceDetails

Declaration
[Required(ErrorMessage = "AssociatedResourceDetails is required.")]
[JsonProperty(PropertyName = "associatedResourceDetails")]
public List<AssociatedResourceDetails> AssociatedResourceDetails { get; set; }
Property Value
Type Description
List<AssociatedResourceDetails>

Details about the resources to associate with the connection bundle.

Remarks

Required

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 where you want to create the database connection bundle.

Remarks

Required

DbConnectionBundleType

Declaration
[Required(ErrorMessage = "DbConnectionBundleType is required.")]
[JsonProperty(PropertyName = "dbConnectionBundleType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateDbConnectionBundleDetails.DbConnectionBundleTypeEnum? DbConnectionBundleType { get; set; }
Property Value
Type Description
CreateDbConnectionBundleDetails.DbConnectionBundleTypeEnum?

The type of the database connection bundle.

Remarks

Required

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName

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

Display name for the connection bundle.

Remarks

Required

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.

TenantId

Declaration
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
Property Value
Type Description
string

The tenancy ID for the connection bundle.

In this article
Back to top