Skip to content

Commit 8596dac

Browse files
feat(sqladmin): update the API
#### sqladmin:v1beta4 The following keys were added: - schemas.Settings.properties.dataApiAccess.description - schemas.Settings.properties.dataApiAccess.enum - schemas.Settings.properties.dataApiAccess.enumDescriptions - schemas.Settings.properties.dataApiAccess.type
1 parent af81a1f commit 8596dac

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

discovery/sqladmin-v1beta4.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2685,7 +2685,7 @@
26852685
}
26862686
}
26872687
},
2688-
"revision": "20251006",
2688+
"revision": "20251019",
26892689
"rootUrl": "https://sqladmin.googleapis.com/",
26902690
"schemas": {
26912691
"AclEntry": {
@@ -7422,6 +7422,20 @@
74227422
"description": "Configuration specific to read replica instances. Indicates whether database flags for crash-safe replication are enabled. This property was only applicable to First Generation instances.",
74237423
"type": "boolean"
74247424
},
7425+
"dataApiAccess": {
7426+
"description": "This parameter controls whether to allow using Data API to connect to the instance. Not allowed by default.",
7427+
"enum": [
7428+
"DATA_API_ACCESS_UNSPECIFIED",
7429+
"DISALLOW_DATA_API",
7430+
"ALLOW_DATA_API"
7431+
],
7432+
"enumDescriptions": [
7433+
"Unspecified, effectively the same as `DISALLOW_DATA_API`.",
7434+
"Disallow using Data API to connect to the instance.",
7435+
"Allow using Data API to connect to the instance. For private IP instances, this will allow authorized users to access the instance from the public internet."
7436+
],
7437+
"type": "string"
7438+
},
74257439
"dataCacheConfig": {
74267440
"$ref": "DataCacheConfig",
74277441
"description": "Configuration for data cache."

src/apis/sqladmin/v1beta4.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2535,6 +2535,10 @@ export namespace sqladmin_v1beta4 {
25352535
* Configuration specific to read replica instances. Indicates whether database flags for crash-safe replication are enabled. This property was only applicable to First Generation instances.
25362536
*/
25372537
crashSafeReplicationEnabled?: boolean | null;
2538+
/**
2539+
* This parameter controls whether to allow using Data API to connect to the instance. Not allowed by default.
2540+
*/
2541+
dataApiAccess?: string | null;
25382542
/**
25392543
* The database flags passed to the instance at startup.
25402544
*/

0 commit comments

Comments
 (0)