google-cloud-logging 1.6.3 → 1.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/google/cloud/logging/v2/config_service_v2_client.rb +2 -1
- data/lib/google/cloud/logging/v2/doc/google/api/metric.rb +4 -0
- data/lib/google/cloud/logging/v2/doc/google/api/monitored_resource.rb +3 -0
- data/lib/google/cloud/logging/v2/logging_service_v2_client.rb +2 -1
- data/lib/google/cloud/logging/v2/metrics_service_v2_client.rb +2 -1
- data/lib/google/cloud/logging/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 960bf93ff65f7cd4f6e2b15f66e77c56c3cc530081a65db12232912e895d8223
|
4
|
+
data.tar.gz: 60efccf3953c324d5a9e9a86999ac3f5c356f6949fca50820b6ed7ccb922dc43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89954e4b30a4b8996980143299e76c48ce8e0d94c76eb090fb371c530dbd18fb78bb483efdc0c832c082a2a3400d8f9e568289767bec1de1d50f7d1fe6ed048b
|
7
|
+
data.tar.gz: 25c3b1ead5c766cdd53f05d42c706a18ee6bd6e4e6672d4c51c361993a109962ae728156ca42f195142ba97833ab631efdbdd50f2db76310ee213c62124ce70b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 1.6.4 / 2019-06-11
|
4
|
+
|
5
|
+
* Add documentation for MetricDescriptor#launch_stage and
|
6
|
+
MonitoredResourceDescriptor#launch_stage.
|
7
|
+
* Deprecate MetricDescriptor:: MetricDescriptorMetadata#launch_stage
|
8
|
+
* Use VERSION constant in GAPIC client
|
9
|
+
|
3
10
|
### 1.6.3 / 2019-04-29
|
4
11
|
|
5
12
|
* Add AUTHENTICATION.md guide.
|
@@ -27,6 +27,7 @@ require "google/gax"
|
|
27
27
|
|
28
28
|
require "google/logging/v2/logging_config_pb"
|
29
29
|
require "google/cloud/logging/v2/credentials"
|
30
|
+
require "google/cloud/logging/version"
|
30
31
|
|
31
32
|
module Google
|
32
33
|
module Cloud
|
@@ -187,7 +188,7 @@ module Google
|
|
187
188
|
updater_proc = credentials.updater_proc
|
188
189
|
end
|
189
190
|
|
190
|
-
package_version =
|
191
|
+
package_version = Google::Cloud::Logging::VERSION
|
191
192
|
|
192
193
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
193
194
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
@@ -126,10 +126,14 @@ module Google
|
|
126
126
|
# @!attribute [rw] metadata
|
127
127
|
# @return [Google::Api::MetricDescriptor::MetricDescriptorMetadata]
|
128
128
|
# Optional. Metadata which can be used to guide usage of the metric.
|
129
|
+
# @!attribute [rw] launch_stage
|
130
|
+
# @return [Google::Api::LaunchStage]
|
131
|
+
# Optional. The launch stage of the metric definition.
|
129
132
|
class MetricDescriptor
|
130
133
|
# Additional annotations that can be used to guide the usage of a metric.
|
131
134
|
# @!attribute [rw] launch_stage
|
132
135
|
# @return [Google::Api::LaunchStage]
|
136
|
+
# Deprecated. Please use the MetricDescriptor.launch_stage instead.
|
133
137
|
# The launch stage of the metric definition.
|
134
138
|
# @!attribute [rw] sample_period
|
135
139
|
# @return [Google::Protobuf::Duration]
|
@@ -52,6 +52,9 @@ module Google
|
|
52
52
|
# Required. A set of labels used to describe instances of this monitored
|
53
53
|
# resource type. For example, an individual Google Cloud SQL database is
|
54
54
|
# identified by values for the labels `"database_id"` and `"zone"`.
|
55
|
+
# @!attribute [rw] launch_stage
|
56
|
+
# @return [Google::Api::LaunchStage]
|
57
|
+
# Optional. The launch stage of the monitored resource definition.
|
55
58
|
class MonitoredResourceDescriptor; end
|
56
59
|
|
57
60
|
# An object representing a resource that can be used for monitoring, logging,
|
@@ -27,6 +27,7 @@ require "google/gax"
|
|
27
27
|
|
28
28
|
require "google/logging/v2/logging_pb"
|
29
29
|
require "google/cloud/logging/v2/credentials"
|
30
|
+
require "google/cloud/logging/version"
|
30
31
|
|
31
32
|
module Google
|
32
33
|
module Cloud
|
@@ -185,7 +186,7 @@ module Google
|
|
185
186
|
updater_proc = credentials.updater_proc
|
186
187
|
end
|
187
188
|
|
188
|
-
package_version =
|
189
|
+
package_version = Google::Cloud::Logging::VERSION
|
189
190
|
|
190
191
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
191
192
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
@@ -27,6 +27,7 @@ require "google/gax"
|
|
27
27
|
|
28
28
|
require "google/logging/v2/logging_metrics_pb"
|
29
29
|
require "google/cloud/logging/v2/credentials"
|
30
|
+
require "google/cloud/logging/version"
|
30
31
|
|
31
32
|
module Google
|
32
33
|
module Cloud
|
@@ -165,7 +166,7 @@ module Google
|
|
165
166
|
updater_proc = credentials.updater_proc
|
166
167
|
end
|
167
168
|
|
168
|
-
package_version =
|
169
|
+
package_version = Google::Cloud::Logging::VERSION
|
169
170
|
|
170
171
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
171
172
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
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.6.
|
4
|
+
version: 1.6.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: 2019-
|
12
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: google-cloud-core
|