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

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

Issue 2571553005: Api-roll 43: 2016-12-13 (Closed)
Patch Set: Created 4 years 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 e491b17f41097ffdcee3bd8b4a519bbcdaa57a3d..efba91b08cbea2271c8f44f6c27603d3c7936cd0 100644
--- a/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
+++ b/generated/googleapis_beta/lib/sqladmin/v1beta4.dart
@@ -3427,6 +3427,12 @@ class IpMapping {
* scheduled to be retired.
*/
core.DateTime timeToRetire;
+ /**
+ * The type of this IP address. A PRIMARY address is an address that can
+ * accept incoming connections. An OUTGOING address is the source address of
+ * connections originating from the instance, if supported.
+ */
+ core.String type;
IpMapping();
@@ -3437,6 +3443,9 @@ class IpMapping {
if (_json.containsKey("timeToRetire")) {
timeToRetire = core.DateTime.parse(_json["timeToRetire"]);
}
+ if (_json.containsKey("type")) {
+ type = _json["type"];
+ }
}
core.Map toJson() {
@@ -3447,6 +3456,9 @@ class IpMapping {
if (timeToRetire != null) {
_json["timeToRetire"] = (timeToRetire).toIso8601String();
}
+ if (type != null) {
+ _json["type"] = type;
+ }
return _json;
}
}
@@ -4528,10 +4540,7 @@ class Tier {
core.String RAM;
/** This is always sql#tier. */
core.String kind;
- /**
- * The applicable regions for this tier. Can be us-east1, europe-west1 or
- * asia-east1.
- */
+ /** The applicable regions for this tier. */
core.List<core.String> region;
/**
* An identifier for the service tier, for example D1, D2 etc. For related
« 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