Codegen: Generate any instead of interface{} (#70201)

* Chore: Update thema to latest

* Regenerate
This commit is contained in:
Tania
2023-06-16 10:54:56 +02:00
committed by GitHub
parent 9d72ed0875
commit 0316350d16
36 changed files with 189 additions and 187 deletions

View File

@@ -117,7 +117,7 @@ type CloudMonitoringQuery struct {
// GCM query type.
// queryType: #QueryType
// Time Series List sub-query properties.
TimeSeriesList *interface{} `json:"timeSeriesList,omitempty"`
TimeSeriesList *any `json:"timeSeriesList,omitempty"`
// Time Series sub-query properties.
TimeSeriesQuery *TimeSeriesQuery `json:"timeSeriesQuery,omitempty"`
@@ -131,7 +131,7 @@ type DataQuery struct {
// For non mixed scenarios this is undefined.
// TODO find a better way to do this ^ that's friendly to schema
// TODO this shouldn't be unknown but DataSourceRef | null
Datasource *interface{} `json:"datasource,omitempty"`
Datasource *any `json:"datasource,omitempty"`
// Hide true if query is disabled (ie should not be returned to the dashboard)
// Note this does not always imply that the query should not be executed since
@@ -164,7 +164,7 @@ type Filter struct {
}
// GoogleCloudMonitoringDataQuery defines model for GoogleCloudMonitoringDataQuery.
type GoogleCloudMonitoringDataQuery = map[string]interface{}
type GoogleCloudMonitoringDataQuery = map[string]any
// @deprecated Use AnnotationQuery instead. Legacy annotation query properties for migration purposes.
type LegacyCloudMonitoringAnnotationQuery struct {