google-cloud-logging 0.20.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 +7 -0
- data/lib/google-cloud-logging.rb +119 -0
- data/lib/google/cloud/logging.rb +293 -0
- data/lib/google/cloud/logging/credentials.rb +31 -0
- data/lib/google/cloud/logging/entry.rb +469 -0
- data/lib/google/cloud/logging/entry/http_request.rb +145 -0
- data/lib/google/cloud/logging/entry/list.rb +180 -0
- data/lib/google/cloud/logging/entry/operation.rb +92 -0
- data/lib/google/cloud/logging/logger.rb +309 -0
- data/lib/google/cloud/logging/metric.rb +172 -0
- data/lib/google/cloud/logging/metric/list.rb +175 -0
- data/lib/google/cloud/logging/project.rb +650 -0
- data/lib/google/cloud/logging/resource.rb +86 -0
- data/lib/google/cloud/logging/resource_descriptor.rb +139 -0
- data/lib/google/cloud/logging/resource_descriptor/list.rb +179 -0
- data/lib/google/cloud/logging/service.rb +270 -0
- data/lib/google/cloud/logging/sink.rb +230 -0
- data/lib/google/cloud/logging/sink/list.rb +173 -0
- data/lib/google/cloud/logging/v2.rb +17 -0
- data/lib/google/cloud/logging/v2/config_service_v2_api.rb +331 -0
- data/lib/google/cloud/logging/v2/config_service_v2_client_config.json +53 -0
- data/lib/google/cloud/logging/v2/logging_service_v2_api.rb +351 -0
- data/lib/google/cloud/logging/v2/logging_service_v2_client_config.json +57 -0
- data/lib/google/cloud/logging/v2/metrics_service_v2_api.rb +330 -0
- data/lib/google/cloud/logging/v2/metrics_service_v2_client_config.json +53 -0
- data/lib/google/cloud/logging/version.rb +22 -0
- data/lib/google/logging/v2/log_entry_pb.rb +44 -0
- data/lib/google/logging/v2/logging_config_pb.rb +59 -0
- data/lib/google/logging/v2/logging_config_services_pb.rb +52 -0
- data/lib/google/logging/v2/logging_metrics_pb.rb +51 -0
- data/lib/google/logging/v2/logging_metrics_services_pb.rb +51 -0
- data/lib/google/logging/v2/logging_pb.rb +59 -0
- data/lib/google/logging/v2/logging_services_pb.rb +56 -0
- metadata +260 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/logging/v2/logging_config.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/protobuf/empty_pb'
|
8
|
+
require 'google/protobuf/timestamp_pb'
|
9
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
+
add_message "google.logging.v2.LogSink" do
|
11
|
+
optional :name, :string, 1
|
12
|
+
optional :destination, :string, 3
|
13
|
+
optional :filter, :string, 5
|
14
|
+
optional :output_version_format, :enum, 6, "google.logging.v2.LogSink.VersionFormat"
|
15
|
+
end
|
16
|
+
add_enum "google.logging.v2.LogSink.VersionFormat" do
|
17
|
+
value :VERSION_FORMAT_UNSPECIFIED, 0
|
18
|
+
value :V2, 1
|
19
|
+
value :V1, 2
|
20
|
+
end
|
21
|
+
add_message "google.logging.v2.ListSinksRequest" do
|
22
|
+
optional :parent, :string, 1
|
23
|
+
optional :page_token, :string, 2
|
24
|
+
optional :page_size, :int32, 3
|
25
|
+
end
|
26
|
+
add_message "google.logging.v2.ListSinksResponse" do
|
27
|
+
repeated :sinks, :message, 1, "google.logging.v2.LogSink"
|
28
|
+
optional :next_page_token, :string, 2
|
29
|
+
end
|
30
|
+
add_message "google.logging.v2.GetSinkRequest" do
|
31
|
+
optional :sink_name, :string, 1
|
32
|
+
end
|
33
|
+
add_message "google.logging.v2.CreateSinkRequest" do
|
34
|
+
optional :parent, :string, 1
|
35
|
+
optional :sink, :message, 2, "google.logging.v2.LogSink"
|
36
|
+
end
|
37
|
+
add_message "google.logging.v2.UpdateSinkRequest" do
|
38
|
+
optional :sink_name, :string, 1
|
39
|
+
optional :sink, :message, 2, "google.logging.v2.LogSink"
|
40
|
+
end
|
41
|
+
add_message "google.logging.v2.DeleteSinkRequest" do
|
42
|
+
optional :sink_name, :string, 1
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
module Google
|
47
|
+
module Logging
|
48
|
+
module V2
|
49
|
+
LogSink = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogSink").msgclass
|
50
|
+
LogSink::VersionFormat = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogSink.VersionFormat").enummodule
|
51
|
+
ListSinksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListSinksRequest").msgclass
|
52
|
+
ListSinksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListSinksResponse").msgclass
|
53
|
+
GetSinkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.GetSinkRequest").msgclass
|
54
|
+
CreateSinkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CreateSinkRequest").msgclass
|
55
|
+
UpdateSinkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.UpdateSinkRequest").msgclass
|
56
|
+
DeleteSinkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.DeleteSinkRequest").msgclass
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/logging/v2/logging_config.proto for package 'google.logging.v2'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2016 Google Inc.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/logging/v2/logging_config_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Logging
|
24
|
+
module V2
|
25
|
+
module ConfigServiceV2
|
26
|
+
# Service for configuring sinks used to export log entries outside Stackdriver
|
27
|
+
# Logging.
|
28
|
+
class Service
|
29
|
+
|
30
|
+
include GRPC::GenericService
|
31
|
+
|
32
|
+
self.marshal_class_method = :encode
|
33
|
+
self.unmarshal_class_method = :decode
|
34
|
+
self.service_name = 'google.logging.v2.ConfigServiceV2'
|
35
|
+
|
36
|
+
# Lists sinks.
|
37
|
+
rpc :ListSinks, ListSinksRequest, ListSinksResponse
|
38
|
+
# Gets a sink.
|
39
|
+
rpc :GetSink, GetSinkRequest, LogSink
|
40
|
+
# Creates a sink.
|
41
|
+
rpc :CreateSink, CreateSinkRequest, LogSink
|
42
|
+
# Creates or updates a sink.
|
43
|
+
rpc :UpdateSink, UpdateSinkRequest, LogSink
|
44
|
+
# Deletes a sink.
|
45
|
+
rpc :DeleteSink, DeleteSinkRequest, Google::Protobuf::Empty
|
46
|
+
end
|
47
|
+
|
48
|
+
Stub = Service.rpc_stub_class
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/logging/v2/logging_metrics.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/protobuf/empty_pb'
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_message "google.logging.v2.LogMetric" do
|
10
|
+
optional :name, :string, 1
|
11
|
+
optional :description, :string, 2
|
12
|
+
optional :filter, :string, 3
|
13
|
+
end
|
14
|
+
add_message "google.logging.v2.ListLogMetricsRequest" do
|
15
|
+
optional :parent, :string, 1
|
16
|
+
optional :page_token, :string, 2
|
17
|
+
optional :page_size, :int32, 3
|
18
|
+
end
|
19
|
+
add_message "google.logging.v2.ListLogMetricsResponse" do
|
20
|
+
repeated :metrics, :message, 1, "google.logging.v2.LogMetric"
|
21
|
+
optional :next_page_token, :string, 2
|
22
|
+
end
|
23
|
+
add_message "google.logging.v2.GetLogMetricRequest" do
|
24
|
+
optional :metric_name, :string, 1
|
25
|
+
end
|
26
|
+
add_message "google.logging.v2.CreateLogMetricRequest" do
|
27
|
+
optional :parent, :string, 1
|
28
|
+
optional :metric, :message, 2, "google.logging.v2.LogMetric"
|
29
|
+
end
|
30
|
+
add_message "google.logging.v2.UpdateLogMetricRequest" do
|
31
|
+
optional :metric_name, :string, 1
|
32
|
+
optional :metric, :message, 2, "google.logging.v2.LogMetric"
|
33
|
+
end
|
34
|
+
add_message "google.logging.v2.DeleteLogMetricRequest" do
|
35
|
+
optional :metric_name, :string, 1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
module Google
|
40
|
+
module Logging
|
41
|
+
module V2
|
42
|
+
LogMetric = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogMetric").msgclass
|
43
|
+
ListLogMetricsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListLogMetricsRequest").msgclass
|
44
|
+
ListLogMetricsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListLogMetricsResponse").msgclass
|
45
|
+
GetLogMetricRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.GetLogMetricRequest").msgclass
|
46
|
+
CreateLogMetricRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CreateLogMetricRequest").msgclass
|
47
|
+
UpdateLogMetricRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.UpdateLogMetricRequest").msgclass
|
48
|
+
DeleteLogMetricRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.DeleteLogMetricRequest").msgclass
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/logging/v2/logging_metrics.proto for package 'google.logging.v2'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2016 Google Inc.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/logging/v2/logging_metrics_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Logging
|
24
|
+
module V2
|
25
|
+
module MetricsServiceV2
|
26
|
+
# Service for configuring logs-based metrics.
|
27
|
+
class Service
|
28
|
+
|
29
|
+
include GRPC::GenericService
|
30
|
+
|
31
|
+
self.marshal_class_method = :encode
|
32
|
+
self.unmarshal_class_method = :decode
|
33
|
+
self.service_name = 'google.logging.v2.MetricsServiceV2'
|
34
|
+
|
35
|
+
# Lists logs-based metrics.
|
36
|
+
rpc :ListLogMetrics, ListLogMetricsRequest, ListLogMetricsResponse
|
37
|
+
# Gets a logs-based metric.
|
38
|
+
rpc :GetLogMetric, GetLogMetricRequest, LogMetric
|
39
|
+
# Creates a logs-based metric.
|
40
|
+
rpc :CreateLogMetric, CreateLogMetricRequest, LogMetric
|
41
|
+
# Creates or updates a logs-based metric.
|
42
|
+
rpc :UpdateLogMetric, UpdateLogMetricRequest, LogMetric
|
43
|
+
# Deletes a logs-based metric.
|
44
|
+
rpc :DeleteLogMetric, DeleteLogMetricRequest, Google::Protobuf::Empty
|
45
|
+
end
|
46
|
+
|
47
|
+
Stub = Service.rpc_stub_class
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/logging/v2/logging.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/monitored_resource_pb'
|
8
|
+
require 'google/logging/v2/log_entry_pb'
|
9
|
+
require 'google/protobuf/duration_pb'
|
10
|
+
require 'google/protobuf/empty_pb'
|
11
|
+
require 'google/protobuf/timestamp_pb'
|
12
|
+
require 'google/rpc/status_pb'
|
13
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
14
|
+
add_message "google.logging.v2.DeleteLogRequest" do
|
15
|
+
optional :log_name, :string, 1
|
16
|
+
end
|
17
|
+
add_message "google.logging.v2.WriteLogEntriesRequest" do
|
18
|
+
optional :log_name, :string, 1
|
19
|
+
optional :resource, :message, 2, "google.api.MonitoredResource"
|
20
|
+
map :labels, :string, :string, 3
|
21
|
+
repeated :entries, :message, 4, "google.logging.v2.LogEntry"
|
22
|
+
optional :partial_success, :bool, 5
|
23
|
+
end
|
24
|
+
add_message "google.logging.v2.WriteLogEntriesResponse" do
|
25
|
+
end
|
26
|
+
add_message "google.logging.v2.ListLogEntriesRequest" do
|
27
|
+
repeated :project_ids, :string, 1
|
28
|
+
optional :filter, :string, 2
|
29
|
+
optional :order_by, :string, 3
|
30
|
+
optional :page_size, :int32, 4
|
31
|
+
optional :page_token, :string, 5
|
32
|
+
end
|
33
|
+
add_message "google.logging.v2.ListLogEntriesResponse" do
|
34
|
+
repeated :entries, :message, 1, "google.logging.v2.LogEntry"
|
35
|
+
optional :next_page_token, :string, 2
|
36
|
+
end
|
37
|
+
add_message "google.logging.v2.ListMonitoredResourceDescriptorsRequest" do
|
38
|
+
optional :page_size, :int32, 1
|
39
|
+
optional :page_token, :string, 2
|
40
|
+
end
|
41
|
+
add_message "google.logging.v2.ListMonitoredResourceDescriptorsResponse" do
|
42
|
+
repeated :resource_descriptors, :message, 1, "google.api.MonitoredResourceDescriptor"
|
43
|
+
optional :next_page_token, :string, 2
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
module Google
|
48
|
+
module Logging
|
49
|
+
module V2
|
50
|
+
DeleteLogRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.DeleteLogRequest").msgclass
|
51
|
+
WriteLogEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.WriteLogEntriesRequest").msgclass
|
52
|
+
WriteLogEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.WriteLogEntriesResponse").msgclass
|
53
|
+
ListLogEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListLogEntriesRequest").msgclass
|
54
|
+
ListLogEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListLogEntriesResponse").msgclass
|
55
|
+
ListMonitoredResourceDescriptorsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListMonitoredResourceDescriptorsRequest").msgclass
|
56
|
+
ListMonitoredResourceDescriptorsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.ListMonitoredResourceDescriptorsResponse").msgclass
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/logging/v2/logging.proto for package 'google.logging.v2'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2016 Google Inc.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/logging/v2/logging_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Logging
|
24
|
+
module V2
|
25
|
+
module LoggingServiceV2
|
26
|
+
# Service for ingesting and querying logs.
|
27
|
+
class Service
|
28
|
+
|
29
|
+
include GRPC::GenericService
|
30
|
+
|
31
|
+
self.marshal_class_method = :encode
|
32
|
+
self.unmarshal_class_method = :decode
|
33
|
+
self.service_name = 'google.logging.v2.LoggingServiceV2'
|
34
|
+
|
35
|
+
# Deletes a log and all its log entries.
|
36
|
+
# The log will reappear if it receives new entries.
|
37
|
+
#
|
38
|
+
rpc :DeleteLog, DeleteLogRequest, Google::Protobuf::Empty
|
39
|
+
# Writes log entries to Stackdriver Logging. All log entries are
|
40
|
+
# written by this method.
|
41
|
+
#
|
42
|
+
rpc :WriteLogEntries, WriteLogEntriesRequest, WriteLogEntriesResponse
|
43
|
+
# Lists log entries. Use this method to retrieve log entries from Cloud
|
44
|
+
# Logging. For ways to export log entries, see
|
45
|
+
# [Exporting Logs](/logging/docs/export).
|
46
|
+
#
|
47
|
+
rpc :ListLogEntries, ListLogEntriesRequest, ListLogEntriesResponse
|
48
|
+
# Lists the monitored resource descriptors used by Stackdriver Logging.
|
49
|
+
rpc :ListMonitoredResourceDescriptors, ListMonitoredResourceDescriptorsRequest, ListMonitoredResourceDescriptorsResponse
|
50
|
+
end
|
51
|
+
|
52
|
+
Stub = Service.rpc_stub_class
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
metadata
ADDED
@@ -0,0 +1,260 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: google-cloud-logging
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.20.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mike Moore
|
8
|
+
- Chris Smith
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-08-27 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: google-cloud-core
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.20.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.20.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: grpc
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '1.0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '1.0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: google-protobuf
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '3.0'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '3.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: googleapis-common-protos
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '1.2'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.2'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: google-gax
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 0.4.4
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.4.4
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: minitest
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '5.9'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '5.9'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: minitest-autotest
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '1.0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '1.0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: minitest-focus
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - "~>"
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '1.1'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - "~>"
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '1.1'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: minitest-rg
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '5.2'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '5.2'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: autotest-suffix
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - "~>"
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '1.1'
|
147
|
+
type: :development
|
148
|
+
prerelease: false
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - "~>"
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '1.1'
|
154
|
+
- !ruby/object:Gem::Dependency
|
155
|
+
name: rubocop
|
156
|
+
requirement: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - "<="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: 0.35.1
|
161
|
+
type: :development
|
162
|
+
prerelease: false
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - "<="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: 0.35.1
|
168
|
+
- !ruby/object:Gem::Dependency
|
169
|
+
name: simplecov
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - "~>"
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0.9'
|
175
|
+
type: :development
|
176
|
+
prerelease: false
|
177
|
+
version_requirements: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - "~>"
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0.9'
|
182
|
+
- !ruby/object:Gem::Dependency
|
183
|
+
name: yard
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
185
|
+
requirements:
|
186
|
+
- - "~>"
|
187
|
+
- !ruby/object:Gem::Version
|
188
|
+
version: '0.9'
|
189
|
+
type: :development
|
190
|
+
prerelease: false
|
191
|
+
version_requirements: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - "~>"
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0.9'
|
196
|
+
description: google-cloud-logging is the official library for Stackdriver Logging.
|
197
|
+
email:
|
198
|
+
- mike@blowmage.com
|
199
|
+
- quartzmo@gmail.com
|
200
|
+
executables: []
|
201
|
+
extensions: []
|
202
|
+
extra_rdoc_files: []
|
203
|
+
files:
|
204
|
+
- lib/google-cloud-logging.rb
|
205
|
+
- lib/google/cloud/logging.rb
|
206
|
+
- lib/google/cloud/logging/credentials.rb
|
207
|
+
- lib/google/cloud/logging/entry.rb
|
208
|
+
- lib/google/cloud/logging/entry/http_request.rb
|
209
|
+
- lib/google/cloud/logging/entry/list.rb
|
210
|
+
- lib/google/cloud/logging/entry/operation.rb
|
211
|
+
- lib/google/cloud/logging/logger.rb
|
212
|
+
- lib/google/cloud/logging/metric.rb
|
213
|
+
- lib/google/cloud/logging/metric/list.rb
|
214
|
+
- lib/google/cloud/logging/project.rb
|
215
|
+
- lib/google/cloud/logging/resource.rb
|
216
|
+
- lib/google/cloud/logging/resource_descriptor.rb
|
217
|
+
- lib/google/cloud/logging/resource_descriptor/list.rb
|
218
|
+
- lib/google/cloud/logging/service.rb
|
219
|
+
- lib/google/cloud/logging/sink.rb
|
220
|
+
- lib/google/cloud/logging/sink/list.rb
|
221
|
+
- lib/google/cloud/logging/v2.rb
|
222
|
+
- lib/google/cloud/logging/v2/config_service_v2_api.rb
|
223
|
+
- lib/google/cloud/logging/v2/config_service_v2_client_config.json
|
224
|
+
- lib/google/cloud/logging/v2/logging_service_v2_api.rb
|
225
|
+
- lib/google/cloud/logging/v2/logging_service_v2_client_config.json
|
226
|
+
- lib/google/cloud/logging/v2/metrics_service_v2_api.rb
|
227
|
+
- lib/google/cloud/logging/v2/metrics_service_v2_client_config.json
|
228
|
+
- lib/google/cloud/logging/version.rb
|
229
|
+
- lib/google/logging/v2/log_entry_pb.rb
|
230
|
+
- lib/google/logging/v2/logging_config_pb.rb
|
231
|
+
- lib/google/logging/v2/logging_config_services_pb.rb
|
232
|
+
- lib/google/logging/v2/logging_metrics_pb.rb
|
233
|
+
- lib/google/logging/v2/logging_metrics_services_pb.rb
|
234
|
+
- lib/google/logging/v2/logging_pb.rb
|
235
|
+
- lib/google/logging/v2/logging_services_pb.rb
|
236
|
+
homepage: http://googlecloudplatform.github.io/google-cloud-ruby/
|
237
|
+
licenses:
|
238
|
+
- Apache-2.0
|
239
|
+
metadata: {}
|
240
|
+
post_install_message:
|
241
|
+
rdoc_options: []
|
242
|
+
require_paths:
|
243
|
+
- lib
|
244
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
245
|
+
requirements:
|
246
|
+
- - ">="
|
247
|
+
- !ruby/object:Gem::Version
|
248
|
+
version: 2.0.0
|
249
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
250
|
+
requirements:
|
251
|
+
- - ">="
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: '0'
|
254
|
+
requirements: []
|
255
|
+
rubyforge_project:
|
256
|
+
rubygems_version: 2.6.4
|
257
|
+
signing_key:
|
258
|
+
specification_version: 4
|
259
|
+
summary: API Client library for Stackdriver Logging
|
260
|
+
test_files: []
|