google-cloud-error_reporting-v1beta1 0.5.1 → 0.6.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/README.md +1 -1
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service/rest/client.rb +424 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service/rest/service_stub.rb +167 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service/rest.rb +52 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_group_service.rb +6 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service/client.rb +8 -12
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest/client.rb +553 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest/service_stub.rb +225 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest.rb +53 -0
- data/lib/google/cloud/error_reporting/v1beta1/error_stats_service.rb +6 -0
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest/client.rb +365 -0
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest/service_stub.rb +108 -0
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest.rb +52 -0
- data/lib/google/cloud/error_reporting/v1beta1/report_errors_service.rb +6 -0
- data/lib/google/cloud/error_reporting/v1beta1/rest.rb +39 -0
- data/lib/google/cloud/error_reporting/v1beta1/version.rb +1 -1
- data/lib/google/cloud/error_reporting/v1beta1.rb +5 -0
- metadata +18 -7
@@ -0,0 +1,108 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/devtools/clouderrorreporting/v1beta1/report_errors_service_pb"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module ErrorReporting
|
24
|
+
module V1beta1
|
25
|
+
module ReportErrorsService
|
26
|
+
module Rest
|
27
|
+
##
|
28
|
+
# REST service stub for the ReportErrorsService service.
|
29
|
+
# Service stub contains baseline method implementations
|
30
|
+
# including transcoding, making the REST call, and deserialing the response.
|
31
|
+
#
|
32
|
+
class ServiceStub
|
33
|
+
def initialize endpoint:, credentials:
|
34
|
+
# These require statements are intentionally placed here to initialize
|
35
|
+
# the REST modules only when it's required.
|
36
|
+
require "gapic/rest"
|
37
|
+
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
|
39
|
+
numeric_enums: true,
|
40
|
+
raise_faraday_errors: false
|
41
|
+
end
|
42
|
+
|
43
|
+
##
|
44
|
+
# Baseline implementation for the report_error_event REST call
|
45
|
+
#
|
46
|
+
# @param request_pb [::Google::Cloud::ErrorReporting::V1beta1::ReportErrorEventRequest]
|
47
|
+
# A request object representing the call parameters. Required.
|
48
|
+
# @param options [::Gapic::CallOptions]
|
49
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
50
|
+
#
|
51
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
52
|
+
# @yieldparam result [::Google::Cloud::ErrorReporting::V1beta1::ReportErrorEventResponse]
|
53
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
54
|
+
#
|
55
|
+
# @return [::Google::Cloud::ErrorReporting::V1beta1::ReportErrorEventResponse]
|
56
|
+
# A result object deserialized from the server's reply
|
57
|
+
def report_error_event request_pb, options = nil
|
58
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
59
|
+
|
60
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_report_error_event_request request_pb
|
61
|
+
query_string_params = if query_string_params.any?
|
62
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
63
|
+
else
|
64
|
+
{}
|
65
|
+
end
|
66
|
+
|
67
|
+
response = @client_stub.make_http_request(
|
68
|
+
verb,
|
69
|
+
uri: uri,
|
70
|
+
body: body || "",
|
71
|
+
params: query_string_params,
|
72
|
+
options: options
|
73
|
+
)
|
74
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
75
|
+
result = ::Google::Cloud::ErrorReporting::V1beta1::ReportErrorEventResponse.decode_json response.body, ignore_unknown_fields: true
|
76
|
+
|
77
|
+
yield result, operation if block_given?
|
78
|
+
result
|
79
|
+
end
|
80
|
+
|
81
|
+
##
|
82
|
+
# @private
|
83
|
+
#
|
84
|
+
# GRPC transcoding helper method for the report_error_event REST call
|
85
|
+
#
|
86
|
+
# @param request_pb [::Google::Cloud::ErrorReporting::V1beta1::ReportErrorEventRequest]
|
87
|
+
# A request object representing the call parameters. Required.
|
88
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
89
|
+
# Uri, Body, Query string parameters
|
90
|
+
def self.transcode_report_error_event_request request_pb
|
91
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
92
|
+
.with_bindings(
|
93
|
+
uri_method: :post,
|
94
|
+
uri_template: "/v1beta1/{project_name}/events:report",
|
95
|
+
body: "event",
|
96
|
+
matches: [
|
97
|
+
["project_name", %r{^projects/[^/]+/?$}, false]
|
98
|
+
]
|
99
|
+
)
|
100
|
+
transcoder.transcode request_pb
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/error_reporting/v1beta1/version"
|
24
|
+
|
25
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/credentials"
|
26
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/paths"
|
27
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/rest/client"
|
28
|
+
|
29
|
+
module Google
|
30
|
+
module Cloud
|
31
|
+
module ErrorReporting
|
32
|
+
module V1beta1
|
33
|
+
##
|
34
|
+
# An API for reporting error events.
|
35
|
+
#
|
36
|
+
# To load this service and instantiate a REST client:
|
37
|
+
#
|
38
|
+
# require "google/cloud/error_reporting/v1beta1/report_errors_service/rest"
|
39
|
+
# client = ::Google::Cloud::ErrorReporting::V1beta1::ReportErrorsService::Rest::Client.new
|
40
|
+
#
|
41
|
+
module ReportErrorsService
|
42
|
+
# Client for the REST transport
|
43
|
+
module Rest
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
52
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/rest/helpers" if ::File.file? helper_path
|
@@ -25,6 +25,7 @@ require "google/cloud/error_reporting/v1beta1/version"
|
|
25
25
|
require "google/cloud/error_reporting/v1beta1/report_errors_service/credentials"
|
26
26
|
require "google/cloud/error_reporting/v1beta1/report_errors_service/paths"
|
27
27
|
require "google/cloud/error_reporting/v1beta1/report_errors_service/client"
|
28
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/rest"
|
28
29
|
|
29
30
|
module Google
|
30
31
|
module Cloud
|
@@ -38,6 +39,11 @@ module Google
|
|
38
39
|
# require "google/cloud/error_reporting/v1beta1/report_errors_service"
|
39
40
|
# client = ::Google::Cloud::ErrorReporting::V1beta1::ReportErrorsService::Client.new
|
40
41
|
#
|
42
|
+
# @example Load this service and instantiate a REST client
|
43
|
+
#
|
44
|
+
# require "google/cloud/error_reporting/v1beta1/report_errors_service/rest"
|
45
|
+
# client = ::Google::Cloud::ErrorReporting::V1beta1::ReportErrorsService::Rest::Client.new
|
46
|
+
#
|
41
47
|
module ReportErrorsService
|
42
48
|
end
|
43
49
|
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/error_reporting/v1beta1/error_group_service/rest"
|
20
|
+
require "google/cloud/error_reporting/v1beta1/error_stats_service/rest"
|
21
|
+
require "google/cloud/error_reporting/v1beta1/report_errors_service/rest"
|
22
|
+
require "google/cloud/error_reporting/v1beta1/version"
|
23
|
+
|
24
|
+
module Google
|
25
|
+
module Cloud
|
26
|
+
module ErrorReporting
|
27
|
+
##
|
28
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
29
|
+
#
|
30
|
+
# @example
|
31
|
+
#
|
32
|
+
# require "google/cloud/error_reporting/v1beta1/rest"
|
33
|
+
# client = ::Google::Cloud::ErrorReporting::V1beta1::ErrorGroupService::Rest::Client.new
|
34
|
+
#
|
35
|
+
module V1beta1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -32,6 +32,11 @@ module Google
|
|
32
32
|
# require "google/cloud/error_reporting/v1beta1"
|
33
33
|
# client = ::Google::Cloud::ErrorReporting::V1beta1::ErrorGroupService::Client.new
|
34
34
|
#
|
35
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
36
|
+
#
|
37
|
+
# require "google/cloud/error_reporting/v1beta1"
|
38
|
+
# client = ::Google::Cloud::ErrorReporting::V1beta1::ErrorGroupService::Rest::Client.new
|
39
|
+
#
|
35
40
|
module V1beta1
|
36
41
|
end
|
37
42
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-error_reporting-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-08 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.18.0
|
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.18.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.
|
53
|
+
version: 1.26.3
|
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.26.
|
60
|
+
version: 1.26.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -176,14 +176,24 @@ files:
|
|
176
176
|
- lib/google/cloud/error_reporting/v1beta1/error_group_service/client.rb
|
177
177
|
- lib/google/cloud/error_reporting/v1beta1/error_group_service/credentials.rb
|
178
178
|
- lib/google/cloud/error_reporting/v1beta1/error_group_service/paths.rb
|
179
|
+
- lib/google/cloud/error_reporting/v1beta1/error_group_service/rest.rb
|
180
|
+
- lib/google/cloud/error_reporting/v1beta1/error_group_service/rest/client.rb
|
181
|
+
- lib/google/cloud/error_reporting/v1beta1/error_group_service/rest/service_stub.rb
|
179
182
|
- lib/google/cloud/error_reporting/v1beta1/error_stats_service.rb
|
180
183
|
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/client.rb
|
181
184
|
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/credentials.rb
|
182
185
|
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/paths.rb
|
186
|
+
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest.rb
|
187
|
+
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest/client.rb
|
188
|
+
- lib/google/cloud/error_reporting/v1beta1/error_stats_service/rest/service_stub.rb
|
183
189
|
- lib/google/cloud/error_reporting/v1beta1/report_errors_service.rb
|
184
190
|
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/client.rb
|
185
191
|
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/credentials.rb
|
186
192
|
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/paths.rb
|
193
|
+
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest.rb
|
194
|
+
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest/client.rb
|
195
|
+
- lib/google/cloud/error_reporting/v1beta1/report_errors_service/rest/service_stub.rb
|
196
|
+
- lib/google/cloud/error_reporting/v1beta1/rest.rb
|
187
197
|
- lib/google/cloud/error_reporting/v1beta1/version.rb
|
188
198
|
- lib/google/devtools/clouderrorreporting/v1beta1/common_pb.rb
|
189
199
|
- lib/google/devtools/clouderrorreporting/v1beta1/error_group_service_pb.rb
|
@@ -225,5 +235,6 @@ requirements: []
|
|
225
235
|
rubygems_version: 3.4.2
|
226
236
|
signing_key:
|
227
237
|
specification_version: 4
|
228
|
-
summary:
|
238
|
+
summary: Groups and counts similar errors from cloud services and applications, reports
|
239
|
+
new errors, and provides access to error groups and their associated errors.
|
229
240
|
test_files: []
|