You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/dyn/sqladmin_v1.connect.html
+21
Original file line number
Diff line number
Diff line change
@@ -167,6 +167,27 @@ <h3>Method Details</h3>
167
167
},
168
168
],
169
169
"kind": "A String", # This is always `sql#connectSettings`.
170
+
"nodeCount": 42, # The number of nodes in a read pool.
171
+
"nodes": [ # Output only. Entries containing information about each node of the read pool.
172
+
{ # Details of a single node of a read pool.
173
+
"dnsName": "A String", # Output only. The DNS name of the node.
174
+
"dnsNames": [ # Output only. The list of DNS names used by this node.
175
+
{ # DNS metadata.
176
+
"connectionType": "A String", # Output only. The connection type of the DNS name.
177
+
"dnsScope": "A String", # Output only. The scope that the DNS name applies to.
178
+
"name": "A String", # The DNS name.
179
+
},
180
+
],
181
+
"ipAddresses": [ # Output only. Mappings containing IP addresses that can be used to connect to the node.
182
+
{ # Database instance IP mapping
183
+
"ipAddress": "A String", # The IP address assigned.
184
+
"timeToRetire": "A String", # The due time for this IP to be retired in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`. This field is only available when the IP is scheduled to be retired.
185
+
"type": "A String", # The type of this IP address. A `PRIMARY` address is a public address that can accept incoming connections. A `PRIVATE` address is a private address that can accept incoming connections. An `OUTGOING` address is the source address of connections originating from the instance, if supported.
186
+
},
187
+
],
188
+
"name": "A String", # Output only. The name of the node. Doesn't include the project ID.
189
+
},
190
+
],
170
191
"pscEnabled": True or False, # Whether PSC connectivity is enabled for this instance.
171
192
"region": "A String", # The cloud region for the instance. For example, `us-central1`, `europe-west1`. The region cannot be changed after instance creation.
<pre>Lists all available database flags for Cloud SQL instances.
92
92
93
93
Args:
94
94
databaseVersion: string, Database type and version you want to retrieve flags for. By default, this method returns flags for all database types and versions.
95
+
flagScope: string, Optional. Specify the scope of flags to be returned by SqlFlagsListService. Return list of database flags if unspecified.
96
+
Allowed values
97
+
SQL_FLAG_SCOPE_UNSPECIFIED - Assume database flags if unspecified
98
+
SQL_FLAG_SCOPE_DATABASE - database flags
99
+
SQL_FLAG_SCOPE_CONNECTION_POOL - connection pool configuration flags
95
100
x__xgafv: string, V1 error format.
96
101
Allowed values
97
102
1 - v1 error format
@@ -112,11 +117,14 @@ <h3>Method Details</h3>
112
117
"appliesTo": [ # The database version this flag applies to. Can be MySQL instances: `MYSQL_8_0`, `MYSQL_8_0_18`, `MYSQL_8_0_26`, `MYSQL_5_7`, or `MYSQL_5_6`. PostgreSQL instances: `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11` or `POSTGRES_12`. SQL Server instances: `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`, `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`, or `SQLSERVER_2019_WEB`. See [the complete list](/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
113
118
"A String",
114
119
],
120
+
"flagScope": "A String", # Scope of flag.
115
121
"inBeta": True or False, # Whether or not the flag is considered in beta.
116
122
"kind": "A String", # This is always `sql#flag`.
117
123
"maxValue": "A String", # For `INTEGER` flags, the maximum allowed value.
118
124
"minValue": "A String", # For `INTEGER` flags, the minimum allowed value.
119
125
"name": "A String", # This is the name of the flag. Flag names always use underscores, not hyphens, for example: `max_allowed_packet`
126
+
"recommendedIntValue": "A String", # Recommended int value in integer format for UI display.
127
+
"recommendedStringValue": "A String", # Recommended string value in string format for UI display.
120
128
"requiresRestart": True or False, # Indicates whether changing this flag will trigger a database restart. Only applicable to Second Generation instances.
121
129
"type": "A String", # The type of the flag. Flags are typed to being `BOOLEAN`, `STRING`, `INTEGER` or `NONE`. `NONE` is used for flags that do not take a value, such as `skip_grant_tables`.
0 commit comments