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

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

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 months 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
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 0b8351f270ff5529a47783ace918fb1ba46eab50..1132b5c577767b3166d82c16e8cabde459bf5d85 100644
--- a/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
+++ b/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
@@ -4159,6 +4159,16 @@ class Settings {
* applicable to First Generation instances.
*/
core.List<core.String> authorizedGaeApplications;
+ /**
+ * The availability type. This can be one of the following.
+ * ZONAL: A Cloud SQL instance that is zonally available. The instance is
+ * bound to a single GCE zone and may be inaccessible during an outage for
+ * that GCE zone.
+ * REGIONAL: A Cloud SQL instance that is regionally available. The instance
+ * is provisioned in multiple zones within a region and is able to provide
+ * higher availability than an instance with a zonal availability type.
+ */
+ core.String availabilityType;
/** The daily backup configuration for the instance. */
BackupConfiguration backupConfiguration;
/**
@@ -4229,6 +4239,12 @@ class Settings {
*/
core.bool storageAutoResize;
/**
+ * The maximum size to which storage capacity can be automatically increased.
+ * The default value is 0, which specifies that there is no limit. Applies
+ * only to Second Generation instances.
+ */
+ core.String storageAutoResizeLimit;
+ /**
* The tier of service for this instance, for example D1, D2. For more
* information, see pricing.
*/
@@ -4243,6 +4259,9 @@ class Settings {
if (_json.containsKey("authorizedGaeApplications")) {
authorizedGaeApplications = _json["authorizedGaeApplications"];
}
+ if (_json.containsKey("availabilityType")) {
+ availabilityType = _json["availabilityType"];
+ }
if (_json.containsKey("backupConfiguration")) {
backupConfiguration = new BackupConfiguration.fromJson(_json["backupConfiguration"]);
}
@@ -4285,6 +4304,9 @@ class Settings {
if (_json.containsKey("storageAutoResize")) {
storageAutoResize = _json["storageAutoResize"];
}
+ if (_json.containsKey("storageAutoResizeLimit")) {
+ storageAutoResizeLimit = _json["storageAutoResizeLimit"];
+ }
if (_json.containsKey("tier")) {
tier = _json["tier"];
}
@@ -4298,6 +4320,9 @@ class Settings {
if (authorizedGaeApplications != null) {
_json["authorizedGaeApplications"] = authorizedGaeApplications;
}
+ if (availabilityType != null) {
+ _json["availabilityType"] = availabilityType;
+ }
if (backupConfiguration != null) {
_json["backupConfiguration"] = (backupConfiguration).toJson();
}
@@ -4340,6 +4365,9 @@ class Settings {
if (storageAutoResize != null) {
_json["storageAutoResize"] = storageAutoResize;
}
+ if (storageAutoResizeLimit != null) {
+ _json["storageAutoResizeLimit"] = storageAutoResizeLimit;
+ }
if (tier != null) {
_json["tier"] = tier;
}
« no previous file with comments | « generated/googleapis_beta/lib/speech/v1beta1.dart ('k') | generated/googleapis_beta/lib/toolresults/v1beta3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698