docs: fix minor docstring formatting

PiperOrigin-RevId: 492191109
This commit is contained in:
Google APIs 2022-12-01 07:31:18 -08:00 committed by Copybara-Service
parent ac614c70cd
commit 6884ca40ed

View file

@ -50,7 +50,8 @@ message Scorecard {
// timeseries.
message SparkChartView {
// Required. The type of sparkchart to show in this chartView.
SparkChartType spark_chart_type = 1 [(google.api.field_behavior) = REQUIRED];
SparkChartType spark_chart_type = 1
[(google.api.field_behavior) = REQUIRED];
// The lower bound on data point frequency in the chart implemented by
// specifying the minimum alignment period to use in a time series query.
@ -62,7 +63,8 @@ message Scorecard {
// Required. Fields for querying time series data from the
// Stackdriver metrics API.
TimeSeriesQuery time_series_query = 1 [(google.api.field_behavior) = REQUIRED];
TimeSeriesQuery time_series_query = 1
[(google.api.field_behavior) = REQUIRED];
// Defines the optional additional chart shown on the scorecard. If
// neither is included - then a default scorecard is shown.
@ -83,6 +85,8 @@ message Scorecard {
// it in a danger state. (Danger trumps warning.)
//
// As an example, consider a scorecard with the following four thresholds:
//
// ```
// {
// value: 90,
// category: 'DANGER',
@ -103,6 +107,7 @@ message Scorecard {
// category: 'WARNING',
// trigger: 'BELOW',
// }
// ```
//
// Then: values less than or equal to 10 would put the scorecard in a DANGER
// state, values greater than 10 but less than or equal to 20 a WARNING state,