google-cloud-eventarc-publishing-v1 1.1.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd77d006f942e02bcbd0c4d1d9e233ed12a2c644083e2cb6ee75e13fdb9015a6
4
- data.tar.gz: 2e92aac534dda2a9ba402f78840aa2e4c224cce6d3dd886857f6eab59837ddad
3
+ metadata.gz: 960bfb66aaaef6cbb47d248c7c8684bb5d8113eabc21d36a587cd1a7e2141ceb
4
+ data.tar.gz: 126b023baefc2a36001dbf4cccded9e6ff1bf12a75a2d1dfdb328dfe1a12432e
5
5
  SHA512:
6
- metadata.gz: 30bfe2239cb458002e5e14270c22f6045e338d51325f62d85d3c6580528428c7b929762125afe1abc735251dc490d58d588bf333cf1bbc3faac5cfd294a40fb6
7
- data.tar.gz: '015915bd3e73c7dacca98376a8d7026050cbea752008922ad45707dbf7e7954694fc9ed71998bda9b6a1292afb30b12975d110fe7c692dd95e0a1e35d2166053'
6
+ metadata.gz: 1d29c0daf3ec84a638dee18dcc5e21032dc8209c82f33f2f5009094eeb613128579d0bc26b5d5da1976450af454096757b88b95d8b010d0b809d51ba318913ff
7
+ data.tar.gz: f9e4531b05f499c972d53f89c29910c836c28c847155d9873592bac669416e468d2435f60dcea7ee877d30212e3b117e18a1427e8060f398ea674f896b248eb7
data/README.md CHANGED
@@ -43,40 +43,50 @@ for class and method documentation.
43
43
  See also the [Product Documentation](https://cloud.google.com/eventarc/)
44
44
  for general usage information.
45
45
 
46
- ## Enabling Logging
47
-
48
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
- that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
-
54
- Configuring a Ruby stdlib logger:
46
+ ## Debug Logging
47
+
48
+ This library comes with opt-in Debug Logging that can help you troubleshoot
49
+ your application's integration with the API. When logging is activated, key
50
+ events such as requests and responses, along with data payloads and metadata
51
+ such as headers and client configuration, are logged to the standard error
52
+ stream.
53
+
54
+ **WARNING:** Client Library Debug Logging includes your data payloads in
55
+ plaintext, which could include sensitive data such as PII for yourself or your
56
+ customers, private keys, or other security data that could be compromising if
57
+ leaked. Always practice good data hygiene with your application logs, and follow
58
+ the principle of least access. Google also recommends that Client Library Debug
59
+ Logging be enabled only temporarily during active debugging, and not used
60
+ permanently in production.
61
+
62
+ To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
63
+ to the value `all`. Alternatively, you can set the value to a comma-delimited
64
+ list of client library gem names. This will select the default logging behavior,
65
+ which writes logs to the standard error stream. On a local workstation, this may
66
+ result in logs appearing on the console. When running on a Google Cloud hosting
67
+ service such as [Google Cloud Run](https://cloud.google.com/run), this generally
68
+ results in logs appearing alongside your application logs in the
69
+ [Google Cloud Logging](https://cloud.google.com/logging/) service.
70
+
71
+ You can customize logging by modifying the `logger` configuration when
72
+ constructing a client object. For example:
55
73
 
56
74
  ```ruby
75
+ require "google/cloud/eventarc/publishing/v1"
57
76
  require "logger"
58
77
 
59
- module MyLogger
60
- LOGGER = Logger.new $stderr, level: Logger::WARN
61
- def logger
62
- LOGGER
63
- end
64
- end
65
-
66
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
67
- module GRPC
68
- extend MyLogger
78
+ client = ::Google::Cloud::Eventarc::Publishing::V1::Publisher::Client.new do |config|
79
+ config.logger = Logger.new "my-app.log"
69
80
  end
70
81
  ```
71
82
 
72
-
73
83
  ## Google Cloud Samples
74
84
 
75
85
  To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
76
86
 
77
87
  ## Supported Ruby Versions
78
88
 
79
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
80
90
 
81
91
  Google provides official support for Ruby versions that are actively supported
82
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -183,8 +183,28 @@ module Google
183
183
  universe_domain: @config.universe_domain,
184
184
  channel_args: @config.channel_args,
185
185
  interceptors: @config.interceptors,
186
- channel_pool_config: @config.channel_pool
186
+ channel_pool_config: @config.channel_pool,
187
+ logger: @config.logger
187
188
  )
189
+
190
+ @publisher_stub.stub_logger&.info do |entry|
191
+ entry.set_system_name
192
+ entry.set_service
193
+ entry.message = "Created client for #{entry.service}"
194
+ entry.set_credentials_fields credentials
195
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
196
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
197
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
198
+ end
199
+ end
200
+
201
+ ##
202
+ # The logger used for request/response debug logging.
203
+ #
204
+ # @return [Logger]
205
+ #
206
+ def logger
207
+ @publisher_stub.logger
188
208
  end
189
209
 
190
210
  # Service calls
@@ -279,7 +299,6 @@ module Google
279
299
 
280
300
  @publisher_stub.call_rpc :publish_channel_connection_events, request, options: options do |response, operation|
281
301
  yield response, operation if block_given?
282
- return response
283
302
  end
284
303
  rescue ::GRPC::BadStatus => e
285
304
  raise ::Google::Cloud::Error.from_error(e)
@@ -375,7 +394,6 @@ module Google
375
394
 
376
395
  @publisher_stub.call_rpc :publish_events, request, options: options do |response, operation|
377
396
  yield response, operation if block_given?
378
- return response
379
397
  end
380
398
  rescue ::GRPC::BadStatus => e
381
399
  raise ::Google::Cloud::Error.from_error(e)
@@ -406,15 +424,21 @@ module Google
406
424
  # The Protobuf format of the CloudEvent being published. Specification can
407
425
  # be found here:
408
426
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/protobuf-format.md
427
+ #
428
+ # Note: The following fields are mutually exclusive: `proto_message`, `json_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
409
429
  # @param json_message [::String]
410
430
  # The JSON format of the CloudEvent being published. Specification can be
411
431
  # found here:
412
432
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/json-format.md
433
+ #
434
+ # Note: The following fields are mutually exclusive: `json_message`, `proto_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
413
435
  # @param avro_message [::String]
414
436
  # The Avro format of the CloudEvent being published. Specification can
415
437
  # be found here:
416
438
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/avro-format.md
417
439
  #
440
+ # Note: The following fields are mutually exclusive: `avro_message`, `proto_message`, `json_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
441
+ #
418
442
  # @yield [response, operation] Access the result along with the RPC operation
419
443
  # @yieldparam response [::Google::Cloud::Eventarc::Publishing::V1::PublishResponse]
420
444
  # @yieldparam operation [::GRPC::ActiveCall::Operation]
@@ -474,7 +498,6 @@ module Google
474
498
 
475
499
  @publisher_stub.call_rpc :publish, request, options: options do |response, operation|
476
500
  yield response, operation if block_given?
477
- return response
478
501
  end
479
502
  rescue ::GRPC::BadStatus => e
480
503
  raise ::Google::Cloud::Error.from_error(e)
@@ -524,6 +547,13 @@ module Google
524
547
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
525
548
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
526
549
  # * (`nil`) indicating no credentials
550
+ #
551
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
552
+ # external source for authentication to Google Cloud, you must validate it before
553
+ # providing it to a Google API client library. Providing an unvalidated credential
554
+ # configuration to Google APIs can compromise the security of your systems and data.
555
+ # For more information, refer to [Validate credential configurations from external
556
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
527
557
  # @return [::Object]
528
558
  # @!attribute [rw] scope
529
559
  # The OAuth scopes
@@ -563,6 +593,11 @@ module Google
563
593
  # default endpoint URL. The default value of nil uses the environment
564
594
  # universe (usually the default "googleapis.com" universe).
565
595
  # @return [::String,nil]
596
+ # @!attribute [rw] logger
597
+ # A custom logger to use for request/response debug logging, or the value
598
+ # `:default` (the default) to construct a default logger, or `nil` to
599
+ # explicitly disable logging.
600
+ # @return [::Logger,:default,nil]
566
601
  #
567
602
  class Configuration
568
603
  extend ::Gapic::Config
@@ -587,6 +622,7 @@ module Google
587
622
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
588
623
  config_attr :quota_project, nil, ::String, nil
589
624
  config_attr :universe_domain, nil, ::String, nil
625
+ config_attr :logger, :default, ::Logger, nil, :default
590
626
 
591
627
  # @private
592
628
  def initialize parent_config = nil
@@ -176,8 +176,28 @@ module Google
176
176
  endpoint: @config.endpoint,
177
177
  endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
178
178
  universe_domain: @config.universe_domain,
179
- credentials: credentials
179
+ credentials: credentials,
180
+ logger: @config.logger
180
181
  )
182
+
183
+ @publisher_stub.logger(stub: true)&.info do |entry|
184
+ entry.set_system_name
185
+ entry.set_service
186
+ entry.message = "Created client for #{entry.service}"
187
+ entry.set_credentials_fields credentials
188
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
189
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
190
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
191
+ end
192
+ end
193
+
194
+ ##
195
+ # The logger used for request/response debug logging.
196
+ #
197
+ # @return [Logger]
198
+ #
199
+ def logger
200
+ @publisher_stub.logger
181
201
  end
182
202
 
183
203
  # Service calls
@@ -265,7 +285,6 @@ module Google
265
285
 
266
286
  @publisher_stub.publish_channel_connection_events request, options do |result, operation|
267
287
  yield result, operation if block_given?
268
- return result
269
288
  end
270
289
  rescue ::Gapic::Rest::Error => e
271
290
  raise ::Google::Cloud::Error.from_error(e)
@@ -354,7 +373,6 @@ module Google
354
373
 
355
374
  @publisher_stub.publish_events request, options do |result, operation|
356
375
  yield result, operation if block_given?
357
- return result
358
376
  end
359
377
  rescue ::Gapic::Rest::Error => e
360
378
  raise ::Google::Cloud::Error.from_error(e)
@@ -385,14 +403,20 @@ module Google
385
403
  # The Protobuf format of the CloudEvent being published. Specification can
386
404
  # be found here:
387
405
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/protobuf-format.md
406
+ #
407
+ # Note: The following fields are mutually exclusive: `proto_message`, `json_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
388
408
  # @param json_message [::String]
389
409
  # The JSON format of the CloudEvent being published. Specification can be
390
410
  # found here:
391
411
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/json-format.md
412
+ #
413
+ # Note: The following fields are mutually exclusive: `json_message`, `proto_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
392
414
  # @param avro_message [::String]
393
415
  # The Avro format of the CloudEvent being published. Specification can
394
416
  # be found here:
395
417
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/avro-format.md
418
+ #
419
+ # Note: The following fields are mutually exclusive: `avro_message`, `proto_message`, `json_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
396
420
  # @yield [result, operation] Access the result along with the TransportOperation object
397
421
  # @yieldparam result [::Google::Cloud::Eventarc::Publishing::V1::PublishResponse]
398
422
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -446,7 +470,6 @@ module Google
446
470
 
447
471
  @publisher_stub.publish request, options do |result, operation|
448
472
  yield result, operation if block_given?
449
- return result
450
473
  end
451
474
  rescue ::Gapic::Rest::Error => e
452
475
  raise ::Google::Cloud::Error.from_error(e)
@@ -494,6 +517,13 @@ module Google
494
517
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
495
518
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
496
519
  # * (`nil`) indicating no credentials
520
+ #
521
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
522
+ # external source for authentication to Google Cloud, you must validate it before
523
+ # providing it to a Google API client library. Providing an unvalidated credential
524
+ # configuration to Google APIs can compromise the security of your systems and data.
525
+ # For more information, refer to [Validate credential configurations from external
526
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
497
527
  # @return [::Object]
498
528
  # @!attribute [rw] scope
499
529
  # The OAuth scopes
@@ -526,6 +556,11 @@ module Google
526
556
  # default endpoint URL. The default value of nil uses the environment
527
557
  # universe (usually the default "googleapis.com" universe).
528
558
  # @return [::String,nil]
559
+ # @!attribute [rw] logger
560
+ # A custom logger to use for request/response debug logging, or the value
561
+ # `:default` (the default) to construct a default logger, or `nil` to
562
+ # explicitly disable logging.
563
+ # @return [::Logger,:default,nil]
529
564
  #
530
565
  class Configuration
531
566
  extend ::Gapic::Config
@@ -547,6 +582,7 @@ module Google
547
582
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
548
583
  config_attr :quota_project, nil, ::String, nil
549
584
  config_attr :universe_domain, nil, ::String, nil
585
+ config_attr :logger, :default, ::Logger, nil, :default
550
586
 
551
587
  # @private
552
588
  def initialize parent_config = nil
@@ -31,7 +31,8 @@ module Google
31
31
  # including transcoding, making the REST call, and deserialing the response.
32
32
  #
33
33
  class ServiceStub
34
- def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
34
+ # @private
35
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
35
36
  # These require statements are intentionally placed here to initialize
36
37
  # the REST modules only when it's required.
37
38
  require "gapic/rest"
@@ -41,7 +42,9 @@ module Google
41
42
  universe_domain: universe_domain,
42
43
  credentials: credentials,
43
44
  numeric_enums: true,
44
- raise_faraday_errors: false
45
+ service_name: self.class,
46
+ raise_faraday_errors: false,
47
+ logger: logger
45
48
  end
46
49
 
47
50
  ##
@@ -62,6 +65,15 @@ module Google
62
65
  @client_stub.endpoint
63
66
  end
64
67
 
68
+ ##
69
+ # The logger used for request/response debug logging.
70
+ #
71
+ # @return [Logger]
72
+ #
73
+ def logger stub: false
74
+ stub ? @client_stub.stub_logger : @client_stub.logger
75
+ end
76
+
65
77
  ##
66
78
  # Baseline implementation for the publish_channel_connection_events REST call
67
79
  #
@@ -88,16 +100,18 @@ module Google
88
100
 
89
101
  response = @client_stub.make_http_request(
90
102
  verb,
91
- uri: uri,
92
- body: body || "",
93
- params: query_string_params,
103
+ uri: uri,
104
+ body: body || "",
105
+ params: query_string_params,
106
+ method_name: "publish_channel_connection_events",
94
107
  options: options
95
108
  )
96
109
  operation = ::Gapic::Rest::TransportOperation.new response
97
110
  result = ::Google::Cloud::Eventarc::Publishing::V1::PublishChannelConnectionEventsResponse.decode_json response.body, ignore_unknown_fields: true
98
-
99
- yield result, operation if block_given?
100
- result
111
+ catch :response do
112
+ yield result, operation if block_given?
113
+ result
114
+ end
101
115
  end
102
116
 
103
117
  ##
@@ -126,16 +140,18 @@ module Google
126
140
 
127
141
  response = @client_stub.make_http_request(
128
142
  verb,
129
- uri: uri,
130
- body: body || "",
131
- params: query_string_params,
143
+ uri: uri,
144
+ body: body || "",
145
+ params: query_string_params,
146
+ method_name: "publish_events",
132
147
  options: options
133
148
  )
134
149
  operation = ::Gapic::Rest::TransportOperation.new response
135
150
  result = ::Google::Cloud::Eventarc::Publishing::V1::PublishEventsResponse.decode_json response.body, ignore_unknown_fields: true
136
-
137
- yield result, operation if block_given?
138
- result
151
+ catch :response do
152
+ yield result, operation if block_given?
153
+ result
154
+ end
139
155
  end
140
156
 
141
157
  ##
@@ -164,16 +180,18 @@ module Google
164
180
 
165
181
  response = @client_stub.make_http_request(
166
182
  verb,
167
- uri: uri,
168
- body: body || "",
169
- params: query_string_params,
183
+ uri: uri,
184
+ body: body || "",
185
+ params: query_string_params,
186
+ method_name: "publish",
170
187
  options: options
171
188
  )
172
189
  operation = ::Gapic::Rest::TransportOperation.new response
173
190
  result = ::Google::Cloud::Eventarc::Publishing::V1::PublishResponse.decode_json response.body, ignore_unknown_fields: true
174
-
175
- yield result, operation if block_given?
176
- result
191
+ catch :response do
192
+ yield result, operation if block_given?
193
+ result
194
+ end
177
195
  end
178
196
 
179
197
  ##
@@ -22,7 +22,7 @@ module Google
22
22
  module Eventarc
23
23
  module Publishing
24
24
  module V1
25
- VERSION = "1.1.0"
25
+ VERSION = "1.3.0"
26
26
  end
27
27
  end
28
28
  end
@@ -306,9 +306,28 @@ module Google
306
306
  # @!attribute [rw] common
307
307
  # @return [::Google::Api::CommonLanguageSettings]
308
308
  # Some settings.
309
+ # @!attribute [rw] renamed_services
310
+ # @return [::Google::Protobuf::Map{::String => ::String}]
311
+ # Map of service names to renamed services. Keys are the package relative
312
+ # service names and values are the name to be used for the service client
313
+ # and call options.
314
+ #
315
+ # publishing:
316
+ # go_settings:
317
+ # renamed_services:
318
+ # Publisher: TopicAdmin
309
319
  class GoSettings
310
320
  include ::Google::Protobuf::MessageExts
311
321
  extend ::Google::Protobuf::MessageExts::ClassMethods
322
+
323
+ # @!attribute [rw] key
324
+ # @return [::String]
325
+ # @!attribute [rw] value
326
+ # @return [::String]
327
+ class RenamedServicesEntry
328
+ include ::Google::Protobuf::MessageExts
329
+ extend ::Google::Protobuf::MessageExts::ClassMethods
330
+ end
312
331
  end
313
332
 
314
333
  # Describes the generator configuration for a method.
@@ -46,12 +46,18 @@ module Google
46
46
  # @!attribute [rw] binary_data
47
47
  # @return [::String]
48
48
  # Optional. Binary data.
49
+ #
50
+ # Note: The following fields are mutually exclusive: `binary_data`, `text_data`, `proto_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
49
51
  # @!attribute [rw] text_data
50
52
  # @return [::String]
51
53
  # Optional. Text data.
54
+ #
55
+ # Note: The following fields are mutually exclusive: `text_data`, `binary_data`, `proto_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
52
56
  # @!attribute [rw] proto_data
53
57
  # @return [::Google::Protobuf::Any]
54
58
  # Optional. Proto data.
59
+ #
60
+ # Note: The following fields are mutually exclusive: `proto_data`, `binary_data`, `text_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
55
61
  class CloudEvent
56
62
  include ::Google::Protobuf::MessageExts
57
63
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -60,24 +66,38 @@ module Google
60
66
  # @!attribute [rw] ce_boolean
61
67
  # @return [::Boolean]
62
68
  # Boolean value.
69
+ #
70
+ # Note: The following fields are mutually exclusive: `ce_boolean`, `ce_integer`, `ce_string`, `ce_bytes`, `ce_uri`, `ce_uri_ref`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
63
71
  # @!attribute [rw] ce_integer
64
72
  # @return [::Integer]
65
73
  # Integer value.
74
+ #
75
+ # Note: The following fields are mutually exclusive: `ce_integer`, `ce_boolean`, `ce_string`, `ce_bytes`, `ce_uri`, `ce_uri_ref`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
66
76
  # @!attribute [rw] ce_string
67
77
  # @return [::String]
68
78
  # String value.
79
+ #
80
+ # Note: The following fields are mutually exclusive: `ce_string`, `ce_boolean`, `ce_integer`, `ce_bytes`, `ce_uri`, `ce_uri_ref`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
69
81
  # @!attribute [rw] ce_bytes
70
82
  # @return [::String]
71
83
  # Bytes value.
84
+ #
85
+ # Note: The following fields are mutually exclusive: `ce_bytes`, `ce_boolean`, `ce_integer`, `ce_string`, `ce_uri`, `ce_uri_ref`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
72
86
  # @!attribute [rw] ce_uri
73
87
  # @return [::String]
74
88
  # URI value.
89
+ #
90
+ # Note: The following fields are mutually exclusive: `ce_uri`, `ce_boolean`, `ce_integer`, `ce_string`, `ce_bytes`, `ce_uri_ref`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
75
91
  # @!attribute [rw] ce_uri_ref
76
92
  # @return [::String]
77
93
  # URI-reference value.
94
+ #
95
+ # Note: The following fields are mutually exclusive: `ce_uri_ref`, `ce_boolean`, `ce_integer`, `ce_string`, `ce_bytes`, `ce_uri`, `ce_timestamp`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
96
  # @!attribute [rw] ce_timestamp
79
97
  # @return [::Google::Protobuf::Timestamp]
80
98
  # Timestamp value.
99
+ #
100
+ # Note: The following fields are mutually exclusive: `ce_timestamp`, `ce_boolean`, `ce_integer`, `ce_string`, `ce_bytes`, `ce_uri`, `ce_uri_ref`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
101
  class CloudEventAttributeValue
82
102
  include ::Google::Protobuf::MessageExts
83
103
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -86,16 +86,22 @@ module Google
86
86
  # The Protobuf format of the CloudEvent being published. Specification can
87
87
  # be found here:
88
88
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/protobuf-format.md
89
+ #
90
+ # Note: The following fields are mutually exclusive: `proto_message`, `json_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
89
91
  # @!attribute [rw] json_message
90
92
  # @return [::String]
91
93
  # The JSON format of the CloudEvent being published. Specification can be
92
94
  # found here:
93
95
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/json-format.md
96
+ #
97
+ # Note: The following fields are mutually exclusive: `json_message`, `proto_message`, `avro_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
94
98
  # @!attribute [rw] avro_message
95
99
  # @return [::String]
96
100
  # The Avro format of the CloudEvent being published. Specification can
97
101
  # be found here:
98
102
  # https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/avro-format.md
103
+ #
104
+ # Note: The following fields are mutually exclusive: `avro_message`, `proto_message`, `json_message`. If a field in that set is populated, all other fields in the set will automatically be cleared.
99
105
  class PublishRequest
100
106
  include ::Google::Protobuf::MessageExts
101
107
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-eventarc-publishing-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-13 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.21.1
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.21.1
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -88,7 +87,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
88
87
  licenses:
89
88
  - Apache-2.0
90
89
  metadata: {}
91
- post_install_message:
92
90
  rdoc_options: []
93
91
  require_paths:
94
92
  - lib
@@ -96,15 +94,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
94
  requirements:
97
95
  - - ">="
98
96
  - !ruby/object:Gem::Version
99
- version: '2.7'
97
+ version: '3.0'
100
98
  required_rubygems_version: !ruby/object:Gem::Requirement
101
99
  requirements:
102
100
  - - ">="
103
101
  - !ruby/object:Gem::Version
104
102
  version: '0'
105
103
  requirements: []
106
- rubygems_version: 3.5.22
107
- signing_key:
104
+ rubygems_version: 3.6.2
108
105
  specification_version: 4
109
106
  summary: Processes events generated by an event provider and delivers them to a subscriber.
110
107
  test_files: []