Index: generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart |
diff --git a/generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart b/generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart |
index 12e9ac5c105f3c1d2de7f93e5cd0086030982c65..be3e8e8aa2c78f9991db6940a5188ade2455e1cc 100644 |
--- a/generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart |
+++ b/generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart |
@@ -110,6 +110,18 @@ class ProjectsEventsResourceApi { |
* Example: `projects/my-project-123`. |
* Value must have pattern "^projects/[^/]+$". |
* |
+ * [pageToken] - [Optional] A `next_page_token` provided by a previous |
+ * response. |
+ * |
+ * [serviceFilter_service] - [Optional] The exact value to match against |
+ * [`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). |
+ * |
+ * [pageSize] - [Optional] The maximum number of results to return per |
+ * response. |
+ * |
+ * [serviceFilter_version] - [Optional] The exact value to match against |
+ * [`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). |
+ * |
* [serviceFilter_resourceType] - [Optional] The exact value to match against |
* [`ServiceContext.resource_type`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). |
* |
@@ -124,18 +136,6 @@ class ProjectsEventsResourceApi { |
* |
* [groupId] - [Required] The group for which events shall be returned. |
* |
- * [pageToken] - [Optional] A `next_page_token` provided by a previous |
- * response. |
- * |
- * [serviceFilter_service] - [Optional] The exact value to match against |
- * [`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). |
- * |
- * [pageSize] - [Optional] The maximum number of results to return per |
- * response. |
- * |
- * [serviceFilter_version] - [Optional] The exact value to match against |
- * [`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). |
- * |
* Completes with a [ListEventsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -144,7 +144,7 @@ class ProjectsEventsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListEventsResponse> list(core.String projectName, {core.String serviceFilter_resourceType, core.String timeRange_period, core.String groupId, core.String pageToken, core.String serviceFilter_service, core.int pageSize, core.String serviceFilter_version}) { |
+ async.Future<ListEventsResponse> list(core.String projectName, {core.String pageToken, core.String serviceFilter_service, core.int pageSize, core.String serviceFilter_version, core.String serviceFilter_resourceType, core.String timeRange_period, core.String groupId}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -155,15 +155,6 @@ class ProjectsEventsResourceApi { |
if (projectName == null) { |
throw new core.ArgumentError("Parameter projectName is required."); |
} |
- if (serviceFilter_resourceType != null) { |
- _queryParams["serviceFilter.resourceType"] = [serviceFilter_resourceType]; |
- } |
- if (timeRange_period != null) { |
- _queryParams["timeRange.period"] = [timeRange_period]; |
- } |
- if (groupId != null) { |
- _queryParams["groupId"] = [groupId]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
@@ -176,6 +167,15 @@ class ProjectsEventsResourceApi { |
if (serviceFilter_version != null) { |
_queryParams["serviceFilter.version"] = [serviceFilter_version]; |
} |
+ if (serviceFilter_resourceType != null) { |
+ _queryParams["serviceFilter.resourceType"] = [serviceFilter_resourceType]; |
+ } |
+ if (timeRange_period != null) { |
+ _queryParams["timeRange.period"] = [timeRange_period]; |
+ } |
+ if (groupId != null) { |
+ _queryParams["groupId"] = [groupId]; |
+ } |
_url = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$projectName') + '/events'; |
@@ -270,6 +270,32 @@ class ProjectsGroupStatsResourceApi { |
* Example: <code>projects/my-project-123</code>. |
* Value must have pattern "^projects/[^/]+$". |
* |
+ * [serviceFilter_service] - [Optional] The exact value to match against |
+ * [`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). |
+ * |
+ * [pageSize] - [Optional] The maximum number of results to return per |
+ * response. |
+ * Default is 20. |
+ * |
+ * [order] - [Optional] The sort order in which the results are returned. |
+ * Default is `COUNT_DESC`. |
+ * Possible string values are: |
+ * - "GROUP_ORDER_UNSPECIFIED" : A GROUP_ORDER_UNSPECIFIED. |
+ * - "COUNT_DESC" : A COUNT_DESC. |
+ * - "LAST_SEEN_DESC" : A LAST_SEEN_DESC. |
+ * - "CREATED_DESC" : A CREATED_DESC. |
+ * - "AFFECTED_USERS_DESC" : A AFFECTED_USERS_DESC. |
+ * |
+ * [serviceFilter_version] - [Optional] The exact value to match against |
+ * [`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). |
+ * |
+ * [alignmentTime] - [Optional] Time where the timed counts shall be aligned |
+ * if rounded |
+ * alignment is chosen. Default is 00:00 UTC. |
+ * |
+ * [serviceFilter_resourceType] - [Optional] The exact value to match against |
+ * [`ServiceContext.resource_type`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). |
+ * |
* [timedCountDuration] - [Optional] The preferred duration for a single |
* returned `TimedCount`. |
* If not set, no timed counts are returned. |
@@ -299,32 +325,6 @@ class ProjectsGroupStatsResourceApi { |
* [groupId] - [Optional] List all <code>ErrorGroupStats</code> with these |
* IDs. |
* |
- * [serviceFilter_service] - [Optional] The exact value to match against |
- * [`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). |
- * |
- * [pageSize] - [Optional] The maximum number of results to return per |
- * response. |
- * Default is 20. |
- * |
- * [order] - [Optional] The sort order in which the results are returned. |
- * Default is `COUNT_DESC`. |
- * Possible string values are: |
- * - "GROUP_ORDER_UNSPECIFIED" : A GROUP_ORDER_UNSPECIFIED. |
- * - "COUNT_DESC" : A COUNT_DESC. |
- * - "LAST_SEEN_DESC" : A LAST_SEEN_DESC. |
- * - "CREATED_DESC" : A CREATED_DESC. |
- * - "AFFECTED_USERS_DESC" : A AFFECTED_USERS_DESC. |
- * |
- * [serviceFilter_version] - [Optional] The exact value to match against |
- * [`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). |
- * |
- * [serviceFilter_resourceType] - [Optional] The exact value to match against |
- * [`ServiceContext.resource_type`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). |
- * |
- * [alignmentTime] - [Optional] Time where the timed counts shall be aligned |
- * if rounded |
- * alignment is chosen. Default is 00:00 UTC. |
- * |
* Completes with a [ListGroupStatsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -333,7 +333,7 @@ class ProjectsGroupStatsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListGroupStatsResponse> list(core.String projectName, {core.String timedCountDuration, core.String pageToken, core.String timeRange_period, core.String alignment, core.List<core.String> groupId, core.String serviceFilter_service, core.int pageSize, core.String order, core.String serviceFilter_version, core.String serviceFilter_resourceType, core.String alignmentTime}) { |
+ async.Future<ListGroupStatsResponse> list(core.String projectName, {core.String serviceFilter_service, core.int pageSize, core.String order, core.String serviceFilter_version, core.String alignmentTime, core.String serviceFilter_resourceType, core.String timedCountDuration, core.String pageToken, core.String timeRange_period, core.String alignment, core.List<core.String> groupId}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -344,21 +344,6 @@ class ProjectsGroupStatsResourceApi { |
if (projectName == null) { |
throw new core.ArgumentError("Parameter projectName is required."); |
} |
- if (timedCountDuration != null) { |
- _queryParams["timedCountDuration"] = [timedCountDuration]; |
- } |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
- if (timeRange_period != null) { |
- _queryParams["timeRange.period"] = [timeRange_period]; |
- } |
- if (alignment != null) { |
- _queryParams["alignment"] = [alignment]; |
- } |
- if (groupId != null) { |
- _queryParams["groupId"] = groupId; |
- } |
if (serviceFilter_service != null) { |
_queryParams["serviceFilter.service"] = [serviceFilter_service]; |
} |
@@ -371,11 +356,26 @@ class ProjectsGroupStatsResourceApi { |
if (serviceFilter_version != null) { |
_queryParams["serviceFilter.version"] = [serviceFilter_version]; |
} |
+ if (alignmentTime != null) { |
+ _queryParams["alignmentTime"] = [alignmentTime]; |
+ } |
if (serviceFilter_resourceType != null) { |
_queryParams["serviceFilter.resourceType"] = [serviceFilter_resourceType]; |
} |
- if (alignmentTime != null) { |
- _queryParams["alignmentTime"] = [alignmentTime]; |
+ if (timedCountDuration != null) { |
+ _queryParams["timedCountDuration"] = [timedCountDuration]; |
+ } |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
+ if (timeRange_period != null) { |
+ _queryParams["timeRange.period"] = [timeRange_period]; |
+ } |
+ if (alignment != null) { |
+ _queryParams["alignment"] = [alignment]; |
+ } |
+ if (groupId != null) { |
+ _queryParams["groupId"] = groupId; |
} |
_url = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$projectName') + '/groupStats'; |