Index: generated/googleapis/lib/discovery/v1.dart |
diff --git a/generated/googleapis/lib/discovery/v1.dart b/generated/googleapis/lib/discovery/v1.dart |
index c73111f182bcebe2d789a6eaac43e3928e3934ae..44a1ed9ae965ed354012a4ed4a2bab4d7f4ae3db 100644 |
--- a/generated/googleapis/lib/discovery/v1.dart |
+++ b/generated/googleapis/lib/discovery/v1.dart |
@@ -713,6 +713,10 @@ class RestDescription { |
core.String documentationLink; |
/** The ETag for this response. */ |
core.String etag; |
+ /** |
+ * Enable exponential backoff for suitable methods in the generated clients. |
+ */ |
+ core.bool exponentialBackoffDefault; |
/** A list of supported features for this API. */ |
core.List<core.String> features; |
/** Links to 16x16 and 32x32 icons representing the API. */ |
@@ -786,6 +790,9 @@ class RestDescription { |
if (_json.containsKey("etag")) { |
etag = _json["etag"]; |
} |
+ if (_json.containsKey("exponentialBackoffDefault")) { |
+ exponentialBackoffDefault = _json["exponentialBackoffDefault"]; |
+ } |
if (_json.containsKey("features")) { |
features = _json["features"]; |
} |
@@ -874,6 +881,9 @@ class RestDescription { |
if (etag != null) { |
_json["etag"] = etag; |
} |
+ if (exponentialBackoffDefault != null) { |
+ _json["exponentialBackoffDefault"] = exponentialBackoffDefault; |
+ } |
if (features != null) { |
_json["features"] = features; |
} |