Skip to content

Commit 7a49e71

Browse files
feat: Automated regeneration of monitoring v1 client (#25771)
Auto-created at 2026-02-22 09:34:59 +0000 using the toys pull request generator.
1 parent 138bf62 commit 7a49e71

File tree

5 files changed

+65
-2
lines changed

5 files changed

+65
-2
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313785,6 +313785,9 @@
313785313785
"/monitoring:v1/ColumnSortingOptions": column_sorting_options
313786313786
"/monitoring:v1/ColumnSortingOptions/column": column
313787313787
"/monitoring:v1/ColumnSortingOptions/direction": direction
313788+
"/monitoring:v1/CoordinatedWidget": coordinated_widget
313789+
"/monitoring:v1/CoordinatedWidget/primary": primary
313790+
"/monitoring:v1/CoordinatedWidget/secondary": secondary
313788313791
"/monitoring:v1/Dashboard": dashboard
313789313792
"/monitoring:v1/Dashboard/annotations": annotations
313790313793
"/monitoring:v1/Dashboard/columnLayout": column_layout
@@ -314128,6 +314131,7 @@
314128314131
"/monitoring:v1/Widget/alertChart": alert_chart
314129314132
"/monitoring:v1/Widget/blank": blank
314130314133
"/monitoring:v1/Widget/collapsibleGroup": collapsible_group
314134+
"/monitoring:v1/Widget/coordinatedWidget": coordinated_widget
314131314135
"/monitoring:v1/Widget/errorReportingPanel": error_reporting_panel
314132314136
"/monitoring:v1/Widget/filterControl": filter_control
314133314137
"/monitoring:v1/Widget/id": id

generated/google-apis-monitoring_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-monitoring_v1
22

3+
### v0.61.0 (2026-02-22)
4+
5+
* Regenerated from discovery document revision 20260212
6+
37
### v0.60.0 (2026-01-18)
48

59
* Regenerated from discovery document revision 20260108

generated/google-apis-monitoring_v1/lib/google/apis/monitoring_v1/classes.rb

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,35 @@ def update!(**args)
408408
end
409409
end
410410

411+
# A widget that contains two widget visualizations that are coordinated in
412+
# display. Currently, we only support the primary widget of TimeSeriesTable with
413+
# the secondary widget of XyChart.
414+
class CoordinatedWidget
415+
include Google::Apis::Core::Hashable
416+
417+
# Widget contains a single dashboard component and configuration of how to
418+
# present the component in the dashboard.
419+
# Corresponds to the JSON property `primary`
420+
# @return [Google::Apis::MonitoringV1::Widget]
421+
attr_accessor :primary
422+
423+
# Widget contains a single dashboard component and configuration of how to
424+
# present the component in the dashboard.
425+
# Corresponds to the JSON property `secondary`
426+
# @return [Google::Apis::MonitoringV1::Widget]
427+
attr_accessor :secondary
428+
429+
def initialize(**args)
430+
update!(**args)
431+
end
432+
433+
# Update properties of this object
434+
def update!(**args)
435+
@primary = args[:primary] if args.key?(:primary)
436+
@secondary = args[:secondary] if args.key?(:secondary)
437+
end
438+
end
439+
411440
# A Google Stackdriver dashboard. Dashboards define the content and layout of
412441
# pages in the Stackdriver web application.
413442
class Dashboard
@@ -3004,6 +3033,13 @@ class Widget
30043033
# @return [Google::Apis::MonitoringV1::CollapsibleGroup]
30053034
attr_accessor :collapsible_group
30063035

3036+
# A widget that contains two widget visualizations that are coordinated in
3037+
# display. Currently, we only support the primary widget of TimeSeriesTable with
3038+
# the secondary widget of XyChart.
3039+
# Corresponds to the JSON property `coordinatedWidget`
3040+
# @return [Google::Apis::MonitoringV1::CoordinatedWidget]
3041+
attr_accessor :coordinated_widget
3042+
30073043
# A widget that displays a list of error groups.
30083044
# Corresponds to the JSON property `errorReportingPanel`
30093045
# @return [Google::Apis::MonitoringV1::ErrorReportingPanel]
@@ -3094,6 +3130,7 @@ def update!(**args)
30943130
@alert_chart = args[:alert_chart] if args.key?(:alert_chart)
30953131
@blank = args[:blank] if args.key?(:blank)
30963132
@collapsible_group = args[:collapsible_group] if args.key?(:collapsible_group)
3133+
@coordinated_widget = args[:coordinated_widget] if args.key?(:coordinated_widget)
30973134
@error_reporting_panel = args[:error_reporting_panel] if args.key?(:error_reporting_panel)
30983135
@filter_control = args[:filter_control] if args.key?(:filter_control)
30993136
@id = args[:id] if args.key?(:id)

generated/google-apis-monitoring_v1/lib/google/apis/monitoring_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module MonitoringV1
1818
# Version of the google-apis-monitoring_v1 gem
19-
GEM_VERSION = "0.60.0"
19+
GEM_VERSION = "0.61.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260108"
25+
REVISION = "20260212"
2626
end
2727
end
2828
end

generated/google-apis-monitoring_v1/lib/google/apis/monitoring_v1/representations.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
8888
include Google::Apis::Core::JsonObjectSupport
8989
end
9090

91+
class CoordinatedWidget
92+
class Representation < Google::Apis::Core::JsonRepresentation; end
93+
94+
include Google::Apis::Core::JsonObjectSupport
95+
end
96+
9197
class Dashboard
9298
class Representation < Google::Apis::Core::JsonRepresentation; end
9399

@@ -581,6 +587,16 @@ class Representation < Google::Apis::Core::JsonRepresentation
581587
end
582588
end
583589

590+
class CoordinatedWidget
591+
# @private
592+
class Representation < Google::Apis::Core::JsonRepresentation
593+
property :primary, as: 'primary', class: Google::Apis::MonitoringV1::Widget, decorator: Google::Apis::MonitoringV1::Widget::Representation
594+
595+
property :secondary, as: 'secondary', class: Google::Apis::MonitoringV1::Widget, decorator: Google::Apis::MonitoringV1::Widget::Representation
596+
597+
end
598+
end
599+
584600
class Dashboard
585601
# @private
586602
class Representation < Google::Apis::Core::JsonRepresentation
@@ -1254,6 +1270,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
12541270

12551271
property :collapsible_group, as: 'collapsibleGroup', class: Google::Apis::MonitoringV1::CollapsibleGroup, decorator: Google::Apis::MonitoringV1::CollapsibleGroup::Representation
12561272

1273+
property :coordinated_widget, as: 'coordinatedWidget', class: Google::Apis::MonitoringV1::CoordinatedWidget, decorator: Google::Apis::MonitoringV1::CoordinatedWidget::Representation
1274+
12571275
property :error_reporting_panel, as: 'errorReportingPanel', class: Google::Apis::MonitoringV1::ErrorReportingPanel, decorator: Google::Apis::MonitoringV1::ErrorReportingPanel::Representation
12581276

12591277
property :filter_control, as: 'filterControl', class: Google::Apis::MonitoringV1::FilterControl, decorator: Google::Apis::MonitoringV1::FilterControl::Representation

0 commit comments

Comments
 (0)