Index: generated/googleapis/lib/clouddebugger/v2.dart |
diff --git a/generated/googleapis/lib/clouddebugger/v2.dart b/generated/googleapis/lib/clouddebugger/v2.dart |
index b2082c607f1280630b647acde1daa00c672a1b3c..788f7d9bdc0e75a4b454853f0e86fa567daefc82 100644 |
--- a/generated/googleapis/lib/clouddebugger/v2.dart |
+++ b/generated/googleapis/lib/clouddebugger/v2.dart |
@@ -130,11 +130,6 @@ class ControllerDebuggeesBreakpointsResourceApi { |
* |
* [debuggeeId] - Identifies the debuggee. |
* |
- * [waitToken] - A wait token that, if specified, blocks the method call until |
- * the list |
- * of active breakpoints has changed, or a server selected timeout has |
- * expired. The value should be set from the last returned response. |
- * |
* [successOnTimeout] - If set to `true`, returns `google.rpc.Code.OK` status |
* and sets the |
* `wait_expired` response field to `true` when the server-selected timeout |
@@ -143,6 +138,11 @@ class ControllerDebuggeesBreakpointsResourceApi { |
* If set to `false`, returns `google.rpc.Code.ABORTED` status when the |
* server-selected timeout has expired (deprecated). |
* |
+ * [waitToken] - A wait token that, if specified, blocks the method call until |
+ * the list |
+ * of active breakpoints has changed, or a server selected timeout has |
+ * expired. The value should be set from the last returned response. |
+ * |
* Completes with a [ListActiveBreakpointsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -151,7 +151,7 @@ class ControllerDebuggeesBreakpointsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListActiveBreakpointsResponse> list(core.String debuggeeId, {core.String waitToken, core.bool successOnTimeout}) { |
+ async.Future<ListActiveBreakpointsResponse> list(core.String debuggeeId, {core.bool successOnTimeout, core.String waitToken}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -162,12 +162,12 @@ class ControllerDebuggeesBreakpointsResourceApi { |
if (debuggeeId == null) { |
throw new core.ArgumentError("Parameter debuggeeId is required."); |
} |
- if (waitToken != null) { |
- _queryParams["waitToken"] = [waitToken]; |
- } |
if (successOnTimeout != null) { |
_queryParams["successOnTimeout"] = ["${successOnTimeout}"]; |
} |
+ if (waitToken != null) { |
+ _queryParams["waitToken"] = [waitToken]; |
+ } |
_url = 'v2/controller/debuggees/' + commons.Escaper.ecapeVariable('$debuggeeId') + '/breakpoints'; |
@@ -264,9 +264,6 @@ class DebuggerDebuggeesResourceApi { |
* |
* Request parameters: |
* |
- * [clientVersion] - The client version making the call. |
- * Following: `domain/type/version` (e.g., `google.com/intellij/v1`). |
- * |
* [includeInactive] - When set to `true`, the result includes all debuggees. |
* Otherwise, the |
* result includes only debuggees that are active. |
@@ -274,6 +271,9 @@ class DebuggerDebuggeesResourceApi { |
* [project] - Project number of a Google Cloud project whose debuggees to |
* list. |
* |
+ * [clientVersion] - The client version making the call. |
+ * Following: `domain/type/version` (e.g., `google.com/intellij/v1`). |
+ * |
* Completes with a [ListDebuggeesResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -282,7 +282,7 @@ class DebuggerDebuggeesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListDebuggeesResponse> list({core.String clientVersion, core.bool includeInactive, core.String project}) { |
+ async.Future<ListDebuggeesResponse> list({core.bool includeInactive, core.String project, core.String clientVersion}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -290,15 +290,15 @@ class DebuggerDebuggeesResourceApi { |
var _downloadOptions = commons.DownloadOptions.Metadata; |
var _body = null; |
- if (clientVersion != null) { |
- _queryParams["clientVersion"] = [clientVersion]; |
- } |
if (includeInactive != null) { |
_queryParams["includeInactive"] = ["${includeInactive}"]; |
} |
if (project != null) { |
_queryParams["project"] = [project]; |
} |
+ if (clientVersion != null) { |
+ _queryParams["clientVersion"] = [clientVersion]; |
+ } |
_url = 'v2/debugger/debuggees'; |
@@ -428,6 +428,18 @@ class DebuggerDebuggeesBreakpointsResourceApi { |
* |
* [debuggeeId] - ID of the debuggee whose breakpoints to list. |
* |
+ * [includeAllUsers] - When set to `true`, the response includes the list of |
+ * breakpoints set by |
+ * any user. Otherwise, it includes only breakpoints set by the caller. |
+ * |
+ * [includeInactive] - When set to `true`, the response includes active and |
+ * inactive |
+ * breakpoints. Otherwise, it includes only active breakpoints. |
+ * |
+ * [stripResults] - This field is deprecated. The following fields are always |
+ * stripped out of |
+ * the result: `stack_frames`, `evaluated_expressions` and `variable_table`. |
+ * |
* [waitToken] - A wait token that, if specified, blocks the call until the |
* breakpoints |
* list has changed, or a server selected timeout has expired. The value |
@@ -435,26 +447,14 @@ class DebuggerDebuggeesBreakpointsResourceApi { |
* `google.rpc.Code.ABORTED` (RPC) is returned on wait timeout, which |
* should be called again with the same `wait_token`. |
* |
- * [clientVersion] - The client version making the call. |
- * Following: `domain/type/version` (e.g., `google.com/intellij/v1`). |
- * |
* [action_value] - Only breakpoints with the specified action will pass the |
* filter. |
* Possible string values are: |
* - "CAPTURE" : A CAPTURE. |
* - "LOG" : A LOG. |
* |
- * [includeInactive] - When set to `true`, the response includes active and |
- * inactive |
- * breakpoints. Otherwise, it includes only active breakpoints. |
- * |
- * [includeAllUsers] - When set to `true`, the response includes the list of |
- * breakpoints set by |
- * any user. Otherwise, it includes only breakpoints set by the caller. |
- * |
- * [stripResults] - This field is deprecated. The following fields are always |
- * stripped out of |
- * the result: `stack_frames`, `evaluated_expressions` and `variable_table`. |
+ * [clientVersion] - The client version making the call. |
+ * Following: `domain/type/version` (e.g., `google.com/intellij/v1`). |
* |
* Completes with a [ListBreakpointsResponse]. |
* |
@@ -464,7 +464,7 @@ class DebuggerDebuggeesBreakpointsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListBreakpointsResponse> list(core.String debuggeeId, {core.String waitToken, core.String clientVersion, core.String action_value, core.bool includeInactive, core.bool includeAllUsers, core.bool stripResults}) { |
+ async.Future<ListBreakpointsResponse> list(core.String debuggeeId, {core.bool includeAllUsers, core.bool includeInactive, core.bool stripResults, core.String waitToken, core.String action_value, core.String clientVersion}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -475,24 +475,24 @@ class DebuggerDebuggeesBreakpointsResourceApi { |
if (debuggeeId == null) { |
throw new core.ArgumentError("Parameter debuggeeId is required."); |
} |
- if (waitToken != null) { |
- _queryParams["waitToken"] = [waitToken]; |
- } |
- if (clientVersion != null) { |
- _queryParams["clientVersion"] = [clientVersion]; |
- } |
- if (action_value != null) { |
- _queryParams["action.value"] = [action_value]; |
+ if (includeAllUsers != null) { |
+ _queryParams["includeAllUsers"] = ["${includeAllUsers}"]; |
} |
if (includeInactive != null) { |
_queryParams["includeInactive"] = ["${includeInactive}"]; |
} |
- if (includeAllUsers != null) { |
- _queryParams["includeAllUsers"] = ["${includeAllUsers}"]; |
- } |
if (stripResults != null) { |
_queryParams["stripResults"] = ["${stripResults}"]; |
} |
+ if (waitToken != null) { |
+ _queryParams["waitToken"] = [waitToken]; |
+ } |
+ if (action_value != null) { |
+ _queryParams["action.value"] = [action_value]; |
+ } |
+ if (clientVersion != null) { |
+ _queryParams["clientVersion"] = [clientVersion]; |
+ } |
_url = 'v2/debugger/debuggees/' + commons.Escaper.ecapeVariable('$debuggeeId') + '/breakpoints'; |