google-cloud-error_reporting 0.35.2 → 0.40.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 +4 -4
- data/AUTHENTICATION.md +2 -1
- data/CHANGELOG.md +23 -0
- data/lib/google-cloud-error_reporting.rb +7 -14
- data/lib/google/cloud/error_reporting.rb +16 -13
- data/lib/google/cloud/error_reporting/credentials.rb +2 -2
- data/lib/google/cloud/error_reporting/error_event.rb +14 -18
- data/lib/google/cloud/error_reporting/service.rb +12 -36
- data/lib/google/cloud/error_reporting/version.rb +1 -1
- metadata +7 -68
- data/lib/google/cloud/error_reporting/v1beta1.rb +0 -19
- data/lib/google/cloud/error_reporting/v1beta1/credentials.rb +0 -41
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/common.rb +0 -158
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/error_group_service.rb +0 -39
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/error_stats_service.rb +0 -314
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/report_errors_service.rb +0 -79
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/protobuf/duration.rb +0 -91
- data/lib/google/cloud/error_reporting/v1beta1/doc/google/protobuf/timestamp.rb +0 -113
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service_client.rb +0 -283
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service_client_config.json +0 -36
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service_client.rb +0 -457
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service_client_config.json +0 -41
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service_client.rb +0 -254
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service_client_config.json +0 -31
- data/lib/google/devtools/clouderrorreporting/v1beta1/common_pb.rb +0 -64
- data/lib/google/devtools/clouderrorreporting/v1beta1/error_group_service_pb.rb +0 -30
- data/lib/google/devtools/clouderrorreporting/v1beta1/error_group_service_services_pb.rb +0 -50
- data/lib/google/devtools/clouderrorreporting/v1beta1/error_stats_service_pb.rb +0 -116
- data/lib/google/devtools/clouderrorreporting/v1beta1/error_stats_service_services_pb.rb +0 -52
- data/lib/google/devtools/clouderrorreporting/v1beta1/report_errors_service_pb.rb +0 -38
- data/lib/google/devtools/clouderrorreporting/v1beta1/report_errors_service_services_pb.rb +0 -55
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 452ba5aa7f919e40361ff114937df9378a02d14a420edf3966b9b2c9d283a7c2
|
4
|
+
data.tar.gz: fca091beb1e8497cf3cdfdfda14bab9de60baf7df48ff9d6eb7b59fe6d521d40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64057bf9d228aa8632d6f69bf69293c5df32301a1b7efa959eb30f4aa6b7761fc5eeb3ae200141d3a48adea61b2a89282a47f2548b72d5303cb9b6cc8414edeb
|
7
|
+
data.tar.gz: 52a6dbc6f51c0f93ed6e1928b461ee8440cc39f0b26705b32304397399a467b063fe9fc05df9c32b1b6b0b66ea26ab957ea64ef8110732e7cb8a19369781a611
|
data/AUTHENTICATION.md
CHANGED
@@ -76,7 +76,8 @@ The environment variables that google-cloud-error_reporting checks for project I
|
|
76
76
|
1. `ERROR_REPORTING_PROJECT`
|
77
77
|
2. `GOOGLE_CLOUD_PROJECT`
|
78
78
|
|
79
|
-
The environment variables that google-cloud-error_reporting checks for credentials
|
79
|
+
The environment variables that google-cloud-error_reporting checks for credentials
|
80
|
+
are configured on {Google::Cloud::ErrorReporting::Credentials}:
|
80
81
|
|
81
82
|
1. `ERROR_REPORTING_CREDENTIALS` - Path to JSON file, or JSON contents
|
82
83
|
2. `ERROR_REPORTING_KEYFILE` - Path to JSON file, or JSON contents
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 0.40.0 / 2020-07-21
|
4
|
+
|
5
|
+
This is a major update that removes the "low-level" client interface code, and
|
6
|
+
instead adds the new `google-cloud-error_reporting-v1beta1` gem as a dependency.
|
7
|
+
This is a rewritten low-level client produced by a next-generation client code
|
8
|
+
generator, with improved performance and stability.
|
9
|
+
|
10
|
+
This change should have no effect on the high-level interface that most users
|
11
|
+
will use. The one exception is that the (mostly undocumented) `client_config`
|
12
|
+
argument, for adjusting low-level parameters such as RPC retry settings on
|
13
|
+
client objects, has been removed. If you need to adjust these parameters, use
|
14
|
+
the configuration interface in `google-cloud-error_reporting-v1beta1`.
|
15
|
+
|
16
|
+
Substantial changes have been made in the low-level interfaces, however. If you
|
17
|
+
are using the low-level classes under the `Google::Cloud::ErrorReporting::V1beta1`
|
18
|
+
module, please review the docs for the new `google-cloud-error_reporting-v1beta1`
|
19
|
+
gem. In particular:
|
20
|
+
|
21
|
+
* Some classes have been renamed, notably the client class itself.
|
22
|
+
* The client constructor takes a configuration block instead of configuration
|
23
|
+
keyword arguments.
|
24
|
+
* All RPC method arguments are now keyword arguments.
|
25
|
+
|
3
26
|
### 0.35.2 / 2020-06-08
|
4
27
|
|
5
28
|
#### Documentation
|
@@ -41,8 +41,6 @@ module Google
|
|
41
41
|
# * `https://www.googleapis.com/auth/cloud-platform`
|
42
42
|
#
|
43
43
|
# @param [Integer] timeout Default timeout to use in requests. Optional.
|
44
|
-
# @param [Hash] client_config A hash of values to override the default
|
45
|
-
# behavior of the API client. Optional.
|
46
44
|
#
|
47
45
|
# @return [Google::Cloud::ErrorReporting::Project]
|
48
46
|
#
|
@@ -59,11 +57,10 @@ module Google
|
|
59
57
|
# service_version: "v8"
|
60
58
|
# error_reporting.report error_event
|
61
59
|
#
|
62
|
-
def error_reporting scope: nil, timeout: nil
|
60
|
+
def error_reporting scope: nil, timeout: nil
|
63
61
|
Google::Cloud.error_reporting @project, @keyfile,
|
64
62
|
scope: scope,
|
65
|
-
timeout: (timeout || @timeout)
|
66
|
-
client_config: client_config
|
63
|
+
timeout: (timeout || @timeout)
|
67
64
|
end
|
68
65
|
|
69
66
|
##
|
@@ -89,8 +86,6 @@ module Google
|
|
89
86
|
# * `https://www.googleapis.com/auth/cloud-platform`
|
90
87
|
#
|
91
88
|
# @param [Integer] timeout Default timeout to use in requests. Optional.
|
92
|
-
# @param [Hash] client_config A hash of values to override the default
|
93
|
-
# behavior of the API client. Optional.
|
94
89
|
#
|
95
90
|
# @return [Google::Cloud::ErrorReporting::Project]
|
96
91
|
#
|
@@ -107,13 +102,11 @@ module Google
|
|
107
102
|
# service_version: "v8"
|
108
103
|
# error_reporting.report error_event
|
109
104
|
#
|
110
|
-
def self.error_reporting project_id = nil, credentials = nil, scope: nil,
|
111
|
-
timeout: nil, client_config: nil
|
105
|
+
def self.error_reporting project_id = nil, credentials = nil, scope: nil, timeout: nil
|
112
106
|
require "google/cloud/error_reporting"
|
113
107
|
Google::Cloud::ErrorReporting.new project_id: project_id,
|
114
108
|
credentials: credentials,
|
115
|
-
scope: scope, timeout: timeout
|
116
|
-
client_config: client_config
|
109
|
+
scope: scope, timeout: timeout
|
117
110
|
end
|
118
111
|
end
|
119
112
|
end
|
@@ -148,6 +141,7 @@ Google::Cloud.configure.add_config! :error_reporting do |config|
|
|
148
141
|
default_version = Google::Cloud::Config.deferred do
|
149
142
|
ENV["ERROR_REPORTING_VERSION"]
|
150
143
|
end
|
144
|
+
default_scopes = ["https://www.googleapis.com/auth/cloud-platform"]
|
151
145
|
|
152
146
|
config.add_field! :project_id, default_project, match: String, allow_nil: true
|
153
147
|
config.add_alias! :project, :project_id
|
@@ -155,10 +149,9 @@ Google::Cloud.configure.add_config! :error_reporting do |config|
|
|
155
149
|
match: [String, Hash, Google::Auth::Credentials],
|
156
150
|
allow_nil: true
|
157
151
|
config.add_alias! :keyfile, :credentials
|
158
|
-
config.add_field! :scope,
|
152
|
+
config.add_field! :scope, default_scopes, match: [String, Array]
|
159
153
|
config.add_field! :timeout, nil, match: Integer
|
160
|
-
config.add_field! :
|
161
|
-
config.add_field! :endpoint, nil, match: String
|
154
|
+
config.add_field! :endpoint, "clouderrorreporting.googleapis.com", match: String
|
162
155
|
config.add_field! :service_name, default_service,
|
163
156
|
match: String, allow_nil: true
|
164
157
|
config.add_field! :service_version, default_version,
|
@@ -62,8 +62,6 @@ module Google
|
|
62
62
|
# * `https://www.googleapis.com/auth/cloud-platform`
|
63
63
|
#
|
64
64
|
# @param [Integer] timeout Default timeout to use in requests. Optional.
|
65
|
-
# @param [Hash] client_config A hash of values to override the default
|
66
|
-
# behavior of the API client. Optional.
|
67
65
|
# @param [String] endpoint Override of the endpoint host name. Optional.
|
68
66
|
# If the param is nil, uses the default endpoint.
|
69
67
|
# @param [String] project Alias for the `project_id` argument. Deprecated.
|
@@ -78,25 +76,25 @@ module Google
|
|
78
76
|
# error_reporting = Google::Cloud::ErrorReporting.new
|
79
77
|
# # ...
|
80
78
|
#
|
81
|
-
def self.new project_id: nil,
|
82
|
-
|
79
|
+
def self.new project_id: nil,
|
80
|
+
credentials: nil,
|
81
|
+
scope: nil,
|
82
|
+
timeout: nil,
|
83
|
+
endpoint: nil,
|
84
|
+
project: nil,
|
85
|
+
keyfile: nil
|
83
86
|
project_id ||= project
|
84
87
|
project_id ||= ErrorReporting::Project.default_project_id
|
85
88
|
scope ||= configure.scope
|
86
89
|
timeout ||= configure.timeout
|
87
|
-
client_config ||= configure.client_config
|
88
90
|
endpoint ||= configure.endpoint
|
89
91
|
credentials ||= (keyfile || default_credentials(scope: scope))
|
90
92
|
|
91
93
|
credentials = resolve_credentials credentials, scope
|
92
94
|
project_id = resolve_project_id project_id, credentials
|
93
95
|
|
94
|
-
ErrorReporting::
|
95
|
-
|
96
|
-
project_id, credentials,
|
97
|
-
host: endpoint, timeout: timeout, client_config: client_config
|
98
|
-
)
|
99
|
-
)
|
96
|
+
service = ErrorReporting::Service.new project_id, credentials, host: endpoint, timeout: timeout
|
97
|
+
ErrorReporting::Project.new service
|
100
98
|
end
|
101
99
|
|
102
100
|
##
|
@@ -118,8 +116,6 @@ module Google
|
|
118
116
|
# * `scope` - (String, Array<String>) The OAuth 2.0 scopes controlling
|
119
117
|
# the set of resources and operations that the connection can access.
|
120
118
|
# * `timeout` - (Integer) Default timeout to use in requests.
|
121
|
-
# * `client_config` - (Hash) A hash of values to override the default
|
122
|
-
# behavior of the API client.
|
123
119
|
# * `endpoint` - (String) Override of the endpoint host name, or `nil`
|
124
120
|
# to use the default endpoint.
|
125
121
|
# * `service_name` - (String) Name for the application.
|
@@ -292,4 +288,11 @@ module Google
|
|
292
288
|
private_class_method :default_credentials
|
293
289
|
end
|
294
290
|
end
|
291
|
+
|
292
|
+
# Aliases for compatibility with older spellings.
|
293
|
+
# @private
|
294
|
+
module Devtools
|
295
|
+
# @private
|
296
|
+
Clouderrorreporting = ::Google::Cloud::ErrorReporting unless const_defined? :Clouderrorreporting
|
297
|
+
end
|
295
298
|
end
|
@@ -13,7 +13,7 @@
|
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
15
|
|
16
|
-
require "google/cloud/error_reporting/v1beta1/credentials"
|
16
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/credentials"
|
17
17
|
|
18
18
|
module Google
|
19
19
|
module Cloud
|
@@ -37,7 +37,7 @@ module Google
|
|
37
37
|
#
|
38
38
|
# error_reporting.project_id #=> "my-project"
|
39
39
|
#
|
40
|
-
class Credentials < Google::Cloud::ErrorReporting::V1beta1::Credentials
|
40
|
+
class Credentials < Google::Cloud::ErrorReporting::V1beta1::ReportErrorsService::Credentials
|
41
41
|
end
|
42
42
|
end
|
43
43
|
end
|
@@ -23,8 +23,7 @@ module Google
|
|
23
23
|
# service.
|
24
24
|
#
|
25
25
|
# Google::Cloud::ErrorReporting::ErrorEvent is able to be transformed
|
26
|
-
# into
|
27
|
-
# {Google::Devtools::Clouderrorreporting::V1beta1::ReportedErrorEvent}
|
26
|
+
# into the `Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent`
|
28
27
|
# gRPC structure. Once an error event is reported, the GCP
|
29
28
|
# Stackdriver ErrorReporting service is able to parse the message and
|
30
29
|
# backtrace, then group the error events by content.
|
@@ -119,13 +118,10 @@ module Google
|
|
119
118
|
|
120
119
|
##
|
121
120
|
# Build a new ErrorEvent from a
|
122
|
-
# Google::
|
123
|
-
# object.
|
121
|
+
# `Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent` object.
|
124
122
|
#
|
125
|
-
# @param [
|
126
|
-
# Google::
|
127
|
-
# grpc A
|
128
|
-
# Google::Devtools::Clouderrorreporting::V1beta1::ReportedErrorEvent
|
123
|
+
# @param [Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent]
|
124
|
+
# grpc A `Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent`
|
129
125
|
# object
|
130
126
|
#
|
131
127
|
# @return [ErrorEvent] A new ErrorEvent instance derived from given grpc
|
@@ -233,10 +229,10 @@ module Google
|
|
233
229
|
##
|
234
230
|
# Convert ErrorEvent object to gRPC struct.
|
235
231
|
#
|
236
|
-
# @return [
|
232
|
+
# @return [Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent]
|
237
233
|
# gRPC struct that represent an ErrorEvent.
|
238
234
|
def to_grpc
|
239
|
-
|
235
|
+
Google::Cloud::ErrorReporting::V1beta1::ReportedErrorEvent.new(
|
240
236
|
event_time: event_time_grpc,
|
241
237
|
message: message.to_s,
|
242
238
|
service_context: service_context_grpc,
|
@@ -259,11 +255,11 @@ module Google
|
|
259
255
|
|
260
256
|
##
|
261
257
|
# @private Formats the service_name and service_version as a
|
262
|
-
# Google::
|
258
|
+
# Google::Cloud::ErrorReporting::V1beta1::ServiceContext.
|
263
259
|
#
|
264
260
|
def service_context_grpc
|
265
261
|
return nil if !service_name && !service_version
|
266
|
-
|
262
|
+
Google::Cloud::ErrorReporting::V1beta1::ServiceContext.new(
|
267
263
|
service: service_name.to_s,
|
268
264
|
version: service_version.to_s
|
269
265
|
)
|
@@ -271,12 +267,12 @@ module Google
|
|
271
267
|
|
272
268
|
##
|
273
269
|
# @private Formats the http request context as a
|
274
|
-
# Google::
|
270
|
+
# Google::Cloud::ErrorReporting::V1beta1::HttpRequestContext
|
275
271
|
#
|
276
272
|
def http_request_grpc
|
277
273
|
return nil if !http_method && !http_url && !http_user_agent &&
|
278
274
|
!http_referrer && !http_status && !http_remote_ip
|
279
|
-
|
275
|
+
Google::Cloud::ErrorReporting::V1beta1::HttpRequestContext.new(
|
280
276
|
method: http_method.to_s,
|
281
277
|
url: http_url.to_s,
|
282
278
|
user_agent: http_user_agent.to_s,
|
@@ -288,11 +284,11 @@ module Google
|
|
288
284
|
|
289
285
|
##
|
290
286
|
# @private Formats the source location as a
|
291
|
-
# Google::
|
287
|
+
# Google::Cloud::ErrorReporting::V1beta1::SourceLocation
|
292
288
|
#
|
293
289
|
def source_location_grpc
|
294
290
|
return nil if !file_path && !line_number && !function_name
|
295
|
-
|
291
|
+
Google::Cloud::ErrorReporting::V1beta1::SourceLocation.new(
|
296
292
|
file_path: file_path.to_s,
|
297
293
|
line_number: line_number.to_i,
|
298
294
|
function_name: function_name.to_s
|
@@ -301,13 +297,13 @@ module Google
|
|
301
297
|
|
302
298
|
##
|
303
299
|
# @private Formats the error context info as a
|
304
|
-
# Google::
|
300
|
+
# Google::Cloud::ErrorReporting::V1beta1::ErrorContext
|
305
301
|
#
|
306
302
|
def error_context_grpc
|
307
303
|
http_request = http_request_grpc
|
308
304
|
source_location = source_location_grpc
|
309
305
|
return nil if !http_request && !source_location && !user
|
310
|
-
|
306
|
+
Google::Cloud::ErrorReporting::V1beta1::ErrorContext.new(
|
311
307
|
http_request: http_request,
|
312
308
|
user: user.to_s,
|
313
309
|
report_location: source_location
|
@@ -16,7 +16,6 @@
|
|
16
16
|
require "google/cloud/errors"
|
17
17
|
require "google/cloud/error_reporting/version"
|
18
18
|
require "google/cloud/error_reporting/v1beta1"
|
19
|
-
require "google/gax/errors"
|
20
19
|
require "uri"
|
21
20
|
|
22
21
|
module Google
|
@@ -26,31 +25,27 @@ module Google
|
|
26
25
|
# @private Represents the gRPC Error Reporting service, including all the
|
27
26
|
# API methods.
|
28
27
|
class Service
|
29
|
-
attr_accessor :project, :credentials, :timeout, :
|
28
|
+
attr_accessor :project, :credentials, :timeout, :host
|
30
29
|
|
31
30
|
##
|
32
31
|
# Creates a new Service instance.
|
33
|
-
def initialize project, credentials, timeout: nil,
|
34
|
-
host: nil
|
32
|
+
def initialize project, credentials, timeout: nil, host: nil
|
35
33
|
@project = project
|
36
34
|
@credentials = credentials
|
37
35
|
@timeout = timeout
|
38
|
-
@
|
39
|
-
@host = host || V1beta1::ReportErrorsServiceClient::SERVICE_ADDRESS
|
36
|
+
@host = host
|
40
37
|
end
|
41
38
|
|
42
39
|
def error_reporting
|
43
40
|
return mocked_error_reporting if mocked_error_reporting
|
44
41
|
@error_reporting ||= \
|
45
|
-
V1beta1::
|
46
|
-
credentials
|
47
|
-
timeout
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
lib_version: Google::Cloud::ErrorReporting::VERSION
|
53
|
-
)
|
42
|
+
V1beta1::ReportErrorsService::Client.new do |config|
|
43
|
+
config.credentials = credentials if credentials
|
44
|
+
config.timeout = timeout if timeout
|
45
|
+
config.endpoint = host if host
|
46
|
+
config.lib_name = "gccl"
|
47
|
+
config.lib_version = Google::Cloud::ErrorReporting::VERSION
|
48
|
+
end
|
54
49
|
end
|
55
50
|
attr_accessor :mocked_error_reporting
|
56
51
|
|
@@ -81,32 +76,13 @@ module Google
|
|
81
76
|
|
82
77
|
error_event_grpc = error_event.to_grpc
|
83
78
|
|
84
|
-
|
85
|
-
error_reporting.report_error_event project_path, error_event_grpc
|
86
|
-
end
|
79
|
+
error_reporting.report_error_event project_name: project_path, event: error_event_grpc
|
87
80
|
end
|
88
81
|
|
89
82
|
protected
|
90
83
|
|
91
|
-
def service_address
|
92
|
-
return nil if host.nil?
|
93
|
-
URI.parse("//#{host}").host
|
94
|
-
end
|
95
|
-
|
96
|
-
def service_port
|
97
|
-
return nil if host.nil?
|
98
|
-
URI.parse("//#{host}").port
|
99
|
-
end
|
100
|
-
|
101
84
|
def project_path
|
102
|
-
V1beta1::
|
103
|
-
end
|
104
|
-
|
105
|
-
def execute
|
106
|
-
yield
|
107
|
-
rescue Google::Gax::GaxError => e
|
108
|
-
# GaxError wraps BadStatus, but exposes it as #cause
|
109
|
-
raise Google::Cloud::Error.from_error(e.cause)
|
85
|
+
V1beta1::ReportErrorsService::Paths.project_path project: project
|
110
86
|
end
|
111
87
|
end
|
112
88
|
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.
|
4
|
+
version: 0.40.0
|
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-
|
11
|
+
date: 2020-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-cloud-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.5'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: stackdriver-core
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,59 +39,19 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.3'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name: google-
|
42
|
+
name: google-cloud-error_reporting-v1beta1
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: googleapis-common-protos
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 1.3.9
|
62
|
-
- - "<"
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
version: '2.0'
|
65
|
-
type: :runtime
|
66
|
-
prerelease: false
|
67
|
-
version_requirements: !ruby/object:Gem::Requirement
|
68
|
-
requirements:
|
69
|
-
- - ">="
|
70
|
-
- !ruby/object:Gem::Version
|
71
|
-
version: 1.3.9
|
72
|
-
- - "<"
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
version: '2.0'
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: googleapis-common-protos-types
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - ">="
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: 1.0.4
|
82
|
-
- - "<"
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
version: '2.0'
|
85
|
-
type: :runtime
|
86
|
-
prerelease: false
|
87
|
-
version_requirements: !ruby/object:Gem::Requirement
|
88
|
-
requirements:
|
89
|
-
- - ">="
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
version: 1.0.4
|
92
|
-
- - "<"
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
version: '2.0'
|
54
|
+
version: '0.0'
|
95
55
|
- !ruby/object:Gem::Dependency
|
96
56
|
name: concurrent-ruby
|
97
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -287,28 +247,7 @@ files:
|
|
287
247
|
- lib/google/cloud/error_reporting/project.rb
|
288
248
|
- lib/google/cloud/error_reporting/rails.rb
|
289
249
|
- lib/google/cloud/error_reporting/service.rb
|
290
|
-
- lib/google/cloud/error_reporting/v1beta1.rb
|
291
|
-
- lib/google/cloud/error_reporting/v1beta1/credentials.rb
|
292
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/common.rb
|
293
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/error_group_service.rb
|
294
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/error_stats_service.rb
|
295
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/devtools/clouderrorreporting/v1beta1/report_errors_service.rb
|
296
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/protobuf/duration.rb
|
297
|
-
- lib/google/cloud/error_reporting/v1beta1/doc/google/protobuf/timestamp.rb
|
298
|
-
- lib/google/cloud/error_reporting/v1beta1/error_group_service_client.rb
|
299
|
-
- lib/google/cloud/error_reporting/v1beta1/error_group_service_client_config.json
|
300
|
-
- lib/google/cloud/error_reporting/v1beta1/error_stats_service_client.rb
|
301
|
-
- lib/google/cloud/error_reporting/v1beta1/error_stats_service_client_config.json
|
302
|
-
- lib/google/cloud/error_reporting/v1beta1/report_errors_service_client.rb
|
303
|
-
- lib/google/cloud/error_reporting/v1beta1/report_errors_service_client_config.json
|
304
250
|
- lib/google/cloud/error_reporting/version.rb
|
305
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/common_pb.rb
|
306
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/error_group_service_pb.rb
|
307
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/error_group_service_services_pb.rb
|
308
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/error_stats_service_pb.rb
|
309
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/error_stats_service_services_pb.rb
|
310
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/report_errors_service_pb.rb
|
311
|
-
- lib/google/devtools/clouderrorreporting/v1beta1/report_errors_service_services_pb.rb
|
312
251
|
homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-error_reporting
|
313
252
|
licenses:
|
314
253
|
- Apache-2.0
|