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

Unified Diff: generated/googleapis/lib/monitoring/v3.dart

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « generated/googleapis/lib/ml/v1.dart ('k') | generated/googleapis/lib/partners/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/monitoring/v3.dart
diff --git a/generated/googleapis/lib/monitoring/v3.dart b/generated/googleapis/lib/monitoring/v3.dart
index 62c146e781f222328b1801ae89356ce3a4280868..3a09d37192840f87811a756f5f364752c149c75e 100644
--- a/generated/googleapis/lib/monitoring/v3.dart
+++ b/generated/googleapis/lib/monitoring/v3.dart
@@ -269,11 +269,6 @@ class ProjectsGroupsResourceApi {
* "projects/{project_id_or_number}".
* Value must have pattern "^projects/[^/]+$".
*
- * [childrenOfGroup] - A group name:
- * "projects/{project_id_or_number}/groups/{group_id}". Returns groups whose
- * parentName field contains the group name. If no groups have this parent,
- * the results are empty.
- *
* [descendantsOfGroup] - A group name:
* "projects/{project_id_or_number}/groups/{group_id}". Returns the
* descendants of the specified group. This is a superset of the results
@@ -295,6 +290,11 @@ class ProjectsGroupsResourceApi {
* ancestor. If the specified group has no immediate parent, the results are
* empty.
*
+ * [childrenOfGroup] - A group name:
+ * "projects/{project_id_or_number}/groups/{group_id}". Returns groups whose
+ * parentName field contains the group name. If no groups have this parent,
+ * the results are empty.
+ *
* Completes with a [ListGroupsResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -303,7 +303,7 @@ class ProjectsGroupsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListGroupsResponse> list(core.String name, {core.String childrenOfGroup, core.String descendantsOfGroup, core.String pageToken, core.int pageSize, core.String ancestorsOfGroup}) {
+ async.Future<ListGroupsResponse> list(core.String name, {core.String descendantsOfGroup, core.String pageToken, core.int pageSize, core.String ancestorsOfGroup, core.String childrenOfGroup}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -314,9 +314,6 @@ class ProjectsGroupsResourceApi {
if (name == null) {
throw new core.ArgumentError("Parameter name is required.");
}
- if (childrenOfGroup != null) {
- _queryParams["childrenOfGroup"] = [childrenOfGroup];
- }
if (descendantsOfGroup != null) {
_queryParams["descendantsOfGroup"] = [descendantsOfGroup];
}
@@ -329,6 +326,9 @@ class ProjectsGroupsResourceApi {
if (ancestorsOfGroup != null) {
_queryParams["ancestorsOfGroup"] = [ancestorsOfGroup];
}
+ if (childrenOfGroup != null) {
+ _queryParams["childrenOfGroup"] = [childrenOfGroup];
+ }
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/groups';
@@ -428,13 +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.
*
+ * [pageSize] - A positive number that is the maximum number of results to
+ * return.
+ *
* 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.String interval_endTime, core.String filter, core.String pageToken, core.int pageSize, core.String interval_startTime}) {
+ async.Future<ListGroupMembersResponse> list(core.String name, {core.String interval_endTime, core.String filter, core.String pageToken, core.String interval_startTime, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -463,12 +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];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/members';
@@ -635,6 +635,12 @@ 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
@@ -643,12 +649,6 @@ 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 pageToken, core.int pageSize, core.String filter}) {
+ async.Future<ListMetricDescriptorsResponse> list(core.String name, {core.String filter, core.String pageToken, core.int pageSize}) {
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';
@@ -753,12 +753,6 @@ class ProjectsMonitoredResourceDescriptorsResourceApi {
* "projects/{project_id_or_number}".
* Value must have pattern "^projects/[^/]+$".
*
- * [filter] - An optional filter describing the descriptors to be returned.
- * The filter can reference the descriptor's type and labels. For example, the
- * following filter returns only Google Compute Engine descriptors that have
- * an id label:
- * resource.type = starts_with("gce_") AND resource.label:id
- *
* [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
@@ -767,6 +761,12 @@ class ProjectsMonitoredResourceDescriptorsResourceApi {
* [pageSize] - A positive number that is the maximum number of results to
* return.
*
+ * [filter] - An optional filter describing the descriptors to be returned.
+ * The filter can reference the descriptor's type and labels. For example, the
+ * following filter returns only Google Compute Engine descriptors that have
+ * an id label:
+ * resource.type = starts_with("gce_") AND resource.label:id
+ *
* Completes with a [ListMonitoredResourceDescriptorsResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -775,7 +775,7 @@ class ProjectsMonitoredResourceDescriptorsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListMonitoredResourceDescriptorsResponse> list(core.String name, {core.String filter, core.String pageToken, core.int pageSize}) {
+ async.Future<ListMonitoredResourceDescriptorsResponse> list(core.String name, {core.String pageToken, core.int pageSize, core.String filter}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -786,15 +786,15 @@ class ProjectsMonitoredResourceDescriptorsResourceApi {
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') + '/monitoredResourceDescriptors';
@@ -876,34 +876,6 @@ 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
- * server will return.
- *
* [orderBy] - Specifies the order in which the points of the time series
* should be returned. By default, results are not ordered. Currently, this
* field must be left blank.
@@ -930,6 +902,7 @@ class ProjectsTimeSeriesResourceApi {
* - "REDUCE_PERCENTILE_95" : A REDUCE_PERCENTILE_95.
* - "REDUCE_PERCENTILE_50" : A REDUCE_PERCENTILE_50.
* - "REDUCE_PERCENTILE_05" : A REDUCE_PERCENTILE_05.
+ * - "REDUCE_FRACTION_LESS_THAN" : A REDUCE_FRACTION_LESS_THAN.
*
* [filter] - A monitoring filter that specifies which time series should be
* returned. The filter must specify a single metric type, and can
@@ -968,6 +941,7 @@ class ProjectsTimeSeriesResourceApi {
* - "ALIGN_PERCENTILE_95" : A ALIGN_PERCENTILE_95.
* - "ALIGN_PERCENTILE_50" : A ALIGN_PERCENTILE_50.
* - "ALIGN_PERCENTILE_05" : A ALIGN_PERCENTILE_05.
+ * - "ALIGN_MAKE_DISTRIBUTION" : A ALIGN_MAKE_DISTRIBUTION.
*
* [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
@@ -978,6 +952,42 @@ class ProjectsTimeSeriesResourceApi {
* - "FULL" : A FULL.
* - "HEADERS" : A HEADERS.
*
+ * [aggregation_reduceFractionLessThanParams_threshold] - The threshold used
+ * by the REDUCE_FRACTION_LESS_THAN cross-series reducer.
+ *
+ * [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
+ * server will return.
+ *
+ * [outputPeriod] - If outputPeriod is specified, the data in the response
+ * will have the given period. Must be equal to or longer than
+ * alignmentPeriod. Must not be used when view is HEADERS. Only used when
+ * interval describes an interval longer than a single point.
+ *
* Completes with a [ListTimeSeriesResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -986,7 +996,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.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}) {
+ async.Future<ListTimeSeriesResponse> list(core.String name, {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.double aggregation_reduceFractionLessThanParams_threshold, core.List<core.String> aggregation_groupByFields, core.String interval_endTime, core.String aggregation_alignmentPeriod, core.int pageSize, core.String outputPeriod}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -997,18 +1007,6 @@ 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}"];
- }
if (orderBy != null) {
_queryParams["orderBy"] = [orderBy];
}
@@ -1030,6 +1028,24 @@ class ProjectsTimeSeriesResourceApi {
if (view != null) {
_queryParams["view"] = [view];
}
+ if (aggregation_reduceFractionLessThanParams_threshold != null) {
+ _queryParams["aggregation.reduceFractionLessThanParams.threshold"] = ["${aggregation_reduceFractionLessThanParams_threshold}"];
+ }
+ 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}"];
+ }
+ if (outputPeriod != null) {
+ _queryParams["outputPeriod"] = [outputPeriod];
+ }
_url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/timeSeries';
« no previous file with comments | « generated/googleapis/lib/ml/v1.dart ('k') | generated/googleapis/lib/partners/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698