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

Unified Diff: generated/googleapis_beta/lib/pubsub/v1beta2.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/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';
« no previous file with comments | « generated/googleapis_beta/lib/ml/v1beta1.dart ('k') | generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698