mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-13 11:25:19 +00:00
Update GCP API package
This commit is contained in:
2581
vendor/google.golang.org/api/monitoring/v3/monitoring-api.json
generated
vendored
2581
vendor/google.golang.org/api/monitoring/v3/monitoring-api.json
generated
vendored
File diff suppressed because it is too large
Load Diff
153
vendor/google.golang.org/api/monitoring/v3/monitoring-gen.go
generated
vendored
153
vendor/google.golang.org/api/monitoring/v3/monitoring-gen.go
generated
vendored
@@ -4166,103 +4166,6 @@ func (c *ProjectsTimeSeriesListCall) PageToken(pageToken string) *ProjectsTimeSe
|
||||
return c
|
||||
}
|
||||
|
||||
// SecondaryAggregationAlignmentPeriod sets the optional parameter
|
||||
// "secondaryAggregation.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.
|
||||
func (c *ProjectsTimeSeriesListCall) SecondaryAggregationAlignmentPeriod(secondaryAggregationAlignmentPeriod string) *ProjectsTimeSeriesListCall {
|
||||
c.urlParams_.Set("secondaryAggregation.alignmentPeriod", secondaryAggregationAlignmentPeriod)
|
||||
return c
|
||||
}
|
||||
|
||||
// SecondaryAggregationCrossSeriesReducer sets the optional parameter
|
||||
// "secondaryAggregation.crossSeriesReducer": The approach to be used to
|
||||
// combine time series. Not all reducer functions may be applied to all
|
||||
// time series, depending on the metric type and the value type of the
|
||||
// original time series. Reduction may change the metric type of value
|
||||
// type of the time series.Time series data must be aligned in order to
|
||||
// perform cross-time series reduction. If crossSeriesReducer is
|
||||
// specified, then perSeriesAligner must be specified and not equal
|
||||
// ALIGN_NONE and alignmentPeriod must be specified; otherwise, an error
|
||||
// is returned.
|
||||
//
|
||||
// Possible values:
|
||||
// "REDUCE_NONE"
|
||||
// "REDUCE_MEAN"
|
||||
// "REDUCE_MIN"
|
||||
// "REDUCE_MAX"
|
||||
// "REDUCE_SUM"
|
||||
// "REDUCE_STDDEV"
|
||||
// "REDUCE_COUNT"
|
||||
// "REDUCE_COUNT_TRUE"
|
||||
// "REDUCE_FRACTION_TRUE"
|
||||
// "REDUCE_PERCENTILE_99"
|
||||
// "REDUCE_PERCENTILE_95"
|
||||
// "REDUCE_PERCENTILE_50"
|
||||
// "REDUCE_PERCENTILE_05"
|
||||
func (c *ProjectsTimeSeriesListCall) SecondaryAggregationCrossSeriesReducer(secondaryAggregationCrossSeriesReducer string) *ProjectsTimeSeriesListCall {
|
||||
c.urlParams_.Set("secondaryAggregation.crossSeriesReducer", secondaryAggregationCrossSeriesReducer)
|
||||
return c
|
||||
}
|
||||
|
||||
// SecondaryAggregationGroupByFields sets the optional parameter
|
||||
// "secondaryAggregation.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.
|
||||
func (c *ProjectsTimeSeriesListCall) SecondaryAggregationGroupByFields(secondaryAggregationGroupByFields ...string) *ProjectsTimeSeriesListCall {
|
||||
c.urlParams_.SetMulti("secondaryAggregation.groupByFields", append([]string{}, secondaryAggregationGroupByFields...))
|
||||
return c
|
||||
}
|
||||
|
||||
// SecondaryAggregationPerSeriesAligner sets the optional parameter
|
||||
// "secondaryAggregation.perSeriesAligner": The approach to be used to
|
||||
// align individual time series. Not all alignment functions may be
|
||||
// applied to all time series, depending on the metric type and value
|
||||
// type of the original time series. Alignment may change the metric
|
||||
// type or the value type of the time series.Time series data must be
|
||||
// aligned in order to perform cross-time series reduction. If
|
||||
// crossSeriesReducer is specified, then perSeriesAligner must be
|
||||
// specified and not equal ALIGN_NONE and alignmentPeriod must be
|
||||
// specified; otherwise, an error is returned.
|
||||
//
|
||||
// Possible values:
|
||||
// "ALIGN_NONE"
|
||||
// "ALIGN_DELTA"
|
||||
// "ALIGN_RATE"
|
||||
// "ALIGN_INTERPOLATE"
|
||||
// "ALIGN_NEXT_OLDER"
|
||||
// "ALIGN_MIN"
|
||||
// "ALIGN_MAX"
|
||||
// "ALIGN_MEAN"
|
||||
// "ALIGN_COUNT"
|
||||
// "ALIGN_SUM"
|
||||
// "ALIGN_STDDEV"
|
||||
// "ALIGN_COUNT_TRUE"
|
||||
// "ALIGN_FRACTION_TRUE"
|
||||
// "ALIGN_PERCENTILE_99"
|
||||
// "ALIGN_PERCENTILE_95"
|
||||
// "ALIGN_PERCENTILE_50"
|
||||
// "ALIGN_PERCENTILE_05"
|
||||
func (c *ProjectsTimeSeriesListCall) SecondaryAggregationPerSeriesAligner(secondaryAggregationPerSeriesAligner string) *ProjectsTimeSeriesListCall {
|
||||
c.urlParams_.Set("secondaryAggregation.perSeriesAligner", secondaryAggregationPerSeriesAligner)
|
||||
return c
|
||||
}
|
||||
|
||||
// View sets the optional parameter "view": Specifies which information
|
||||
// is returned about the time series.
|
||||
//
|
||||
@@ -4472,62 +4375,6 @@ func (c *ProjectsTimeSeriesListCall) Do(opts ...googleapi.CallOption) (*ListTime
|
||||
// "location": "query",
|
||||
// "type": "string"
|
||||
// },
|
||||
// "secondaryAggregation.alignmentPeriod": {
|
||||
// "description": "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.",
|
||||
// "format": "google-duration",
|
||||
// "location": "query",
|
||||
// "type": "string"
|
||||
// },
|
||||
// "secondaryAggregation.crossSeriesReducer": {
|
||||
// "description": "The approach to be used to combine time series. Not all reducer functions may be applied to all time series, depending on the metric type and the value type of the original time series. Reduction may change the metric type of value type of the time series.Time series data must be aligned in order to perform cross-time series reduction. If crossSeriesReducer is specified, then perSeriesAligner must be specified and not equal ALIGN_NONE and alignmentPeriod must be specified; otherwise, an error is returned.",
|
||||
// "enum": [
|
||||
// "REDUCE_NONE",
|
||||
// "REDUCE_MEAN",
|
||||
// "REDUCE_MIN",
|
||||
// "REDUCE_MAX",
|
||||
// "REDUCE_SUM",
|
||||
// "REDUCE_STDDEV",
|
||||
// "REDUCE_COUNT",
|
||||
// "REDUCE_COUNT_TRUE",
|
||||
// "REDUCE_FRACTION_TRUE",
|
||||
// "REDUCE_PERCENTILE_99",
|
||||
// "REDUCE_PERCENTILE_95",
|
||||
// "REDUCE_PERCENTILE_50",
|
||||
// "REDUCE_PERCENTILE_05"
|
||||
// ],
|
||||
// "location": "query",
|
||||
// "type": "string"
|
||||
// },
|
||||
// "secondaryAggregation.groupByFields": {
|
||||
// "description": "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.",
|
||||
// "location": "query",
|
||||
// "repeated": true,
|
||||
// "type": "string"
|
||||
// },
|
||||
// "secondaryAggregation.perSeriesAligner": {
|
||||
// "description": "The approach to be used to align individual time series. Not all alignment functions may be applied to all time series, depending on the metric type and value type of the original time series. Alignment may change the metric type or the value type of the time series.Time series data must be aligned in order to perform cross-time series reduction. If crossSeriesReducer is specified, then perSeriesAligner must be specified and not equal ALIGN_NONE and alignmentPeriod must be specified; otherwise, an error is returned.",
|
||||
// "enum": [
|
||||
// "ALIGN_NONE",
|
||||
// "ALIGN_DELTA",
|
||||
// "ALIGN_RATE",
|
||||
// "ALIGN_INTERPOLATE",
|
||||
// "ALIGN_NEXT_OLDER",
|
||||
// "ALIGN_MIN",
|
||||
// "ALIGN_MAX",
|
||||
// "ALIGN_MEAN",
|
||||
// "ALIGN_COUNT",
|
||||
// "ALIGN_SUM",
|
||||
// "ALIGN_STDDEV",
|
||||
// "ALIGN_COUNT_TRUE",
|
||||
// "ALIGN_FRACTION_TRUE",
|
||||
// "ALIGN_PERCENTILE_99",
|
||||
// "ALIGN_PERCENTILE_95",
|
||||
// "ALIGN_PERCENTILE_50",
|
||||
// "ALIGN_PERCENTILE_05"
|
||||
// ],
|
||||
// "location": "query",
|
||||
// "type": "string"
|
||||
// },
|
||||
// "view": {
|
||||
// "description": "Specifies which information is returned about the time series.",
|
||||
// "enum": [
|
||||
|
||||
Reference in New Issue
Block a user