Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1391)

Unified Diff: generated/googleapis_beta/lib/sqladmin/v1beta4.dart

Issue 2485703002: Api-roll 42: 2016-11-08 (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis_beta/lib/sqladmin/v1beta3.dart ('k') | generated/googleapis_beta/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis_beta/lib/sqladmin/v1beta4.dart
diff --git a/generated/googleapis_beta/lib/sqladmin/v1beta4.dart b/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
index 2cfabc1d05ea34afb5b780f784a38c67c8e07139..e491b17f41097ffdcee3bd8b4a519bbcdaa57a3d 100644
--- a/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
+++ b/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
@@ -148,7 +148,8 @@ class BackupRunsResourceApi {
}
/**
- * Creates a new backup run on demand.
+ * Creates a new backup run on demand. This method is applicable only to
+ * Second Generation instances.
*
* [request] - The metadata request object.
*
@@ -2551,6 +2552,8 @@ class DatabaseInstance {
* EXTERNAL: A MySQL server that is not managed by Google.
*/
core.String backendType;
+ /** Connection name of the Cloud SQL instance used in connection strings. */
+ core.String connectionName;
/**
* The current disk usage of the instance in bytes. This property has been
* deprecated. Users should use the
@@ -2653,6 +2656,9 @@ class DatabaseInstance {
if (_json.containsKey("backendType")) {
backendType = _json["backendType"];
}
+ if (_json.containsKey("connectionName")) {
+ connectionName = _json["connectionName"];
+ }
if (_json.containsKey("currentDiskSize")) {
currentDiskSize = _json["currentDiskSize"];
}
@@ -2726,6 +2732,9 @@ class DatabaseInstance {
if (backendType != null) {
_json["backendType"] = backendType;
}
+ if (connectionName != null) {
+ _json["connectionName"] = connectionName;
+ }
if (currentDiskSize != null) {
_json["currentDiskSize"] = currentDiskSize;
}
« no previous file with comments | « generated/googleapis_beta/lib/sqladmin/v1beta3.dart ('k') | generated/googleapis_beta/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698