Show / Hide Table of Contents

Class DbConnectionBundle

Details of a database connection bundle.

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

Properties

AssociatedResourceDetails

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

Details about the resources associated with the connection bundle.

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 containing the database connection bundle.

Remarks

Required

DbConnectionBundleType

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

The type of the database connection bundle.

Remarks

Required

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[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.

Remarks

Required

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
[Required(ErrorMessage = "FreeformTags is required.")]
[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.

Remarks

Required

Id

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

The OCID of the database connection bundle.

Remarks

Required

IsProtected

Declaration
[Required(ErrorMessage = "IsProtected is required.")]
[JsonProperty(PropertyName = "isProtected")]
public bool? IsProtected { get; set; }
Property Value
Type Description
bool?

True for the default, service-created Database Connection Bundle.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbConnectionBundle.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DbConnectionBundle.LifecycleStateEnum?

The current lifecycle state of the database connection bundle.

Remarks

Required

SystemTags

Declaration
[Required(ErrorMessage = "SystemTags is required.")]
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, string>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, string>>

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

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the database connection bundle was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeLastRefreshed

Declaration
[JsonProperty(PropertyName = "timeLastRefreshed")]
public DateTime? TimeLastRefreshed { get; set; }
Property Value
Type Description
DateTime?

The time the database connection bundle was last refreshed. An RFC3339 formatted datetime string.

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the database connection bundle was updated. An RFC3339 formatted datetime string.

Remarks

Required

In this article
Back to top