google-cloud-logging-v2 0.6.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +6 -6
- data/README.md +13 -8
- data/lib/google/cloud/logging/v2/config_service/client.rb +3 -3
- data/lib/google/cloud/logging/v2/config_service/operations.rb +3 -0
- data/lib/google/cloud/logging/v2/version.rb +1 -1
- data/lib/google/cloud/logging/v2.rb +4 -2
- data/lib/google/logging/v2/log_entry_pb.rb +2 -2
- data/lib/google/logging/v2/logging_config_pb.rb +4 -2
- data/lib/google/logging/v2/logging_metrics_pb.rb +2 -3
- data/lib/google/logging/v2/logging_pb.rb +2 -4
- data/proto_docs/google/logging/v2/logging_config.rb +51 -8
- data/proto_docs/google/protobuf/any.rb +3 -3
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/protobuf/struct.rb +2 -2
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee90253cb5a747bb4cc8e110ee3e7f3a1f67987f62eb56806043a2350d3a75fa
|
4
|
+
data.tar.gz: 1986b81148d0d51686307ad92801157507fb070e88974e9c01b175d2bb11eb89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4b0088beb55630111e6c4c85fcea30994e2ab1084921bfcd6158f9eb3ce861fe1313edf793219192d2a25955c3ba664ead97f25c94dcc78071c7f85fb75180b
|
7
|
+
data.tar.gz: 34e95aabdb7180e8610d07c503a5df24bac3dcd90ef32de2c04b2b1039c5653697c505e5b6ce355a930ad25203cd1be9f7c7b565acfb26f4cd239cce815b4eff
|
data/AUTHENTICATION.md
CHANGED
@@ -27,7 +27,7 @@ export LOGGING_CREDENTIALS=path/to/keyfile.json
|
|
27
27
|
```ruby
|
28
28
|
require "google/cloud/logging/v2"
|
29
29
|
|
30
|
-
client = ::Google::Cloud::Logging::V2::
|
30
|
+
client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
31
31
|
```
|
32
32
|
|
33
33
|
## Credential Lookup
|
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
|
|
64
64
|
|
65
65
|
The environment variables that google-cloud-logging-v2
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
|
-
{::Google::Cloud::Logging::V2::
|
67
|
+
{::Google::Cloud::Logging::V2::LoggingService::Credentials}):
|
68
68
|
|
69
69
|
* `LOGGING_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
70
|
* `LOGGING_KEYFILE` - Path to JSON file, or JSON contents
|
@@ -77,7 +77,7 @@ require "google/cloud/logging/v2"
|
|
77
77
|
|
78
78
|
ENV["LOGGING_CREDENTIALS"] = "path/to/keyfile.json"
|
79
79
|
|
80
|
-
client = ::Google::Cloud::Logging::V2::
|
80
|
+
client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
81
81
|
```
|
82
82
|
|
83
83
|
### Configuration
|
@@ -88,7 +88,7 @@ it in an environment variable. Either on an individual client initialization:
|
|
88
88
|
```ruby
|
89
89
|
require "google/cloud/logging/v2"
|
90
90
|
|
91
|
-
client = ::Google::Cloud::Logging::V2::
|
91
|
+
client = ::Google::Cloud::Logging::V2::LoggingService::Client.new do |config|
|
92
92
|
config.credentials = "path/to/keyfile.json"
|
93
93
|
end
|
94
94
|
```
|
@@ -98,11 +98,11 @@ Or globally for all clients:
|
|
98
98
|
```ruby
|
99
99
|
require "google/cloud/logging/v2"
|
100
100
|
|
101
|
-
::Google::Cloud::Logging::V2::
|
101
|
+
::Google::Cloud::Logging::V2::LoggingService::Client.configure do |config|
|
102
102
|
config.credentials = "path/to/keyfile.json"
|
103
103
|
end
|
104
104
|
|
105
|
-
client = ::Google::Cloud::Logging::V2::
|
105
|
+
client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
106
106
|
```
|
107
107
|
|
108
108
|
### Cloud SDK
|
data/README.md
CHANGED
@@ -32,9 +32,9 @@ In order to use this library, you first need to go through the following steps:
|
|
32
32
|
```ruby
|
33
33
|
require "google/cloud/logging/v2"
|
34
34
|
|
35
|
-
client = ::Google::Cloud::Logging::V2::
|
36
|
-
request = ::Google::Cloud::Logging::V2::
|
37
|
-
response = client.
|
35
|
+
client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
36
|
+
request = ::Google::Cloud::Logging::V2::DeleteLogRequest.new # (request fields as keyword arguments...)
|
37
|
+
response = client.delete_log request
|
38
38
|
```
|
39
39
|
|
40
40
|
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-logging-v2/latest)
|
@@ -69,16 +69,21 @@ module GRPC
|
|
69
69
|
end
|
70
70
|
```
|
71
71
|
|
72
|
+
|
73
|
+
## Google Cloud Samples
|
74
|
+
|
75
|
+
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
76
|
+
|
72
77
|
## Supported Ruby Versions
|
73
78
|
|
74
|
-
This library is supported on Ruby 2.
|
79
|
+
This library is supported on Ruby 2.6+.
|
75
80
|
|
76
81
|
Google provides official support for Ruby versions that are actively supported
|
77
82
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
78
|
-
in security maintenance, and not end of life.
|
79
|
-
|
80
|
-
|
81
|
-
|
83
|
+
in security maintenance, and not end of life. Older versions of Ruby _may_
|
84
|
+
still work, but are unsupported and not recommended. See
|
85
|
+
https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
|
86
|
+
support schedule.
|
82
87
|
|
83
88
|
## Which client should I use?
|
84
89
|
|
@@ -1651,7 +1651,7 @@ module Google
|
|
1651
1651
|
# Required. The updated sink, whose name is the same identifier that appears as part
|
1652
1652
|
# of `sink_name`.
|
1653
1653
|
# @param unique_writer_identity [::Boolean]
|
1654
|
-
# Optional. See {::Google::Cloud::Logging::V2::
|
1654
|
+
# Optional. See {::Google::Cloud::Logging::V2::ConfigService::Client#create_sink sinks.create}
|
1655
1655
|
# for a description of this field. When updating a sink, the effect of this
|
1656
1656
|
# field on the value of `writer_identity` in the updated sink depends on both
|
1657
1657
|
# the old and new values of this field:
|
@@ -2455,7 +2455,7 @@ module Google
|
|
2455
2455
|
# Cloud organizations. Once configured, it applies to all projects and
|
2456
2456
|
# folders in the Google Cloud organization.
|
2457
2457
|
#
|
2458
|
-
# {::Google::Cloud::Logging::V2::
|
2458
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#update_cmek_settings UpdateCmekSettings}
|
2459
2459
|
# will fail if 1) `kms_key_name` is invalid, or 2) the associated service
|
2460
2460
|
# account does not have the required
|
2461
2461
|
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` role assigned for the key, or
|
@@ -2689,7 +2689,7 @@ module Google
|
|
2689
2689
|
# Google Cloud organizations. Once configured, it applies to all projects and
|
2690
2690
|
# folders in the Google Cloud organization.
|
2691
2691
|
#
|
2692
|
-
# {::Google::Cloud::Logging::V2::
|
2692
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#update_settings UpdateSettings}
|
2693
2693
|
# will fail if 1) `kms_key_name` is invalid, or 2) the associated service
|
2694
2694
|
# account does not have the required
|
2695
2695
|
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` role assigned for the key, or
|
@@ -16,8 +16,8 @@
|
|
16
16
|
|
17
17
|
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
18
|
|
19
|
-
require "google/cloud/logging/v2/config_service"
|
20
19
|
require "google/cloud/logging/v2/logging_service"
|
20
|
+
require "google/cloud/logging/v2/config_service"
|
21
21
|
require "google/cloud/logging/v2/metrics_service"
|
22
22
|
require "google/cloud/logging/v2/version"
|
23
23
|
|
@@ -27,8 +27,10 @@ module Google
|
|
27
27
|
##
|
28
28
|
# To load this package, including all its services, and instantiate a client:
|
29
29
|
#
|
30
|
+
# @example
|
31
|
+
#
|
30
32
|
# require "google/cloud/logging/v2"
|
31
|
-
# client = ::Google::Cloud::Logging::V2::
|
33
|
+
# client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
32
34
|
#
|
33
35
|
module V2
|
34
36
|
end
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/log_entry.proto
|
3
3
|
|
4
|
-
require 'google/
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
5
6
|
require 'google/api/field_behavior_pb'
|
6
7
|
require 'google/api/monitored_resource_pb'
|
7
8
|
require 'google/api/resource_pb'
|
@@ -10,7 +11,6 @@ require 'google/logging/type/log_severity_pb'
|
|
10
11
|
require 'google/protobuf/any_pb'
|
11
12
|
require 'google/protobuf/struct_pb'
|
12
13
|
require 'google/protobuf/timestamp_pb'
|
13
|
-
require 'google/protobuf'
|
14
14
|
|
15
15
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
16
16
|
add_file("google/logging/v2/log_entry.proto", :syntax => :proto3) do
|
@@ -1,16 +1,16 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_config.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/annotations_pb'
|
5
7
|
require 'google/api/client_pb'
|
6
8
|
require 'google/api/field_behavior_pb'
|
7
9
|
require 'google/api/resource_pb'
|
8
10
|
require 'google/longrunning/operations_pb'
|
9
|
-
require 'google/protobuf/duration_pb'
|
10
11
|
require 'google/protobuf/empty_pb'
|
11
12
|
require 'google/protobuf/field_mask_pb'
|
12
13
|
require 'google/protobuf/timestamp_pb'
|
13
|
-
require 'google/protobuf'
|
14
14
|
|
15
15
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
16
16
|
add_file("google/logging/v2/logging_config.proto", :syntax => :proto3) do
|
@@ -191,6 +191,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
191
191
|
end
|
192
192
|
add_message "google.logging.v2.Settings" do
|
193
193
|
optional :name, :string, 1
|
194
|
+
optional :kms_key_name, :string, 2
|
195
|
+
optional :kms_service_account_id, :string, 3
|
194
196
|
optional :storage_location, :string, 4
|
195
197
|
optional :disable_default_sink, :bool, 5
|
196
198
|
end
|
@@ -1,17 +1,16 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_metrics.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/annotations_pb'
|
5
7
|
require 'google/api/client_pb'
|
6
8
|
require 'google/api/distribution_pb'
|
7
9
|
require 'google/api/field_behavior_pb'
|
8
10
|
require 'google/api/metric_pb'
|
9
11
|
require 'google/api/resource_pb'
|
10
|
-
require 'google/protobuf/duration_pb'
|
11
12
|
require 'google/protobuf/empty_pb'
|
12
|
-
require 'google/protobuf/field_mask_pb'
|
13
13
|
require 'google/protobuf/timestamp_pb'
|
14
|
-
require 'google/protobuf'
|
15
14
|
|
16
15
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
17
16
|
add_file("google/logging/v2/logging_metrics.proto", :syntax => :proto3) do
|
@@ -1,19 +1,17 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/annotations_pb'
|
5
7
|
require 'google/api/client_pb'
|
6
8
|
require 'google/api/field_behavior_pb'
|
7
9
|
require 'google/api/monitored_resource_pb'
|
8
10
|
require 'google/api/resource_pb'
|
9
11
|
require 'google/logging/v2/log_entry_pb'
|
10
|
-
require 'google/logging/v2/logging_config_pb'
|
11
12
|
require 'google/protobuf/duration_pb'
|
12
13
|
require 'google/protobuf/empty_pb'
|
13
|
-
require 'google/protobuf/field_mask_pb'
|
14
|
-
require 'google/protobuf/timestamp_pb'
|
15
14
|
require 'google/rpc/status_pb'
|
16
|
-
require 'google/protobuf'
|
17
15
|
|
18
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
19
17
|
add_file("google/logging/v2/logging.proto", :syntax => :proto3) do
|
@@ -180,8 +180,8 @@ module Google
|
|
180
180
|
# Output only. An IAM identity—a service account or group—under which Cloud
|
181
181
|
# Logging writes the exported log entries to the sink's destination. This
|
182
182
|
# field is set by
|
183
|
-
# {::Google::Cloud::Logging::V2::
|
184
|
-
# {::Google::Cloud::Logging::V2::
|
183
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#create_sink sinks.create} and
|
184
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#update_sink sinks.update} based on the
|
185
185
|
# value of `unique_writer_identity` in those methods.
|
186
186
|
#
|
187
187
|
# Until you grant this identity write-access to the destination, log entry
|
@@ -650,7 +650,7 @@ module Google
|
|
650
650
|
# of `sink_name`.
|
651
651
|
# @!attribute [rw] unique_writer_identity
|
652
652
|
# @return [::Boolean]
|
653
|
-
# Optional. See {::Google::Cloud::Logging::V2::
|
653
|
+
# Optional. See {::Google::Cloud::Logging::V2::ConfigService::Client#create_sink sinks.create}
|
654
654
|
# for a description of this field. When updating a sink, the effect of this
|
655
655
|
# field on the value of `writer_identity` in the updated sink depends on both
|
656
656
|
# the old and new values of this field:
|
@@ -880,7 +880,7 @@ module Google
|
|
880
880
|
end
|
881
881
|
|
882
882
|
# The parameters to
|
883
|
-
# {::Google::Cloud::Logging::V2::
|
883
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#get_cmek_settings GetCmekSettings}.
|
884
884
|
#
|
885
885
|
# See [Enabling CMEK for Log
|
886
886
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption) for
|
@@ -908,7 +908,7 @@ module Google
|
|
908
908
|
end
|
909
909
|
|
910
910
|
# The parameters to
|
911
|
-
# {::Google::Cloud::Logging::V2::
|
911
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#update_cmek_settings UpdateCmekSettings}.
|
912
912
|
#
|
913
913
|
# See [Enabling CMEK for Log
|
914
914
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption) for
|
@@ -1001,7 +1001,7 @@ module Google
|
|
1001
1001
|
# Before enabling CMEK for Log Router, you must first assign the
|
1002
1002
|
# cloudkms.cryptoKeyEncrypterDecrypter role to the service account that
|
1003
1003
|
# the Log Router will use to access your Cloud KMS key. Use
|
1004
|
-
# {::Google::Cloud::Logging::V2::
|
1004
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#get_cmek_settings GetCmekSettings} to
|
1005
1005
|
# obtain the service account ID.
|
1006
1006
|
#
|
1007
1007
|
# See [Enabling CMEK for Log
|
@@ -1013,7 +1013,7 @@ module Google
|
|
1013
1013
|
end
|
1014
1014
|
|
1015
1015
|
# The parameters to
|
1016
|
-
# {::Google::Cloud::Logging::V2::
|
1016
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#get_settings GetSettings}.
|
1017
1017
|
#
|
1018
1018
|
# See [Enabling CMEK for Log
|
1019
1019
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption) for
|
@@ -1041,7 +1041,7 @@ module Google
|
|
1041
1041
|
end
|
1042
1042
|
|
1043
1043
|
# The parameters to
|
1044
|
-
# {::Google::Cloud::Logging::V2::
|
1044
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#update_settings UpdateSettings}.
|
1045
1045
|
#
|
1046
1046
|
# See [Enabling CMEK for Log
|
1047
1047
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption) for
|
@@ -1085,6 +1085,49 @@ module Google
|
|
1085
1085
|
# @!attribute [r] name
|
1086
1086
|
# @return [::String]
|
1087
1087
|
# Output only. The resource name of the settings.
|
1088
|
+
# @!attribute [rw] kms_key_name
|
1089
|
+
# @return [::String]
|
1090
|
+
# Optional. The resource name for the configured Cloud KMS key.
|
1091
|
+
#
|
1092
|
+
# KMS key name format:
|
1093
|
+
#
|
1094
|
+
# "projects/[PROJECT_ID]/locations/[LOCATION]/keyRings/[KEYRING]/cryptoKeys/[KEY]"
|
1095
|
+
#
|
1096
|
+
# For example:
|
1097
|
+
#
|
1098
|
+
# `"projects/my-project/locations/us-central1/keyRings/my-ring/cryptoKeys/my-key"`
|
1099
|
+
#
|
1100
|
+
#
|
1101
|
+
#
|
1102
|
+
# To enable CMEK for the Log Router, set this field to a valid
|
1103
|
+
# `kms_key_name` for which the associated service account has the required
|
1104
|
+
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` role assigned for the key.
|
1105
|
+
#
|
1106
|
+
# The Cloud KMS key used by the Log Router can be updated by changing the
|
1107
|
+
# `kms_key_name` to a new valid key name. Encryption operations that are in
|
1108
|
+
# progress will be completed with the key that was in use when they started.
|
1109
|
+
# Decryption operations will be completed using the key that was used at the
|
1110
|
+
# time of encryption unless access to that key has been revoked.
|
1111
|
+
#
|
1112
|
+
# To disable CMEK for the Log Router, set this field to an empty string.
|
1113
|
+
#
|
1114
|
+
# See [Enabling CMEK for Log
|
1115
|
+
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
1116
|
+
# for more information.
|
1117
|
+
# @!attribute [r] kms_service_account_id
|
1118
|
+
# @return [::String]
|
1119
|
+
# Output only. The service account that will be used by the Log Router to access your
|
1120
|
+
# Cloud KMS key.
|
1121
|
+
#
|
1122
|
+
# Before enabling CMEK for Log Router, you must first assign the role
|
1123
|
+
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` to the service account that
|
1124
|
+
# the Log Router will use to access your Cloud KMS key. Use
|
1125
|
+
# {::Google::Cloud::Logging::V2::ConfigService::Client#get_settings GetSettings} to
|
1126
|
+
# obtain the service account ID.
|
1127
|
+
#
|
1128
|
+
# See [Enabling CMEK for Log
|
1129
|
+
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
1130
|
+
# for more information.
|
1088
1131
|
# @!attribute [rw] storage_location
|
1089
1132
|
# @return [::String]
|
1090
1133
|
# Optional. The Cloud region that will be used for _Default and _Required log buckets
|
@@ -44,7 +44,7 @@ module Google
|
|
44
44
|
# foo = any.unpack(Foo.class);
|
45
45
|
# }
|
46
46
|
#
|
47
|
-
#
|
47
|
+
# Example 3: Pack and unpack a message in Python.
|
48
48
|
#
|
49
49
|
# foo = Foo(...)
|
50
50
|
# any = Any()
|
@@ -54,7 +54,7 @@ module Google
|
|
54
54
|
# any.Unpack(foo)
|
55
55
|
# ...
|
56
56
|
#
|
57
|
-
#
|
57
|
+
# Example 4: Pack and unpack a message in Go
|
58
58
|
#
|
59
59
|
# foo := &pb.Foo{...}
|
60
60
|
# any, err := anypb.New(foo)
|
@@ -75,7 +75,7 @@ module Google
|
|
75
75
|
#
|
76
76
|
#
|
77
77
|
# JSON
|
78
|
-
#
|
78
|
+
#
|
79
79
|
# The JSON representation of an `Any` value uses the regular
|
80
80
|
# representation of the deserialized, embedded message, with an
|
81
81
|
# additional field `@type` which contains the type URL. Example:
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -46,8 +46,8 @@ module Google
|
|
46
46
|
|
47
47
|
# `Value` represents a dynamically typed value which can be either
|
48
48
|
# null, a number, a string, a boolean, a recursive struct value, or a
|
49
|
-
# list of values. A producer of value is expected to set one of
|
50
|
-
# variants
|
49
|
+
# list of values. A producer of value is expected to set one of these
|
50
|
+
# variants. Absence of any variant indicates an error.
|
51
51
|
#
|
52
52
|
# The JSON representation for `Value` is JSON value.
|
53
53
|
# @!attribute [rw] null_value
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-logging-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.10'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.10'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,28 +50,28 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.
|
53
|
+
version: 1.26.1
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.
|
60
|
+
version: 1.26.1
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version: '5.
|
67
|
+
version: '5.16'
|
68
68
|
type: :development
|
69
69
|
prerelease: false
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '5.
|
74
|
+
version: '5.16'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: minitest-focus
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '13.0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '13.0'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: redcarpet
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -227,14 +227,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
227
227
|
requirements:
|
228
228
|
- - ">="
|
229
229
|
- !ruby/object:Gem::Version
|
230
|
-
version: '2.
|
230
|
+
version: '2.6'
|
231
231
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
232
232
|
requirements:
|
233
233
|
- - ">="
|
234
234
|
- !ruby/object:Gem::Version
|
235
235
|
version: '0'
|
236
236
|
requirements: []
|
237
|
-
rubygems_version: 3.3.
|
237
|
+
rubygems_version: 3.3.14
|
238
238
|
signing_key:
|
239
239
|
specification_version: 4
|
240
240
|
summary: API Client library for the Cloud Logging V2 API
|