google-cloud-trace-v2 0.6.1 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 714811deb8894588f2b925dd47334c62863fb41d58c7c77f8e010e4700670318
4
- data.tar.gz: dea83f140f46f2bb223e4d8aa870cd524264c749e181b9e1d625a3b825c72a44
3
+ metadata.gz: c276c4c6fed2723987046f295bb7a90658ee668b58c690a5215b78ebec98e567
4
+ data.tar.gz: 4eac16cbfcad9b48fc07022900f7e4d87882cab0ed07a7109f03d93796c2cfc8
5
5
  SHA512:
6
- metadata.gz: cdfc6412b27104d93a0737189cde36f4f0e3989f7fb636adaff210ed92dbfa903d2ee38343d2e69d95f27199826f0901acd151594c7cec53fc99fe94f96a0100
7
- data.tar.gz: edc111c079364971776b23bdec89140c3c489875fb099b9bae690eaf529d90f3b1bf30c0135e0dd55f82c99a7bd53dc56c8b12f0bbba4eddc4943a7d75f1e02e
6
+ metadata.gz: 076ef6b5f5e2d1869ada1cc3c7a97c720c2eb1da5a539348c892b47c0a4e2dfc813c850a33bf6f9c5081b1b27a87a1349b901823f0b21eff0e32ff5a393e2c6e
7
+ data.tar.gz: b97b3aa29de273743fd8bb84700aae5cd987f08da6cba5840a7bcccca2f39eabcb9f052e42d2eee61e4e75a741ac437f99a72dd181b7f05cecaedaf7b3ae4fbe
@@ -154,7 +154,8 @@ module Google
154
154
  credentials: credentials,
155
155
  endpoint: @config.endpoint,
156
156
  channel_args: @config.channel_args,
157
- interceptors: @config.interceptors
157
+ interceptors: @config.interceptors,
158
+ channel_pool_config: @config.channel_pool
158
159
  )
159
160
  end
160
161
 
@@ -510,6 +511,14 @@ module Google
510
511
  end
511
512
  end
512
513
 
514
+ ##
515
+ # Configuration for the channel pool
516
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
517
+ #
518
+ def channel_pool
519
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
520
+ end
521
+
513
522
  ##
514
523
  # Configuration RPC class for the TraceService API.
515
524
  #
@@ -183,6 +183,22 @@ module Google
183
183
  # @return [::Google::Protobuf::Empty]
184
184
  #
185
185
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
186
+ #
187
+ # @example Basic example
188
+ # require "google/cloud/trace/v2"
189
+ #
190
+ # # Create a client object. The client can be reused for multiple calls.
191
+ # client = Google::Cloud::Trace::V2::TraceService::Rest::Client.new
192
+ #
193
+ # # Create a request. To set request fields, pass in keyword arguments.
194
+ # request = Google::Cloud::Trace::V2::BatchWriteSpansRequest.new
195
+ #
196
+ # # Call the batch_write_spans method.
197
+ # result = client.batch_write_spans request
198
+ #
199
+ # # The returned object is of type Google::Protobuf::Empty.
200
+ # p result
201
+ #
186
202
  def batch_write_spans request, options = nil
187
203
  raise ::ArgumentError, "request must be provided" if request.nil?
188
204
 
@@ -301,6 +317,22 @@ module Google
301
317
  # @return [::Google::Cloud::Trace::V2::Span]
302
318
  #
303
319
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
320
+ #
321
+ # @example Basic example
322
+ # require "google/cloud/trace/v2"
323
+ #
324
+ # # Create a client object. The client can be reused for multiple calls.
325
+ # client = Google::Cloud::Trace::V2::TraceService::Rest::Client.new
326
+ #
327
+ # # Create a request. To set request fields, pass in keyword arguments.
328
+ # request = Google::Cloud::Trace::V2::Span.new
329
+ #
330
+ # # Call the create_span method.
331
+ # result = client.create_span request
332
+ #
333
+ # # The returned object is of type Google::Cloud::Trace::V2::Span.
334
+ # p result
335
+ #
304
336
  def create_span request, options = nil
305
337
  raise ::ArgumentError, "request must be provided" if request.nil?
306
338
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Trace
23
23
  module V2
24
- VERSION = "0.6.1"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-trace-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.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-06-06 00:00:00.000000000 Z
11
+ date: 2023-09-12 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.1
19
+ version: 0.20.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.19.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  requirements: []
221
- rubygems_version: 3.4.2
221
+ rubygems_version: 3.4.19
222
222
  signing_key:
223
223
  specification_version: 4
224
224
  summary: Sends application trace data to Stackdriver Trace for viewing. Trace data