google-cloud-monitoring-dashboard-v1 0.9.1 → 0.11.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/README.md +1 -1
- data/lib/google/cloud/monitoring/dashboard/v1/dashboards_service/client.rb +10 -8
- data/lib/google/cloud/monitoring/dashboard/v1/dashboards_service/rest/client.rb +683 -0
- data/lib/google/cloud/monitoring/dashboard/v1/dashboards_service/rest/service_stub.rb +347 -0
- data/lib/google/cloud/monitoring/dashboard/v1/dashboards_service/rest.rb +55 -0
- data/lib/google/cloud/monitoring/dashboard/v1/dashboards_service.rb +7 -1
- data/lib/google/cloud/monitoring/dashboard/v1/rest.rb +39 -0
- data/lib/google/cloud/monitoring/dashboard/v1/version.rb +1 -1
- data/lib/google/cloud/monitoring/dashboard/v1.rb +7 -2
- data/lib/google/monitoring/dashboard/v1/dashboards_service_services_pb.rb +6 -2
- data/lib/google/monitoring/dashboard/v1/table_pb.rb +13 -0
- data/proto_docs/google/monitoring/dashboard/v1/metrics.rb +3 -2
- data/proto_docs/google/monitoring/dashboard/v1/table.rb +39 -8
- data/proto_docs/google/monitoring/dashboard/v1/xychart.rb +4 -4
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 834738583afd3b562ac26caee728ef7bc8c869d4df3ed557e32214257e26c4b0
|
4
|
+
data.tar.gz: c7000214d87afcd3d22de839d9d5f69ad6ea25720b913714e0f0fec470b5a006
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cd91046136fd564994c8958801c5cc66833a50fadcdb1b0c6c82ffa3bc4ce9a1b3d3b8d2e32b0c42106427c5d6bbc52c6cd4c59dfa6623d52f1cda956b91282
|
7
|
+
data.tar.gz: 83cecc2a72d9d9b3d59c3b05f93160deb61e4c74807b0a335f691828ad575d95e082be04c2eac1cc3accf8714da127de08802f86a6ed172e7687f410bf93b649
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Cloud Monitoring Dashboards V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Manages your Cloud Monitoring data and configurations.
|
4
4
|
|
5
5
|
Cloud Monitoring collects metrics, events, and metadata from Google Cloud, Amazon Web Services (AWS), hosted uptime probes, and application instrumentation. The Dashboards API manages arrangements of display widgets.
|
6
6
|
|
@@ -158,8 +158,12 @@ module Google
|
|
158
158
|
# Service calls
|
159
159
|
|
160
160
|
##
|
161
|
-
# Creates a new custom dashboard. For examples on how you can use this API to
|
162
|
-
#
|
161
|
+
# Creates a new custom dashboard. For examples on how you can use this API to
|
162
|
+
# create dashboards, see [Managing dashboards by
|
163
|
+
# API](https://cloud.google.com/monitoring/dashboards/api-dashboard). This
|
164
|
+
# method requires the `monitoring.dashboards.create` permission on the
|
165
|
+
# specified project. For more information about permissions, see [Cloud
|
166
|
+
# Identity and Access Management](https://cloud.google.com/iam).
|
163
167
|
#
|
164
168
|
# @overload create_dashboard(request, options = nil)
|
165
169
|
# Pass arguments to `create_dashboard` via a request object, either of type
|
@@ -306,13 +310,11 @@ module Google
|
|
306
310
|
# # Call the list_dashboards method.
|
307
311
|
# result = client.list_dashboards request
|
308
312
|
#
|
309
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
310
|
-
# #
|
311
|
-
#
|
312
|
-
# # methods are also available for managing paging directly.
|
313
|
-
# result.each do |response|
|
313
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
314
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
315
|
+
# result.each do |item|
|
314
316
|
# # Each element is of type ::Google::Cloud::Monitoring::Dashboard::V1::Dashboard.
|
315
|
-
# p
|
317
|
+
# p item
|
316
318
|
# end
|
317
319
|
#
|
318
320
|
def list_dashboards request, options = nil
|