google-cloud-logging 1.10.3 → 1.10.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e536a1a61e80bd9d14881363541842d39cc6465369597baa88346ba56dcca499
4
- data.tar.gz: ac7fe938c22e288542c929aeedbabfdb576a6ae8a5c73063c920d38439eccee1
3
+ metadata.gz: 2c44ea43caa6da57f944c25da29cb76c70b99805fbf517f36273e290f39e51a1
4
+ data.tar.gz: 9d4b2142b4713362151659a8af7b959be1950fe895254500a300052655e7c228
5
5
  SHA512:
6
- metadata.gz: 57cff6ce9a472eaf8d1c2b2baad5064ad04fab5c7323f8177615f94b7c6bcac1bcee3b6310d39a8a88079b875cfba823845a3ea24df0aa2c0b4bbc1abe7629de
7
- data.tar.gz: faaaf3fba6d9c4e613189903d314b465cda55588e9f9cb23ba8f84c0c468fad19cb493fb8a72bd6d4b6b739553865f324d495b3cb5ac981b23199cd45270cfe3
6
+ metadata.gz: 6544f6f25befee91e60d009685797fab479c77d2d679584b35965bea7a44c536efe77a9bb8b68340719937371030129f018eb5fdff34221bff58752ceb98e240
7
+ data.tar.gz: c1219e8155a148df9874c5ddb6b0b03b9365b358f3bf3e855beebc9da6acc5307679a8c4c4c387350e8a9169b3a45eb67d0731e297c0c120033831018ff74fec
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 1.10.4 / 2020-04-20
4
+
5
+ #### Documentation
6
+
7
+ * Fix some broken links in the Project and Sink docs
8
+
3
9
  ### 1.10.3 / 2020-04-06
4
10
 
5
11
  #### Documentation
@@ -515,7 +515,7 @@ module Google
515
515
  # Retrieves the list of monitored resource descriptors that are used by
516
516
  # Stackdriver Logging.
517
517
  #
518
- # @see https://cloud.google.com/logging/docs/api/introduction_v2#monitored_resources
518
+ # @see https://cloud.google.com/logging/docs/api/v2/resource-list
519
519
  # Monitored Resources
520
520
  #
521
521
  # @param [String] token A previously-returned page token representing
@@ -621,18 +621,15 @@ module Google
621
621
  # does not send previously-ingested log entries to the sink's
622
622
  # destination.
623
623
  #
624
- # Before creating the sink, ensure that you have granted
625
- # `cloud-logs@google.com` permission to write logs to the destination.
626
- # See [Permissions for writing exported
627
- # logs](https://cloud.google.com/logging/docs/export/configure_export#setting_product_name_short_permissions_for_writing_exported_logs).
628
- #
629
- # @see https://cloud.google.com/logging/docs/api/tasks/exporting-logs
630
- # Exporting Logs With Sinks
631
- # @see https://cloud.google.com/logging/docs/api/introduction_v2#kinds_of_log_sinks
632
- # Kinds of log sinks (API V2)
633
- # @see https://cloud.google.com/logging/docs/api/#sinks Sinks (API V1)
634
- # @see https://cloud.google.com/logging/docs/export/configure_export#setting_product_name_short_permissions_for_writing_exported_logs
635
- # Permissions for writing exported logs
624
+ # Before creating the sink, ensure that you have granted the sink's
625
+ # _unique writer identity_ permission to write logs to the destination.
626
+ # See [Destination
627
+ # permissions](https://cloud.google.com/logging/docs/export/configure_export_v2#dest-auth).
628
+ #
629
+ # @see https://cloud.google.com/logging/docs/export
630
+ # Overview of logs exports
631
+ # @see https://cloud.google.com/logging/docs/reference/v2/rpc/google.logging.v2#configservicev2
632
+ # ConfigService API which includes sink methods
636
633
  #
637
634
  # @overload create_sink(name, destination, filter: nil, unique_writer_identity: nil)
638
635
  # @param [String] name The client-assigned sink identifier. Sink
@@ -27,20 +27,17 @@ module Google
27
27
  #
28
28
  # A logs filter controls which log entries are exported.
29
29
  #
30
- # Before creating the sink, ensure that you have granted
31
- # `cloud-logs@google.com` permission to write logs to the destination. See
32
- # [Permissions for writing exported
33
- # logs](https://cloud.google.com/logging/docs/export/configure_export#setting_product_name_short_permissions_for_writing_exported_logs).
30
+ # Before creating the sink, ensure that you have granted the sink's
31
+ # _unique writer identity_ permission to write logs to the destination.
32
+ # See [Destination
33
+ # permissions](https://cloud.google.com/logging/docs/export/configure_export_v2#dest-auth).
34
34
  #
35
35
  # You can retrieve an existing sink with {Project#sink}.
36
36
  #
37
- # @see https://cloud.google.com/logging/docs/api/tasks/exporting-logs
38
- # Exporting Logs With Sinks
39
- # @see https://cloud.google.com/logging/docs/api/introduction_v2#kinds_of_log_sinks
40
- # Kinds of log sinks (API V2)
41
- # @see https://cloud.google.com/logging/docs/api/#sinks Sinks (API V1)
42
- # @see https://cloud.google.com/logging/docs/export/configure_export#setting_product_name_short_permissions_for_writing_exported_logs
43
- # Permissions for writing exported logs
37
+ # @see https://cloud.google.com/logging/docs/export
38
+ # Overview of logs exports
39
+ # @see https://cloud.google.com/logging/docs/reference/v2/rpc/google.logging.v2#configservicev2
40
+ # ConfigService API which includes sink methods
44
41
  #
45
42
  # @example
46
43
  # require "google/cloud/storage"
@@ -83,22 +80,22 @@ module Google
83
80
  end
84
81
 
85
82
  ##
86
- # The export destination. See [Exporting Logs With
87
- # Sinks](https://cloud.google.com/logging/docs/api/tasks/exporting-logs).
83
+ # The export destination. See [Properties of
84
+ # Sinks](https://cloud.google.com/logging/docs/export#sink-terms).
88
85
  def destination
89
86
  @grpc.destination
90
87
  end
91
88
 
92
89
  ##
93
- # Updates the export destination. See [Exporting Logs With
94
- # Sinks](https://cloud.google.com/logging/docs/api/tasks/exporting-logs).
90
+ # Updates the export destination. See [Properties of
91
+ # Sinks](https://cloud.google.com/logging/docs/export#sink-terms).
95
92
  def destination= destination
96
93
  @grpc.destination = destination
97
94
  end
98
95
 
99
96
  ##
100
97
  # An [advanced logs
101
- # filter](https://cloud.google.com/logging/docs/view/advanced_filters)
98
+ # filter](https://cloud.google.com/logging/docs/view/advanced-queries)
102
99
  # that defines the log entries to be exported. The filter must be
103
100
  # consistent with the log entry format designed by the `version`
104
101
  # parameter, regardless of the format of the log entry that was
@@ -109,7 +106,7 @@ module Google
109
106
 
110
107
  ##
111
108
  # Updates the [advanced logs
112
- # filter](https://cloud.google.com/logging/docs/view/advanced_filters)
109
+ # filter](https://cloud.google.com/logging/docs/view/advanced-queries)
113
110
  # that defines the log entries to be exported. The filter must be
114
111
  # consistent with the log entry format designed by the `version`
115
112
  # parameter, regardless of the format of the log entry that was
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Logging
19
- VERSION = "1.10.3".freeze
19
+ VERSION = "1.10.4".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3
4
+ version: 1.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-04-06 00:00:00.000000000 Z
12
+ date: 2020-04-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core