Skip to content

Commit

Permalink
feat: regenerate index files
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Aug 20, 2023
1 parent 268edff commit 0348d3e
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 2 deletions.
14 changes: 13 additions & 1 deletion discovery/baremetalsolution-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,7 @@
}
}
},
"revision": "20230814",
"revision": "20230807",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"AllowedClient": {
Expand Down Expand Up @@ -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": [
Expand All @@ -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": [
Expand Down Expand Up @@ -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": [
Expand Down
67 changes: 66 additions & 1 deletion discovery/monitoring-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@
}
}
},
"revision": "20230806",
"revision": "20230813",
"rootUrl": "https://monitoring.googleapis.com/",
"schemas": {
"Aggregation": {
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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."
Expand Down

0 comments on commit 0348d3e

Please sign in to comment.