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
#### 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
#### sqladmin:v1
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
The following keys were changed:
- resources.instances.methods.clone.parameters.instance.description
- resources.instances.methods.clone.parameters.project.description
- schemas.CloneContext.properties.destinationInstanceName.description
- schemas.InstancesCloneRequest.properties.cloneContext.description
Copy file name to clipboardExpand all lines: discovery/sqladmin-v1.json
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -962,13 +962,13 @@
962
962
],
963
963
"parameters": {
964
964
"instance": {
965
-
"description": "The ID of the Cloud SQL instance to be cloned (source). This does not include the project ID.",
965
+
"description": "Required. The ID of the Cloud SQL instance to be cloned (source). This does not include the project ID.",
966
966
"location": "path",
967
967
"required": true,
968
968
"type": "string"
969
969
},
970
970
"project": {
971
-
"description": "Project ID of the source as well as the clone Cloud SQL instance.",
971
+
"description": "Required. Project ID of the source as well as the clone Cloud SQL instance.",
972
972
"location": "path",
973
973
"required": true,
974
974
"type": "string"
@@ -2685,7 +2685,7 @@
2685
2685
}
2686
2686
}
2687
2687
},
2688
-
"revision": "20251006",
2688
+
"revision": "20251019",
2689
2689
"rootUrl": "https://sqladmin.googleapis.com/",
2690
2690
"schemas": {
2691
2691
"AclEntry": {
@@ -3626,7 +3626,7 @@
3626
3626
"type": "array"
3627
3627
},
3628
3628
"destinationInstanceName": {
3629
-
"description": "Name of the Cloud SQL instance to be created as a clone.",
3629
+
"description": "Required. Name of the Cloud SQL instance to be created as a clone.",
3630
3630
"type": "string"
3631
3631
},
3632
3632
"kind": {
@@ -5681,7 +5681,7 @@
5681
5681
"properties": {
5682
5682
"cloneContext": {
5683
5683
"$ref": "CloneContext",
5684
-
"description": "Contains details about the clone operation."
5684
+
"description": "Required. Contains details about the clone operation."
5685
5685
}
5686
5686
},
5687
5687
"type": "object"
@@ -7421,6 +7421,20 @@
7421
7421
"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.",
7422
7422
"type": "boolean"
7423
7423
},
7424
+
"dataApiAccess": {
7425
+
"description": "This parameter controls whether to allow using Data API to connect to the instance. Not allowed by default.",
7426
+
"enum": [
7427
+
"DATA_API_ACCESS_UNSPECIFIED",
7428
+
"DISALLOW_DATA_API",
7429
+
"ALLOW_DATA_API"
7430
+
],
7431
+
"enumDescriptions": [
7432
+
"Unspecified, effectively the same as `DISALLOW_DATA_API`.",
7433
+
"Disallow using Data API to connect to the instance.",
7434
+
"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."
Copy file name to clipboardExpand all lines: discovery/sqladmin-v1beta4.json
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2685,7 +2685,7 @@
2685
2685
}
2686
2686
}
2687
2687
},
2688
-
"revision": "20251006",
2688
+
"revision": "20251019",
2689
2689
"rootUrl": "https://sqladmin.googleapis.com/",
2690
2690
"schemas": {
2691
2691
"AclEntry": {
@@ -7422,6 +7422,20 @@
7422
7422
"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.",
7423
7423
"type": "boolean"
7424
7424
},
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."
* 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.
2533
2533
*/
2534
2534
crashSafeReplicationEnabled?: boolean | null;
2535
+
/**
2536
+
* This parameter controls whether to allow using Data API to connect to the instance. Not allowed by default.
2537
+
*/
2538
+
dataApiAccess?: string | null;
2535
2539
/**
2536
2540
* The database flags passed to the instance at startup.
* 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.
2536
2536
*/
2537
2537
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;
2538
2542
/**
2539
2543
* The database flags passed to the instance at startup.
0 commit comments