google-cloud-error_reporting 0.35.1 → 0.35.2
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/CHANGELOG.md +6 -0
- data/TROUBLESHOOTING.md +2 -8
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/common.rb +1 -1
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/error_group_service.rb +5 -7
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service_client.rb +5 -7
- data/lib/google/cloud/error_reporting/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1310d85b13af53a81f9169eb31f7d9b1629964aadac7d2cd1b0cf12c87160354
|
|
4
|
+
data.tar.gz: c90692577531e1d69b83d31d72929724233cee7e8f2fdb8761094cbbfbd75552
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b47ead95a38b2d5a16ba8755cbe3a8d5fba2550e24fefc83f99c4bf357eaedeffe21d10a45baa36764c2395ea7001496f3a42e129436207ae8e81ce3982e6f6d
|
|
7
|
+
data.tar.gz: 41ab14e7ef0be79a9dab3cbf4b4db462c4ebc3234a9c5c8b362741b93e342df75bea22ce4dbf090f822177cf9d2a0b8db02610e9817338a136fdde2b5530b4cb
|
data/CHANGELOG.md
CHANGED
data/TROUBLESHOOTING.md
CHANGED
|
@@ -24,14 +24,8 @@ improved, *please* create a new issue on GitHub so we can talk about it.
|
|
|
24
24
|
|
|
25
25
|
- [New issue][gh-ruby]
|
|
26
26
|
|
|
27
|
-
Or, you can ask questions on the [Google Cloud Platform Slack][slack-ruby]. You
|
|
28
|
-
can use the "ruby" channel for general Ruby questions, or use the
|
|
29
|
-
"google-cloud-ruby" channel if you have questions about this gem in particular.
|
|
30
|
-
|
|
31
27
|
[so-ruby]: http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby+errorreporting
|
|
32
28
|
|
|
33
|
-
[gh-search-ruby]: https://github.com/
|
|
34
|
-
|
|
35
|
-
[gh-ruby]: https://github.com/googlecloudplatform/google-cloud-ruby/issues/new
|
|
29
|
+
[gh-search-ruby]: https://github.com/googleapis/google-cloud-ruby/issues?q=label%3A%22api%3A+error+reporting%22
|
|
36
30
|
|
|
37
|
-
[
|
|
31
|
+
[gh-ruby]: https://github.com/googleapis/google-cloud-ruby/issues/new
|
|
@@ -35,7 +35,7 @@ module Google
|
|
|
35
35
|
# @!attribute [rw] url
|
|
36
36
|
# @return [String]
|
|
37
37
|
# A URL pointing to a related entry in an issue tracking system.
|
|
38
|
-
# Example: https://github.com/user/project/issues/4
|
|
38
|
+
# Example: `https://github.com/user/project/issues/4`
|
|
39
39
|
class TrackingIssue; end
|
|
40
40
|
|
|
41
41
|
# An error event which is returned by the Error Reporting system.
|
|
@@ -20,14 +20,12 @@ module Google
|
|
|
20
20
|
# A request to return an individual group.
|
|
21
21
|
# @!attribute [rw] group_name
|
|
22
22
|
# @return [String]
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
# <code>groupStats.list</code></a> to return a list of groups belonging to
|
|
28
|
-
# this project.
|
|
23
|
+
# The group resource name. Written as
|
|
24
|
+
# `projects/{projectID}/groups/{group_name}`. Call
|
|
25
|
+
# [`groupStats.list`](https://cloud.google.com/error-reporting/reference/rest/v1beta1/projects.groupStats/list)
|
|
26
|
+
# to return a list of groups belonging to this project.
|
|
29
27
|
#
|
|
30
|
-
# Example:
|
|
28
|
+
# Example: `projects/my-project-123/groups/my-group`
|
|
31
29
|
class GetGroupRequest; end
|
|
32
30
|
|
|
33
31
|
# A request to replace the existing data for the given group.
|
|
@@ -245,14 +245,12 @@ module Google
|
|
|
245
245
|
# Get the specified group.
|
|
246
246
|
#
|
|
247
247
|
# @param group_name [String]
|
|
248
|
-
#
|
|
249
|
-
#
|
|
250
|
-
#
|
|
251
|
-
#
|
|
252
|
-
# <code>groupStats.list</code></a> to return a list of groups belonging to
|
|
253
|
-
# this project.
|
|
248
|
+
# The group resource name. Written as
|
|
249
|
+
# `projects/{projectID}/groups/{group_name}`. Call
|
|
250
|
+
# [`groupStats.list`](https://cloud.google.com/error-reporting/reference/rest/v1beta1/projects.groupStats/list)
|
|
251
|
+
# to return a list of groups belonging to this project.
|
|
254
252
|
#
|
|
255
|
-
# Example:
|
|
253
|
+
# Example: `projects/my-project-123/groups/my-group`
|
|
256
254
|
# @param options [Google::Gax::CallOptions]
|
|
257
255
|
# Overrides the default settings for this call, e.g, timeout,
|
|
258
256
|
# retries, etc.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-error_reporting
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.35.
|
|
4
|
+
version: 0.35.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-cloud-core
|
|
@@ -328,7 +328,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
328
328
|
- !ruby/object:Gem::Version
|
|
329
329
|
version: '0'
|
|
330
330
|
requirements: []
|
|
331
|
-
rubygems_version: 3.
|
|
331
|
+
rubygems_version: 3.1.3
|
|
332
332
|
signing_key:
|
|
333
333
|
specification_version: 4
|
|
334
334
|
summary: API Client library for Stackdriver Error Reporting
|