google-cloud-monitoring-dashboard-v1 0.6.5 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/AUTHENTICATION.md +7 -25
- data/README.md +11 -6
- data/lib/google/cloud/monitoring/dashboard/v1/version.rb +1 -1
- data/lib/google/cloud/monitoring/dashboard/v1.rb +2 -0
- data/lib/google/monitoring/dashboard/v1/alertchart_pb.rb +2 -1
- data/lib/google/monitoring/dashboard/v1/collapsible_group_pb.rb +24 -0
- data/lib/google/monitoring/dashboard/v1/common_pb.rb +2 -2
- data/lib/google/monitoring/dashboard/v1/dashboard_filter_pb.rb +40 -0
- data/lib/google/monitoring/dashboard/v1/dashboard_pb.rb +5 -1
- data/lib/google/monitoring/dashboard/v1/dashboards_service_pb.rb +3 -3
- data/lib/google/monitoring/dashboard/v1/drilldowns_pb.rb +0 -1
- data/lib/google/monitoring/dashboard/v1/layouts_pb.rb +2 -1
- data/lib/google/monitoring/dashboard/v1/logs_panel_pb.rb +25 -0
- data/lib/google/monitoring/dashboard/v1/metrics_pb.rb +9 -1
- data/lib/google/monitoring/dashboard/v1/scorecard_pb.rb +2 -2
- data/lib/google/monitoring/dashboard/v1/table_display_options_pb.rb +26 -0
- data/lib/google/monitoring/dashboard/v1/table_pb.rb +36 -0
- data/lib/google/monitoring/dashboard/v1/widget_pb.rb +8 -1
- data/lib/google/monitoring/dashboard/v1/xychart_pb.rb +10 -1
- data/proto_docs/google/api/resource.rb +10 -71
- data/proto_docs/google/monitoring/dashboard/v1/collapsible_group.rb +38 -0
- data/proto_docs/google/monitoring/dashboard/v1/dashboard.rb +15 -0
- data/proto_docs/google/monitoring/dashboard/v1/dashboard_filter.rb +69 -0
- data/proto_docs/google/monitoring/dashboard/v1/logs_panel.rb +44 -0
- data/proto_docs/google/monitoring/dashboard/v1/metrics.rb +16 -0
- data/proto_docs/google/monitoring/dashboard/v1/table.rb +63 -0
- data/proto_docs/google/monitoring/dashboard/v1/table_display_options.rb +38 -0
- data/proto_docs/google/monitoring/dashboard/v1/widget.rb +10 -0
- data/proto_docs/google/monitoring/dashboard/v1/xychart.rb +18 -0
- metadata +22 -16
- data/proto_docs/google/api/distribution.rb +0 -225
- data/proto_docs/google/protobuf/any.rb +0 -141
- data/proto_docs/google/protobuf/field_mask.rb +0 -229
- data/proto_docs/google/protobuf/timestamp.rb +0 -129
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Monitoring
|
23
|
+
module Dashboard
|
24
|
+
module V1
|
25
|
+
# A widget that groups the other widgets. All widgets that are within
|
26
|
+
# the area spanned by the grouping widget are considered member widgets.
|
27
|
+
# @!attribute [rw] collapsed
|
28
|
+
# @return [::Boolean]
|
29
|
+
# The collapsed state of the widget on first page load.
|
30
|
+
class CollapsibleGroup
|
31
|
+
include ::Google::Protobuf::MessageExts
|
32
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -55,9 +55,24 @@ module Google
|
|
55
55
|
# @return [::Google::Cloud::Monitoring::Dashboard::V1::ColumnLayout]
|
56
56
|
# The content is divided into equally spaced columns and the widgets are
|
57
57
|
# arranged vertically.
|
58
|
+
# @!attribute [rw] dashboard_filters
|
59
|
+
# @return [::Array<::Google::Cloud::Monitoring::Dashboard::V1::DashboardFilter>]
|
60
|
+
# Filters to reduce the amount of data charted based on the filter criteria.
|
61
|
+
# @!attribute [rw] labels
|
62
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
63
|
+
# Labels applied to the dashboard
|
58
64
|
class Dashboard
|
59
65
|
include ::Google::Protobuf::MessageExts
|
60
66
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
67
|
+
|
68
|
+
# @!attribute [rw] key
|
69
|
+
# @return [::String]
|
70
|
+
# @!attribute [rw] value
|
71
|
+
# @return [::String]
|
72
|
+
class LabelsEntry
|
73
|
+
include ::Google::Protobuf::MessageExts
|
74
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
75
|
+
end
|
61
76
|
end
|
62
77
|
end
|
63
78
|
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Monitoring
|
23
|
+
module Dashboard
|
24
|
+
module V1
|
25
|
+
# A filter to reduce the amount of data charted in relevant widgets.
|
26
|
+
# @!attribute [rw] label_key
|
27
|
+
# @return [::String]
|
28
|
+
# Required. The key for the label
|
29
|
+
# @!attribute [rw] template_variable
|
30
|
+
# @return [::String]
|
31
|
+
# The placeholder text that can be referenced in a filter string or MQL
|
32
|
+
# query. If omitted, the dashboard filter will be applied to all relevant
|
33
|
+
# widgets in the dashboard.
|
34
|
+
# @!attribute [rw] string_value
|
35
|
+
# @return [::String]
|
36
|
+
# A variable-length string value.
|
37
|
+
# @!attribute [rw] filter_type
|
38
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::DashboardFilter::FilterType]
|
39
|
+
# The specified filter type
|
40
|
+
class DashboardFilter
|
41
|
+
include ::Google::Protobuf::MessageExts
|
42
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
43
|
+
|
44
|
+
# The type for the dashboard filter
|
45
|
+
module FilterType
|
46
|
+
# Filter type is unspecified. This is not valid in a well-formed request.
|
47
|
+
FILTER_TYPE_UNSPECIFIED = 0
|
48
|
+
|
49
|
+
# Filter on a resource label value
|
50
|
+
RESOURCE_LABEL = 1
|
51
|
+
|
52
|
+
# Filter on a metrics label value
|
53
|
+
METRIC_LABEL = 2
|
54
|
+
|
55
|
+
# Filter on a user metadata label value
|
56
|
+
USER_METADATA_LABEL = 3
|
57
|
+
|
58
|
+
# Filter on a system metadata label value
|
59
|
+
SYSTEM_METADATA_LABEL = 4
|
60
|
+
|
61
|
+
# Filter on a group id
|
62
|
+
GROUP = 5
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Monitoring
|
23
|
+
module Dashboard
|
24
|
+
module V1
|
25
|
+
# A widget that displays a stream of log.
|
26
|
+
# @!attribute [rw] filter
|
27
|
+
# @return [::String]
|
28
|
+
# A filter that chooses which log entries to return. See [Advanced Logs
|
29
|
+
# Queries](https://cloud.google.com/logging/docs/view/advanced-queries).
|
30
|
+
# Only log entries that match the filter are returned. An empty filter
|
31
|
+
# matches all log entries.
|
32
|
+
# @!attribute [rw] resource_names
|
33
|
+
# @return [::Array<::String>]
|
34
|
+
# The names of logging resources to collect logs for. Currently only projects
|
35
|
+
# are supported. If empty, the widget will default to the host project.
|
36
|
+
class LogsPanel
|
37
|
+
include ::Google::Protobuf::MessageExts
|
38
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -129,6 +129,10 @@ module Google
|
|
129
129
|
# @return [::Google::Cloud::Monitoring::Dashboard::V1::Threshold::Direction]
|
130
130
|
# The direction for the current threshold. Direction is not allowed in a
|
131
131
|
# XyChart.
|
132
|
+
# @!attribute [rw] target_axis
|
133
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::Threshold::TargetAxis]
|
134
|
+
# The target axis to use for plotting the threshold. Target axis is not
|
135
|
+
# allowed in a Scorecard.
|
132
136
|
class Threshold
|
133
137
|
include ::Google::Protobuf::MessageExts
|
134
138
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -161,6 +165,18 @@ module Google
|
|
161
165
|
# the threshold value.
|
162
166
|
BELOW = 2
|
163
167
|
end
|
168
|
+
|
169
|
+
# An axis identifier.
|
170
|
+
module TargetAxis
|
171
|
+
# The target axis was not specified. Defaults to Y1.
|
172
|
+
TARGET_AXIS_UNSPECIFIED = 0
|
173
|
+
|
174
|
+
# The y_axis (the right axis of chart).
|
175
|
+
Y1 = 1
|
176
|
+
|
177
|
+
# The y2_axis (the left axis of chart).
|
178
|
+
Y2 = 2
|
179
|
+
end
|
164
180
|
end
|
165
181
|
|
166
182
|
# Defines the possible types of spark chart supported by the `Scorecard`.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Monitoring
|
23
|
+
module Dashboard
|
24
|
+
module V1
|
25
|
+
# A table that displays time series data.
|
26
|
+
# @!attribute [rw] data_sets
|
27
|
+
# @return [::Array<::Google::Cloud::Monitoring::Dashboard::V1::TimeSeriesTable::TableDataSet>]
|
28
|
+
# Required. The data displayed in this table.
|
29
|
+
class TimeSeriesTable
|
30
|
+
include ::Google::Protobuf::MessageExts
|
31
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
32
|
+
|
33
|
+
# Groups a time series query definition with table options.
|
34
|
+
# @!attribute [rw] time_series_query
|
35
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::TimeSeriesQuery]
|
36
|
+
# Required. Fields for querying time series data from the
|
37
|
+
# Stackdriver metrics API.
|
38
|
+
# @!attribute [rw] table_template
|
39
|
+
# @return [::String]
|
40
|
+
# Optional. A template string for naming `TimeSeries` in the resulting data set.
|
41
|
+
# This should be a string with interpolations of the form `${label_name}`,
|
42
|
+
# which will resolve to the label's value i.e.
|
43
|
+
# "$\\{resource.labels.project_id}."
|
44
|
+
# @!attribute [rw] min_alignment_period
|
45
|
+
# @return [::Google::Protobuf::Duration]
|
46
|
+
# Optional. The lower bound on data point frequency for this data set, implemented by
|
47
|
+
# specifying the minimum alignment period to use in a time series query
|
48
|
+
# For example, if the data is published once every 10 minutes, the
|
49
|
+
# `min_alignment_period` should be at least 10 minutes. It would not
|
50
|
+
# make sense to fetch and align data at one minute intervals.
|
51
|
+
# @!attribute [rw] table_display_options
|
52
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::TableDisplayOptions]
|
53
|
+
# Optional. Table display options for configuring how the table is rendered.
|
54
|
+
class TableDataSet
|
55
|
+
include ::Google::Protobuf::MessageExts
|
56
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Monitoring
|
23
|
+
module Dashboard
|
24
|
+
module V1
|
25
|
+
# Table display options that can be reused.
|
26
|
+
# @!attribute [rw] shown_columns
|
27
|
+
# @return [::Array<::String>]
|
28
|
+
# Optional. Columns to display in the table. Leave empty to display all available
|
29
|
+
# columns. Note: This field is for future features and is not currently used.
|
30
|
+
class TableDisplayOptions
|
31
|
+
include ::Google::Protobuf::MessageExts
|
32
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -42,6 +42,16 @@ module Google
|
|
42
42
|
# @!attribute [rw] alert_chart
|
43
43
|
# @return [::Google::Cloud::Monitoring::Dashboard::V1::AlertChart]
|
44
44
|
# A chart of alert policy data.
|
45
|
+
# @!attribute [rw] time_series_table
|
46
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::TimeSeriesTable]
|
47
|
+
# A widget that displays time series data in a tabular format.
|
48
|
+
# @!attribute [rw] collapsible_group
|
49
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::CollapsibleGroup]
|
50
|
+
# A widget that groups the other widgets. All widgets that are within
|
51
|
+
# the area spanned by the grouping widget are considered member widgets.
|
52
|
+
# @!attribute [rw] logs_panel
|
53
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::LogsPanel]
|
54
|
+
# A widget that shows a stream of logs.
|
45
55
|
class Widget
|
46
56
|
include ::Google::Protobuf::MessageExts
|
47
57
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -42,6 +42,9 @@ module Google
|
|
42
42
|
# @!attribute [rw] y_axis
|
43
43
|
# @return [::Google::Cloud::Monitoring::Dashboard::V1::XyChart::Axis]
|
44
44
|
# The properties applied to the Y axis.
|
45
|
+
# @!attribute [rw] y2_axis
|
46
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::XyChart::Axis]
|
47
|
+
# The properties applied to the Y2 axis.
|
45
48
|
# @!attribute [rw] chart_options
|
46
49
|
# @return [::Google::Cloud::Monitoring::Dashboard::V1::ChartOptions]
|
47
50
|
# Display options for the chart.
|
@@ -69,6 +72,9 @@ module Google
|
|
69
72
|
# For example, if the data is published once every 10 minutes, the
|
70
73
|
# `min_alignment_period` should be at least 10 minutes. It would not
|
71
74
|
# make sense to fetch and align data at one minute intervals.
|
75
|
+
# @!attribute [rw] target_axis
|
76
|
+
# @return [::Google::Cloud::Monitoring::Dashboard::V1::XyChart::DataSet::TargetAxis]
|
77
|
+
# Optional. The target axis to use for plotting the metric.
|
72
78
|
class DataSet
|
73
79
|
include ::Google::Protobuf::MessageExts
|
74
80
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -99,6 +105,18 @@ module Google
|
|
99
105
|
# Stackdriver Monitoring application.
|
100
106
|
HEATMAP = 4
|
101
107
|
end
|
108
|
+
|
109
|
+
# An axis identifier.
|
110
|
+
module TargetAxis
|
111
|
+
# The target axis was not specified. Defaults to Y1.
|
112
|
+
TARGET_AXIS_UNSPECIFIED = 0
|
113
|
+
|
114
|
+
# The y_axis (the right axis of chart).
|
115
|
+
Y1 = 1
|
116
|
+
|
117
|
+
# The y2_axis (the left axis of chart).
|
118
|
+
Y2 = 2
|
119
|
+
end
|
102
120
|
end
|
103
121
|
|
104
122
|
# A chart axis.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-monitoring-dashboard-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.10'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.10'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,28 +50,28 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.
|
53
|
+
version: 1.26.1
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.
|
60
|
+
version: 1.26.1
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version: '5.
|
67
|
+
version: '5.16'
|
68
68
|
type: :development
|
69
69
|
prerelease: false
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '5.
|
74
|
+
version: '5.16'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: minitest-focus
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '13.0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '13.0'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: redcarpet
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,37 +178,43 @@ files:
|
|
178
178
|
- lib/google/cloud/monitoring/dashboard/v1/dashboards_service/paths.rb
|
179
179
|
- lib/google/cloud/monitoring/dashboard/v1/version.rb
|
180
180
|
- lib/google/monitoring/dashboard/v1/alertchart_pb.rb
|
181
|
+
- lib/google/monitoring/dashboard/v1/collapsible_group_pb.rb
|
181
182
|
- lib/google/monitoring/dashboard/v1/common_pb.rb
|
183
|
+
- lib/google/monitoring/dashboard/v1/dashboard_filter_pb.rb
|
182
184
|
- lib/google/monitoring/dashboard/v1/dashboard_pb.rb
|
183
185
|
- lib/google/monitoring/dashboard/v1/dashboards_service_pb.rb
|
184
186
|
- lib/google/monitoring/dashboard/v1/dashboards_service_services_pb.rb
|
185
187
|
- lib/google/monitoring/dashboard/v1/drilldowns_pb.rb
|
186
188
|
- lib/google/monitoring/dashboard/v1/layouts_pb.rb
|
189
|
+
- lib/google/monitoring/dashboard/v1/logs_panel_pb.rb
|
187
190
|
- lib/google/monitoring/dashboard/v1/metrics_pb.rb
|
188
191
|
- lib/google/monitoring/dashboard/v1/scorecard_pb.rb
|
189
192
|
- lib/google/monitoring/dashboard/v1/service_pb.rb
|
193
|
+
- lib/google/monitoring/dashboard/v1/table_display_options_pb.rb
|
194
|
+
- lib/google/monitoring/dashboard/v1/table_pb.rb
|
190
195
|
- lib/google/monitoring/dashboard/v1/text_pb.rb
|
191
196
|
- lib/google/monitoring/dashboard/v1/widget_pb.rb
|
192
197
|
- lib/google/monitoring/dashboard/v1/xychart_pb.rb
|
193
198
|
- proto_docs/README.md
|
194
|
-
- proto_docs/google/api/distribution.rb
|
195
199
|
- proto_docs/google/api/field_behavior.rb
|
196
200
|
- proto_docs/google/api/resource.rb
|
197
201
|
- proto_docs/google/monitoring/dashboard/v1/alertchart.rb
|
202
|
+
- proto_docs/google/monitoring/dashboard/v1/collapsible_group.rb
|
198
203
|
- proto_docs/google/monitoring/dashboard/v1/common.rb
|
199
204
|
- proto_docs/google/monitoring/dashboard/v1/dashboard.rb
|
205
|
+
- proto_docs/google/monitoring/dashboard/v1/dashboard_filter.rb
|
200
206
|
- proto_docs/google/monitoring/dashboard/v1/dashboards_service.rb
|
201
207
|
- proto_docs/google/monitoring/dashboard/v1/layouts.rb
|
208
|
+
- proto_docs/google/monitoring/dashboard/v1/logs_panel.rb
|
202
209
|
- proto_docs/google/monitoring/dashboard/v1/metrics.rb
|
203
210
|
- proto_docs/google/monitoring/dashboard/v1/scorecard.rb
|
211
|
+
- proto_docs/google/monitoring/dashboard/v1/table.rb
|
212
|
+
- proto_docs/google/monitoring/dashboard/v1/table_display_options.rb
|
204
213
|
- proto_docs/google/monitoring/dashboard/v1/text.rb
|
205
214
|
- proto_docs/google/monitoring/dashboard/v1/widget.rb
|
206
215
|
- proto_docs/google/monitoring/dashboard/v1/xychart.rb
|
207
|
-
- proto_docs/google/protobuf/any.rb
|
208
216
|
- proto_docs/google/protobuf/duration.rb
|
209
217
|
- proto_docs/google/protobuf/empty.rb
|
210
|
-
- proto_docs/google/protobuf/field_mask.rb
|
211
|
-
- proto_docs/google/protobuf/timestamp.rb
|
212
218
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
213
219
|
licenses:
|
214
220
|
- Apache-2.0
|
@@ -221,14 +227,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
227
|
requirements:
|
222
228
|
- - ">="
|
223
229
|
- !ruby/object:Gem::Version
|
224
|
-
version: '2.
|
230
|
+
version: '2.6'
|
225
231
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
232
|
requirements:
|
227
233
|
- - ">="
|
228
234
|
- !ruby/object:Gem::Version
|
229
235
|
version: '0'
|
230
236
|
requirements: []
|
231
|
-
rubygems_version: 3.
|
237
|
+
rubygems_version: 3.3.14
|
232
238
|
signing_key:
|
233
239
|
specification_version: 4
|
234
240
|
summary: API Client library for the Cloud Monitoring Dashboards V1 API
|