public sealed class CloudSqlSettings : IMessage<CloudSqlSettings>, IEquatable<CloudSqlSettings>, IDeepCloneable<CloudSqlSettings>, IBufferMessage, IMessage
Settings for creating a Cloud SQL database instance.
Implements
IMessage<CloudSqlSettings>, IEquatable<CloudSqlSettings>, IDeepCloneable<CloudSqlSettings>, IBufferMessage, IMessageNamespace
Google.Cloud.CloudDms.V1Assembly
Google.Cloud.CloudDms.V1.dll
Constructors
CloudSqlSettings()
public CloudSqlSettings()
CloudSqlSettings(CloudSqlSettings)
public CloudSqlSettings(CloudSqlSettings other)
Parameter | |
---|---|
Name | Description |
other | CloudSqlSettings |
Properties
ActivationPolicy
public CloudSqlSettings.Types.SqlActivationPolicy ActivationPolicy { get; set; }
The activation policy specifies when the instance is activated; it is applicable only when the instance state is 'RUNNABLE'. Valid values:
'ALWAYS': The instance is on, and remains so even in the absence of connection requests.
NEVER
: The instance is off; it is not activated, even if a
connection request arrives.
Property Value | |
---|---|
Type | Description |
CloudSqlSettings.Types.SqlActivationPolicy |
AutoStorageIncrease
public bool? AutoStorageIncrease { get; set; }
[default: ON] If you enable this setting, Cloud SQL checks your available storage every 30 seconds. If the available storage falls below a threshold size, Cloud SQL automatically adds additional storage capacity. If the available storage repeatedly falls below the threshold size, Cloud SQL continues to add storage until it reaches the maximum of 30 TB.
Property Value | |
---|---|
Type | Description |
Nullable<Boolean> |
Collation
public string Collation { get; set; }
The Cloud SQL default instance level collation.
Property Value | |
---|---|
Type | Description |
String |
DatabaseFlags
public MapField<string, string> DatabaseFlags { get; }
The database flags passed to the Cloud SQL instance at startup. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
Property Value | |
---|---|
Type | Description |
MapField<String, String> |
DatabaseVersion
public CloudSqlSettings.Types.SqlDatabaseVersion DatabaseVersion { get; set; }
The database engine type and version.
Property Value | |
---|---|
Type | Description |
CloudSqlSettings.Types.SqlDatabaseVersion |
DataDiskSizeGb
public long? DataDiskSizeGb { get; set; }
The storage capacity available to the database, in GB. The minimum (and default) size is 10GB.
Property Value | |
---|---|
Type | Description |
Nullable<Int64> |
DataDiskType
public CloudSqlSettings.Types.SqlDataDiskType DataDiskType { get; set; }
The type of storage: PD_SSD
(default) or PD_HDD
.
Property Value | |
---|---|
Type | Description |
CloudSqlSettings.Types.SqlDataDiskType |
IpConfig
public SqlIpConfig IpConfig { get; set; }
The settings for IP Management. This allows to enable or disable the instance IP and manage which external networks can connect to the instance. The IPv4 address cannot be disabled.
Property Value | |
---|---|
Type | Description |
SqlIpConfig |
RootPassword
public string RootPassword { get; set; }
Input only. Initial root password.
Property Value | |
---|---|
Type | Description |
String |
RootPasswordSet
public bool RootPasswordSet { get; set; }
Output only. Indicates If this connection profile root password is stored.
Property Value | |
---|---|
Type | Description |
Boolean |
SourceId
public string SourceId { get; set; }
The Database Migration Service source connection profile ID,
in the format:
projects/my_project_name/locations/us-central1/connectionProfiles/connection_profile_ID
Property Value | |
---|---|
Type | Description |
String |
StorageAutoResizeLimit
public long? StorageAutoResizeLimit { get; set; }
The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit.
Property Value | |
---|---|
Type | Description |
Nullable<Int64> |
Tier
public string Tier { get; set; }
The tier (or machine type) for this instance, for example:
db-n1-standard-1
(MySQL instances) or
db-custom-1-3840
(PostgreSQL instances).
For more information, see
Cloud SQL Instance
Settings.
Property Value | |
---|---|
Type | Description |
String |
UserLabels
public MapField<string, string> UserLabels { get; }
The resource labels for a Cloud SQL instance to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs.
Example: { "name": "wrench", "mass": "18kg", "count": "3" }
.
Property Value | |
---|---|
Type | Description |
MapField<String, String> |
Zone
public string Zone { get; set; }
The Google Cloud Platform zone where your Cloud SQL datdabse instance is located.
Property Value | |
---|---|
Type | Description |
String |