Index: generated/googleapis_beta/lib/dns/v1beta1.dart |
diff --git a/generated/googleapis_beta/lib/dns/v1beta1.dart b/generated/googleapis_beta/lib/dns/v1beta1.dart |
index 40eebefc2347d47d074342bc9ca279a0e4fe871c..2270b114aaf26f9e837400d08654ee379eb44492 100644 |
--- a/generated/googleapis_beta/lib/dns/v1beta1.dart |
+++ b/generated/googleapis_beta/lib/dns/v1beta1.dart |
@@ -22,6 +22,12 @@ class DnsApi { |
/** View and manage your data across Google Cloud Platform services */ |
static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"; |
+ /** |
+ * MESSAGE UNDER CONSTRUCTION View your data across Google Cloud Platform |
+ * services |
+ */ |
+ static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/cloud-platform.read-only"; |
+ |
/** View your DNS records hosted by Google Cloud DNS */ |
static const NdevClouddnsReadonlyScope = "https://www.googleapis.com/auth/ndev.clouddns.readonly"; |
@@ -367,6 +373,8 @@ class ManagedZonesResourceApi { |
* |
* [project] - Identifies the project addressed by this request. |
* |
+ * [dnsName] - Restricts the list to return only zones with this domain name. |
+ * |
* [maxResults] - Optional. Maximum number of results to be returned. If |
* unspecified, the server will decide how many results to return. |
* |
@@ -381,7 +389,7 @@ class ManagedZonesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ManagedZonesListResponse> list(core.String project, {core.int maxResults, core.String pageToken}) { |
+ async.Future<ManagedZonesListResponse> list(core.String project, {core.String dnsName, core.int maxResults, core.String pageToken}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -392,6 +400,9 @@ class ManagedZonesResourceApi { |
if (project == null) { |
throw new core.ArgumentError("Parameter project is required."); |
} |
+ if (dnsName != null) { |
+ _queryParams["dnsName"] = [dnsName]; |
+ } |
if (maxResults != null) { |
_queryParams["maxResults"] = ["${maxResults}"]; |
} |