Index: generated/googleapis_beta/lib/pubsub/v1beta2.dart |
diff --git a/generated/googleapis_beta/lib/pubsub/v1beta2.dart b/generated/googleapis_beta/lib/pubsub/v1beta2.dart |
index 36d28d092d32163d02976e0e529862bc168b7d9f..d09bdbc5941ebb5593063b7e6c169fd80a70cd94 100644 |
--- a/generated/googleapis_beta/lib/pubsub/v1beta2.dart |
+++ b/generated/googleapis_beta/lib/pubsub/v1beta2.dart |
@@ -295,13 +295,13 @@ class ProjectsSubscriptionsResourceApi { |
* [project] - The name of the cloud project that subscriptions belong to. |
* Value must have pattern "^projects/[^/]+$". |
* |
- * [pageSize] - Maximum number of subscriptions to return. |
- * |
* [pageToken] - The value returned by the last `ListSubscriptionsResponse`; |
* indicates that |
* this is a continuation of a prior `ListSubscriptions` call, and that the |
* system should return the next page of data. |
* |
+ * [pageSize] - Maximum number of subscriptions to return. |
+ * |
* Completes with a [ListSubscriptionsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -310,7 +310,7 @@ class ProjectsSubscriptionsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListSubscriptionsResponse> list(core.String project, {core.int pageSize, core.String pageToken}) { |
+ async.Future<ListSubscriptionsResponse> list(core.String project, {core.String pageToken, core.int pageSize}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -321,12 +321,12 @@ class ProjectsSubscriptionsResourceApi { |
if (project == null) { |
throw new core.ArgumentError("Parameter project is required."); |
} |
- if (pageSize != null) { |
- _queryParams["pageSize"] = ["${pageSize}"]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
+ if (pageSize != null) { |
+ _queryParams["pageSize"] = ["${pageSize}"]; |
+ } |
_url = 'v1beta2/' + commons.Escaper.ecapeVariableReserved('$project') + '/subscriptions'; |
@@ -784,13 +784,13 @@ class ProjectsTopicsResourceApi { |
* [project] - The name of the cloud project that topics belong to. |
* Value must have pattern "^projects/[^/]+$". |
* |
- * [pageSize] - Maximum number of topics to return. |
- * |
* [pageToken] - The value returned by the last `ListTopicsResponse`; |
* indicates that this is |
* a continuation of a prior `ListTopics` call, and that the system should |
* return the next page of data. |
* |
+ * [pageSize] - Maximum number of topics to return. |
+ * |
* Completes with a [ListTopicsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -799,7 +799,7 @@ class ProjectsTopicsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListTopicsResponse> list(core.String project, {core.int pageSize, core.String pageToken}) { |
+ async.Future<ListTopicsResponse> list(core.String project, {core.String pageToken, core.int pageSize}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -810,12 +810,12 @@ class ProjectsTopicsResourceApi { |
if (project == null) { |
throw new core.ArgumentError("Parameter project is required."); |
} |
- if (pageSize != null) { |
- _queryParams["pageSize"] = ["${pageSize}"]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
+ if (pageSize != null) { |
+ _queryParams["pageSize"] = ["${pageSize}"]; |
+ } |
_url = 'v1beta2/' + commons.Escaper.ecapeVariableReserved('$project') + '/topics'; |
@@ -992,13 +992,13 @@ class ProjectsTopicsSubscriptionsResourceApi { |
* [topic] - The name of the topic that subscriptions are attached to. |
* Value must have pattern "^projects/[^/]+/topics/[^/]+$". |
* |
- * [pageSize] - Maximum number of subscription names to return. |
- * |
* [pageToken] - The value returned by the last |
* `ListTopicSubscriptionsResponse`; indicates |
* that this is a continuation of a prior `ListTopicSubscriptions` call, and |
* that the system should return the next page of data. |
* |
+ * [pageSize] - Maximum number of subscription names to return. |
+ * |
* Completes with a [ListTopicSubscriptionsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -1007,7 +1007,7 @@ class ProjectsTopicsSubscriptionsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListTopicSubscriptionsResponse> list(core.String topic, {core.int pageSize, core.String pageToken}) { |
+ async.Future<ListTopicSubscriptionsResponse> list(core.String topic, {core.String pageToken, core.int pageSize}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -1018,12 +1018,12 @@ class ProjectsTopicsSubscriptionsResourceApi { |
if (topic == null) { |
throw new core.ArgumentError("Parameter topic is required."); |
} |
- if (pageSize != null) { |
- _queryParams["pageSize"] = ["${pageSize}"]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
+ if (pageSize != null) { |
+ _queryParams["pageSize"] = ["${pageSize}"]; |
+ } |
_url = 'v1beta2/' + commons.Escaper.ecapeVariableReserved('$topic') + '/subscriptions'; |