Show / Hide Table of Contents

Class CloudSqlDetails

The information about added Cloud SQL capability

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

Properties

BlockVolumeSizeInGBs

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

The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.

IpAddress

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

IP address of the Cloud SQL node.

Remarks

Required

IsKerberosMappedToDatabaseUsers

Declaration
[JsonProperty(PropertyName = "isKerberosMappedToDatabaseUsers")]
public bool? IsKerberosMappedToDatabaseUsers { get; set; }
Property Value
Type Description
bool?

Boolean flag specifying whether or not Kerberos principals are mapped to database users.

KerberosDetails

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

Details about the Kerberos principals.

Shape

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

Shape of the node

Remarks

Required

In this article
Back to top