Index: generated/googleapis/lib/monitoring/v3.dart |
diff --git a/generated/googleapis/lib/monitoring/v3.dart b/generated/googleapis/lib/monitoring/v3.dart |
index 2303347a5c63e79fcace49685662c26a3fef60d5..62c146e781f222328b1801ae89356ce3a4280868 100644 |
--- a/generated/googleapis/lib/monitoring/v3.dart |
+++ b/generated/googleapis/lib/monitoring/v3.dart |
@@ -415,13 +415,6 @@ class ProjectsGroupsMembersResourceApi { |
* "projects/{project_id_or_number}/groups/{group_id}". |
* Value must have pattern "^projects/[^/]+/groups/[^/]+$". |
* |
- * [pageSize] - A positive number that is the maximum number of results to |
- * return. |
- * |
- * [interval_startTime] - Optional. The beginning of the time interval. The |
- * default value for the start time is the end time. The start time must not |
- * be later than the end time. |
- * |
* [interval_endTime] - Required. The end of the time interval. |
* |
* [filter] - An optional list filter describing the members to be returned. |
@@ -435,6 +428,13 @@ class ProjectsGroupsMembersResourceApi { |
* field causes the method to return additional results from the previous |
* method call. |
* |
+ * [pageSize] - A positive number that is the maximum number of results to |
+ * return. |
+ * |
+ * [interval_startTime] - Optional. The beginning of the time interval. The |
+ * default value for the start time is the end time. The start time must not |
+ * be later than the end time. |
+ * |
* Completes with a [ListGroupMembersResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -443,7 +443,7 @@ class ProjectsGroupsMembersResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListGroupMembersResponse> list(core.String name, {core.int pageSize, core.String interval_startTime, core.String interval_endTime, core.String filter, core.String pageToken}) { |
+ async.Future<ListGroupMembersResponse> list(core.String name, {core.String interval_endTime, core.String filter, core.String pageToken, core.int pageSize, core.String interval_startTime}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -454,12 +454,6 @@ class ProjectsGroupsMembersResourceApi { |
if (name == null) { |
throw new core.ArgumentError("Parameter name is required."); |
} |
- if (pageSize != null) { |
- _queryParams["pageSize"] = ["${pageSize}"]; |
- } |
- if (interval_startTime != null) { |
- _queryParams["interval.startTime"] = [interval_startTime]; |
- } |
if (interval_endTime != null) { |
_queryParams["interval.endTime"] = [interval_endTime]; |
} |
@@ -469,6 +463,12 @@ class ProjectsGroupsMembersResourceApi { |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
+ if (pageSize != null) { |
+ _queryParams["pageSize"] = ["${pageSize}"]; |
+ } |
+ if (interval_startTime != null) { |
+ _queryParams["interval.startTime"] = [interval_startTime]; |
+ } |
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/members'; |
@@ -635,12 +635,6 @@ class ProjectsMetricDescriptorsResourceApi { |
* "projects/{project_id_or_number}". |
* Value must have pattern "^projects/[^/]+$". |
* |
- * [filter] - If this field is empty, all custom and system-defined metric |
- * descriptors are returned. Otherwise, the filter specifies which metric |
- * descriptors are to be returned. For example, the following filter matches |
- * all custom metrics: |
- * metric.type = starts_with("custom.googleapis.com/") |
- * |
* [pageToken] - If this field is not empty then it must contain the |
* nextPageToken value returned by a previous call to this method. Using this |
* field causes the method to return additional results from the previous |
@@ -649,6 +643,12 @@ class ProjectsMetricDescriptorsResourceApi { |
* [pageSize] - A positive number that is the maximum number of results to |
* return. |
* |
+ * [filter] - If this field is empty, all custom and system-defined metric |
+ * descriptors are returned. Otherwise, the filter specifies which metric |
+ * descriptors are to be returned. For example, the following filter matches |
+ * all custom metrics: |
+ * metric.type = starts_with("custom.googleapis.com/") |
+ * |
* Completes with a [ListMetricDescriptorsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -657,7 +657,7 @@ class ProjectsMetricDescriptorsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListMetricDescriptorsResponse> list(core.String name, {core.String filter, core.String pageToken, core.int pageSize}) { |
+ async.Future<ListMetricDescriptorsResponse> list(core.String name, {core.String pageToken, core.int pageSize, core.String filter}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -668,15 +668,15 @@ class ProjectsMetricDescriptorsResourceApi { |
if (name == null) { |
throw new core.ArgumentError("Parameter name is required."); |
} |
- if (filter != null) { |
- _queryParams["filter"] = [filter]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
+ if (filter != null) { |
+ _queryParams["filter"] = [filter]; |
+ } |
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/metricDescriptors'; |
@@ -876,6 +876,29 @@ class ProjectsTimeSeriesResourceApi { |
* "projects/{project_id_or_number}". |
* Value must have pattern "^projects/[^/]+$". |
* |
+ * [aggregation_groupByFields] - The set of fields to preserve when |
+ * crossSeriesReducer is specified. The groupByFields determine how the time |
+ * series are partitioned into subsets prior to applying the aggregation |
+ * function. Each subset contains time series that have the same value for |
+ * each of the grouping fields. Each individual time series is a member of |
+ * exactly one subset. The crossSeriesReducer is applied to each subset of |
+ * time series. It is not possible to reduce across different resource types, |
+ * so this field implicitly contains resource.type. Fields not specified in |
+ * groupByFields are aggregated away. If groupByFields is not specified and |
+ * all the time series have the same resource type, then the time series are |
+ * aggregated into a single output time series. If crossSeriesReducer is not |
+ * defined, this field is ignored. |
+ * |
+ * [interval_endTime] - Required. The end of the time interval. |
+ * |
+ * [aggregation_alignmentPeriod] - The alignment period for per-time series |
+ * alignment. If present, alignmentPeriod must be at least 60 seconds. After |
+ * per-time series alignment, each time series will contain data points only |
+ * on the period boundaries. If perSeriesAligner is not specified or equals |
+ * ALIGN_NONE, then this field is ignored. If perSeriesAligner is specified |
+ * and does not equal ALIGN_NONE, then this field must be defined; otherwise |
+ * an error is returned. |
+ * |
* [pageSize] - A positive number that is the maximum number of results to |
* return. When view field sets to FULL, it limits the number of Points server |
* will return; if view field is HEADERS, it limits the number of TimeSeries |
@@ -955,29 +978,6 @@ class ProjectsTimeSeriesResourceApi { |
* - "FULL" : A FULL. |
* - "HEADERS" : A HEADERS. |
* |
- * [aggregation_groupByFields] - The set of fields to preserve when |
- * crossSeriesReducer is specified. The groupByFields determine how the time |
- * series are partitioned into subsets prior to applying the aggregation |
- * function. Each subset contains time series that have the same value for |
- * each of the grouping fields. Each individual time series is a member of |
- * exactly one subset. The crossSeriesReducer is applied to each subset of |
- * time series. It is not possible to reduce across different resource types, |
- * so this field implicitly contains resource.type. Fields not specified in |
- * groupByFields are aggregated away. If groupByFields is not specified and |
- * all the time series have the same resource type, then the time series are |
- * aggregated into a single output time series. If crossSeriesReducer is not |
- * defined, this field is ignored. |
- * |
- * [interval_endTime] - Required. The end of the time interval. |
- * |
- * [aggregation_alignmentPeriod] - The alignment period for per-time series |
- * alignment. If present, alignmentPeriod must be at least 60 seconds. After |
- * per-time series alignment, each time series will contain data points only |
- * on the period boundaries. If perSeriesAligner is not specified or equals |
- * ALIGN_NONE, then this field is ignored. If perSeriesAligner is specified |
- * and does not equal ALIGN_NONE, then this field must be defined; otherwise |
- * an error is returned. |
- * |
* Completes with a [ListTimeSeriesResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -986,7 +986,7 @@ class ProjectsTimeSeriesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListTimeSeriesResponse> list(core.String name, {core.int pageSize, core.String orderBy, core.String aggregation_crossSeriesReducer, core.String filter, core.String pageToken, core.String aggregation_perSeriesAligner, core.String interval_startTime, core.String view, core.List<core.String> aggregation_groupByFields, core.String interval_endTime, core.String aggregation_alignmentPeriod}) { |
+ async.Future<ListTimeSeriesResponse> list(core.String name, {core.List<core.String> aggregation_groupByFields, core.String interval_endTime, core.String aggregation_alignmentPeriod, core.int pageSize, core.String orderBy, core.String aggregation_crossSeriesReducer, core.String filter, core.String pageToken, core.String aggregation_perSeriesAligner, core.String interval_startTime, core.String view}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -997,6 +997,15 @@ class ProjectsTimeSeriesResourceApi { |
if (name == null) { |
throw new core.ArgumentError("Parameter name is required."); |
} |
+ if (aggregation_groupByFields != null) { |
+ _queryParams["aggregation.groupByFields"] = aggregation_groupByFields; |
+ } |
+ if (interval_endTime != null) { |
+ _queryParams["interval.endTime"] = [interval_endTime]; |
+ } |
+ if (aggregation_alignmentPeriod != null) { |
+ _queryParams["aggregation.alignmentPeriod"] = [aggregation_alignmentPeriod]; |
+ } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
@@ -1021,15 +1030,6 @@ class ProjectsTimeSeriesResourceApi { |
if (view != null) { |
_queryParams["view"] = [view]; |
} |
- if (aggregation_groupByFields != null) { |
- _queryParams["aggregation.groupByFields"] = aggregation_groupByFields; |
- } |
- if (interval_endTime != null) { |
- _queryParams["interval.endTime"] = [interval_endTime]; |
- } |
- if (aggregation_alignmentPeriod != null) { |
- _queryParams["aggregation.alignmentPeriod"] = [aggregation_alignmentPeriod]; |
- } |
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/timeSeries'; |