From 965c79702e72fc16189845efbec05ca84725c124 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Date: Sat, 19 Aug 2023 01:28:14 +0000 Subject: [PATCH] feat: regenerate index files --- discovery/baremetalsolution-v2.json | 14 +++++- discovery/monitoring-v1.json | 67 ++++++++++++++++++++++++++++- 2 files changed, 79 insertions(+), 2 deletions(-) diff --git a/discovery/baremetalsolution-v2.json b/discovery/baremetalsolution-v2.json index bcc55ede7d..e75999014e 100644 --- a/discovery/baremetalsolution-v2.json +++ b/discovery/baremetalsolution-v2.json @@ -1588,7 +1588,7 @@ } } }, - "revision": "20230814", + "revision": "20230807", "rootUrl": "https://baremetalsolution.googleapis.com/", "schemas": { "AllowedClient": { @@ -3512,6 +3512,10 @@ "$ref": "SnapshotReservationDetail", "description": "Details about snapshot space reservation and usage on the storage volume." }, + "snapshotSchedulePolicy": { + "description": "The name of the snapshot schedule policy in use for this volume, if any.", + "type": "string" + }, "state": { "description": "The state of this storage volume.", "enum": [ @@ -3532,6 +3536,10 @@ ], "type": "string" }, + "storageAggregatePool": { + "description": "Input only. Name of the storage aggregate pool to allocate the volume in. Can be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.", + "type": "string" + }, "storageType": { "description": "The storage type for this volume.", "enum": [ @@ -3640,6 +3648,10 @@ "description": "Whether snapshots should be enabled.", "type": "boolean" }, + "storageAggregatePool": { + "description": "Input only. Name of the storage aggregate pool to allocate the volume in. Can be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.", + "type": "string" + }, "type": { "description": "The type of this Volume.", "enum": [ diff --git a/discovery/monitoring-v1.json b/discovery/monitoring-v1.json index 43e6b53078..76ba9ccbe0 100644 --- a/discovery/monitoring-v1.json +++ b/discovery/monitoring-v1.json @@ -753,7 +753,7 @@ } } }, - "revision": "20230806", + "revision": "20230813", "rootUrl": "https://monitoring.googleapis.com/", "schemas": { "Aggregation": { @@ -1595,6 +1595,67 @@ }, "type": "object" }, + "PieChart": { + "description": "A widget that displays timeseries data as a pie or a donut.", + "id": "PieChart", + "properties": { + "chartType": { + "description": "Required. Indicates the visualization type for the PieChart.", + "enum": [ + "PIE_CHART_TYPE_UNSPECIFIED", + "PIE", + "DONUT" + ], + "enumDescriptions": [ + "The zero value. No type specified. Do not use.", + "A Pie type PieChart.", + "Similar to PIE, but the DONUT type PieChart has a hole in the middle." + ], + "type": "string" + }, + "dataSets": { + "description": "Required. The queries for the chart's data.", + "items": { + "$ref": "PieChartDataSet" + }, + "type": "array" + }, + "showLabels": { + "description": "Optional. Indicates whether or not the pie chart should slices' labels", + "type": "boolean" + }, + "showTotal": { + "description": "Optional. Indicates whether or not donut chart should show the total in the middle", + "type": "boolean" + }, + "sliceAggregatedThreshold": { + "description": "Optional. If slices's values are smaller than this value, they will be combined into other category", + "format": "float", + "type": "number" + } + }, + "type": "object" + }, + "PieChartDataSet": { + "description": "Groups a time series query definition.", + "id": "PieChartDataSet", + "properties": { + "minAlignmentPeriod": { + "description": "Optional. The lower bound on data point frequency for this data set, implemented by specifying the minimum alignment period to use in a time series query. For example, if the data is published once every 10 minutes, the min_alignment_period should be at least 10 minutes. It would not make sense to fetch and align data at one minute intervals.", + "format": "google-duration", + "type": "string" + }, + "sliceNameTemplate": { + "description": "Optional. A template for the name of the slice. This name will be displayed in the legend and the tooltip of the pie chart. It replaces the auto-generated names for the slices. For example, if the template is set to ${resource.labels.zone}, the zone's value will be used for the name instead of the default name.", + "type": "string" + }, + "timeSeriesQuery": { + "$ref": "TimeSeriesQuery", + "description": "Required. The query for the PieChart. See, google.monitoring.dashboard.v1.TimeSeriesQuery." + } + }, + "type": "object" + }, "QueryExemplarsRequest": { "description": "QueryExemplarsRequest holds all parameters of the Prometheus upstream API for querying exemplars.", "id": "QueryExemplarsRequest", @@ -2315,6 +2376,10 @@ "$ref": "LogsPanel", "description": "A widget that shows a stream of logs." }, + "pieChart": { + "$ref": "PieChart", + "description": "A widget that displays timeseries data as a pie chart." + }, "scorecard": { "$ref": "Scorecard", "description": "A scorecard summarizing time series data."