google-cloud-error_reporting 0.35.1 → 0.35.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd92a22880c3114d8f42f7775bf6f9228df5792003695abf87b1585ff444e9de
4
- data.tar.gz: 4994826f7e936045ae14e83e9638ec93914b2c5ee7662175bade841148345686
3
+ metadata.gz: 1310d85b13af53a81f9169eb31f7d9b1629964aadac7d2cd1b0cf12c87160354
4
+ data.tar.gz: c90692577531e1d69b83d31d72929724233cee7e8f2fdb8761094cbbfbd75552
5
5
  SHA512:
6
- metadata.gz: 2ffc32db0e8af46a433faaa1e17fed57918751a68e8944266fa6bcb4739afce354128bb13e0b7a411cec1bb55c17001a89b83fd70209ca89f5347251a9a66403
7
- data.tar.gz: 136843593958bc0b8c6846787406c71f0291e9e5e47fb73f7b34e384c29462f755dfe47359cf24d6186be3b917a3f1c7449973cdf2100ff143beae4ed4b7bc66
6
+ metadata.gz: b47ead95a38b2d5a16ba8755cbe3a8d5fba2550e24fefc83f99c4bf357eaedeffe21d10a45baa36764c2395ea7001496f3a42e129436207ae8e81ce3982e6f6d
7
+ data.tar.gz: 41ab14e7ef0be79a9dab3cbf4b4db462c4ebc3234a9c5c8b362741b93e342df75bea22ce4dbf090f822177cf9d2a0b8db02610e9817338a136fdde2b5530b4cb
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.35.2 / 2020-06-08
4
+
5
+ #### Documentation
6
+
7
+ * Fixed broken links in the reference documentation
8
+
3
9
  ### 0.35.1 / 2020-05-19
4
10
 
5
11
  #### Bug Fixes
@@ -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/googlecloudplatform/google-cloud-ruby/issues?q=label%3A%22api%3A+error+reporting%22
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
- [slack-ruby]: https://gcp-slack.appspot.com/
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
- # Required. The group resource name. Written as
24
- # <code>projects/<var>projectID</var>/groups/<var>group_name</var></code>.
25
- # Call
26
- # <a href="/error-reporting/reference/rest/v1beta1/projects.groupStats/list">
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: <code>projects/my-project-123/groups/my-group</code>
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
- # Required. The group resource name. Written as
249
- # <code>projects/<var>projectID</var>/groups/<var>group_name</var></code>.
250
- # Call
251
- # <a href="/error-reporting/reference/rest/v1beta1/projects.groupStats/list">
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: <code>projects/my-project-123/groups/my-group</code>
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.
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module ErrorReporting
19
- VERSION = "0.35.1".freeze
19
+ VERSION = "0.35.2".freeze
20
20
  end
21
21
  end
22
22
  end
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.1
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-05-19 00:00:00.000000000 Z
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.0.6
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