google-apis-cloudtrace_v2beta1 0.8.0 → 0.11.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: 9a44e3b5a918ecd33280d8625dec8c000fa0a5eb7a0085058e340ae57cbdcb7c
4
- data.tar.gz: ee11d57d88e60f9feb75bd79678d2a7ef63f56e25f70bb6c4fa4a0e29cfadaa9
3
+ metadata.gz: 5fdb6cc7333d2352814661f857e6c86a12fe900a4ef8797eb96d4338ea0e53e8
4
+ data.tar.gz: 037d25f4b3be2e40c79209569eb730c1e4d9ac7cf10ed5172445411532db6d8e
5
5
  SHA512:
6
- metadata.gz: 2fc5e480bd7c6d26ea73b4ec3f0a6b3d85a77685f595c03e63d074902925a7c265e9d5e3538697f91f751996d47299361a6a942b87c92381b4b019b562e0e3c1
7
- data.tar.gz: 37eb44e0d8b89af81b7b6eefdfcf5391eb06ef3873511163d8b3895c33b250d75b64ada9fca429437afa59cb12bac7f3c4aae2e357f80fa6a9a844f8bb90630b
6
+ metadata.gz: 8ed6393e4e49b33eea7d4418c65ef01a61e6019040259aad8eabc240ca9de401d69aad672e19f0307ba4160f80e56f67486768a53ccedeb354ee02ba4536cd67
7
+ data.tar.gz: a550090b52b1a3759f9ed223c2ecf99420121a3dedbc5da3b01442a6c5c5c143002d575c7571a8278fca5c357bbb43859e0ac7b4a35c88658f4abc276079aa50
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudtrace_v2beta1
2
2
 
3
+ ### v0.11.0 (2022-04-09)
4
+
5
+ * Regenerated from discovery document revision 20220330
6
+
7
+ ### v0.10.0 (2022-03-05)
8
+
9
+ * Regenerated from discovery document revision 20220224
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.9.0 (2021-12-16)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.8.0 (2021-10-20)
4
17
 
5
18
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/cloudtrace_v2beta1"
51
51
  client = Google::Apis::CloudtraceV2beta1::CloudTraceService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -25,8 +25,7 @@ module Google
25
25
  # A generic empty message that you can re-use to avoid defining duplicated empty
26
26
  # messages in your APIs. A typical example is to use it as the request or the
27
27
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
28
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
29
- # `Empty` is empty JSON object ````.
28
+ # protobuf.Empty) returns (google.protobuf.Empty); `
30
29
  class Empty
31
30
  include Google::Apis::Core::Hashable
32
31
 
@@ -43,9 +42,9 @@ module Google
43
42
  class ListTraceSinksResponse
44
43
  include Google::Apis::Core::Hashable
45
44
 
46
- # If there might be more results than appear in this response, then `
47
- # nextPageToken` is included. To get the next set of results, call the same
48
- # method again using the value of `nextPageToken` as `pageToken`.
45
+ # A paginated response where more pages might be available has `next_page_token`
46
+ # set. To get the next set of results, call the same method again using the
47
+ # value of `next_page_token` as `page_token`.
49
48
  # Corresponds to the JSON property `nextPageToken`
50
49
  # @return [String]
51
50
  attr_accessor :next_page_token
@@ -92,7 +91,7 @@ module Google
92
91
  include Google::Apis::Core::Hashable
93
92
 
94
93
  # Required. The canonical sink resource name, unique within the project. Must be
95
- # of the form: project/[PROJECT_NUMBER]/traceSinks/[SINK_ID]. E.g.: `"projects/
94
+ # of the form: projects/[PROJECT_NUMBER]/traceSinks/[SINK_ID]. E.g.: `"projects/
96
95
  # 12345/traceSinks/my-project-trace-sink"`. Sink identifiers are limited to 256
97
96
  # characters and can include only the following characters: upper and lower-case
98
97
  # alphanumeric characters, underscores, hyphens, and periods.
@@ -109,9 +108,9 @@ module Google
109
108
  # by sinks.create and sinks.update. The service account will need to be granted
110
109
  # write access to the destination specified in the output configuration, see [
111
110
  # Granting access for a resource](/iam/docs/granting-roles-to-service-accounts#
112
- # granting_access_to_a_service_account_for_a_resource). To create tables and
113
- # write data this account will need the dataEditor role. Read more about roles
114
- # in the [BigQuery documentation](https://cloud.google.com/bigquery/docs/access-
111
+ # granting_access_to_a_service_account_for_a_resource). To create tables and to
112
+ # write data, this account needs the `dataEditor` role. Read more about roles in
113
+ # the [BigQuery documentation](https://cloud.google.com/bigquery/docs/access-
115
114
  # control). E.g.: "service-00000001@00000002.iam.gserviceaccount.com"
116
115
  # Corresponds to the JSON property `writerIdentity`
117
116
  # @return [String]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudtraceV2beta1
18
18
  # Version of the google-apis-cloudtrace_v2beta1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210812"
25
+ REVISION = "20220330"
26
26
  end
27
27
  end
28
28
  end
@@ -26,7 +26,7 @@ module Google
26
26
  # collected for all App Engine applications by default. Trace data from other
27
27
  # applications can be provided using this API. This library is used to interact
28
28
  # with the Cloud Trace API directly. If you are looking to instrument your
29
- # application for Cloud Trace, we recommend using OpenCensus.
29
+ # application for Cloud Trace, we recommend using OpenTelemetry.
30
30
  #
31
31
  # @example
32
32
  # require 'google/apis/cloudtrace_v2beta1'
@@ -160,13 +160,13 @@ module Google
160
160
  # project parent resources are supported): "projects/[PROJECT_ID]"
161
161
  # @param [Fixnum] page_size
162
162
  # Optional. The maximum number of results to return from this request. Non-
163
- # positive values are ignored. The presence of `nextPageToken` in the response
163
+ # positive values are ignored. The presence of `next_page_token` in the response
164
164
  # indicates that more results might be available.
165
165
  # @param [String] page_token
166
166
  # Optional. If present, then retrieve the next batch of results from the
167
- # preceding call to this method. `pageToken` must be the value of `nextPageToken`
168
- # from the previous response. The values of other method parameters should be
169
- # identical to those in the previous call.
167
+ # preceding call to this method. `page_token` must be the value of `
168
+ # next_page_token` from the previous response. The values of other method
169
+ # parameters should be identical to those in the previous call.
170
170
  # @param [String] fields
171
171
  # Selector specifying which fields to include in a partial response.
172
172
  # @param [String] quota_user
@@ -207,8 +207,8 @@ module Google
207
207
  # @param [String] update_mask
208
208
  # Required. Field mask that specifies the fields in `trace_sink` that are to be
209
209
  # updated. A sink field is overwritten if, and only if, it is in the update mask.
210
- # `name` and `writer_identity` fields cannot be updated. An empty updateMask is
211
- # considered an error. For a detailed `FieldMask` definition, see https://
210
+ # `name` and `writer_identity` fields cannot be updated. An empty `update_mask`
211
+ # is considered an error. For a detailed `FieldMask` definition, see https://
212
212
  # developers.google.com/protocol-buffers/docs/reference/google.protobuf#
213
213
  # fieldmask Example: `updateMask=output_config`.
214
214
  # @param [String] fields
@@ -25,7 +25,7 @@ module Google
25
25
  # collected for all App Engine applications by default. Trace data from other
26
26
  # applications can be provided using this API. This library is used to interact
27
27
  # with the Cloud Trace API directly. If you are looking to instrument your
28
- # application for Cloud Trace, we recommend using OpenCensus.
28
+ # application for Cloud Trace, we recommend using OpenTelemetry.
29
29
  #
30
30
  # @see https://cloud.google.com/trace
31
31
  module CloudtraceV2beta1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudtrace_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.11.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2022-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtrace_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v2beta1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v2beta1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtrace_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Trace API V2beta1