google-apis-eventarc_v1 0.18.0 → 0.19.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: b79644cbb8b764752356c712987e2e62d009e9dac993514a02ec776b43a882ba
4
- data.tar.gz: 0371d909c3dd50c9b42d68fb0a02aa4dc897c250aa7ab28c43bc6e0e102a300d
3
+ metadata.gz: 96201d51bf08f04ba3a50da7c016882c55ffdf7c6a7064e96cd331de41b2d3a8
4
+ data.tar.gz: ce01209dd36c8cd89921e444f4ee2811254e8cc75a0aecf02cc7b578ffac802d
5
5
  SHA512:
6
- metadata.gz: 5c829d98813781dea8a80a276c4d1cafb10c8bbd8e392327d9e66acf184b8e9b6abd4d098209da1770ac7dcb3b1a159dfe7faa5216c4340cb23066cc9183fa79
7
- data.tar.gz: 93963775b5b7164e25f57311f99a2b63b53752358b4e553cd19a22720ba7abfd38eb3c79b62242651ebd77027d3a3e79cec6b3760cd80d8421388d6b49aa3336
6
+ metadata.gz: 4c15576f8f0872f31c043272227dd37c04ee6ba02c1430920f42c347bc221a8a188ee69d0f55307406196b21976fcfc4da2ef8bc7f1ee229ab903c92c78d697a
7
+ data.tar.gz: c17e021cbcbc3ab533b8e0dd99cf4c28322742bb089c2eadd26f55e269587e8d7c3270f6e227f6e5c0195ad32d4b1ec0ef42907e7d3b69c798f4a1346d94b8d9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-eventarc_v1
2
2
 
3
+ ### v0.19.0 (2022-02-11)
4
+
5
+ * Regenerated from discovery document revision 20220205
6
+
3
7
  ### v0.18.0 (2022-02-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20220124
@@ -204,7 +204,7 @@ module Google
204
204
  include Google::Apis::Core::Hashable
205
205
 
206
206
  # The Cloud Function resource name. Only Cloud Functions V2 is supported. Format:
207
- # projects/`project`/locations/`location`/functions/`function`
207
+ # `projects/`project`/locations/`location`/functions/`function``
208
208
  # Corresponds to the JSON property `cloudFunction`
209
209
  # @return [String]
210
210
  attr_accessor :cloud_function
@@ -259,6 +259,14 @@ module Google
259
259
  # @return [String]
260
260
  attr_accessor :attribute
261
261
 
262
+ # Optional. The operator used for matching the events with the value of the
263
+ # filter. If not specified, only events that have an exact key-value pair
264
+ # specified in the filter are matched. The only allowed value is `match-path-
265
+ # pattern`.
266
+ # Corresponds to the JSON property `operator`
267
+ # @return [String]
268
+ attr_accessor :operator
269
+
262
270
  # Required. The value for the attribute.
263
271
  # Corresponds to the JSON property `value`
264
272
  # @return [String]
@@ -271,6 +279,7 @@ module Google
271
279
  # Update properties of this object
272
280
  def update!(**args)
273
281
  @attribute = args[:attribute] if args.key?(:attribute)
282
+ @operator = args[:operator] if args.key?(:operator)
274
283
  @value = args[:value] if args.key?(:value)
275
284
  end
276
285
  end
@@ -298,10 +307,10 @@ module Google
298
307
  attr_accessor :filtering_attributes
299
308
 
300
309
  # Output only. The full name of the event type (for example, "google.cloud.
301
- # storage.object.v1.finalized"). In the form of `provider-id`.`resource`.`
302
- # version`.`verb`. Types MUST be versioned and event schemas are guaranteed to
303
- # remain backward compatible within one version. Note that event type versions
304
- # and API versions do not need to match.
310
+ # storage.object.v1.finalized"). In the form of `provider-specific-prefix`.`
311
+ # resource`.`version`.`verb`. Types MUST be versioned and event schemas are
312
+ # guaranteed to remain backward compatible within one version. Note that event
313
+ # type versions and API versions do not need to match.
305
314
  # Corresponds to the JSON property `type`
306
315
  # @return [String]
307
316
  attr_accessor :type
@@ -906,8 +915,8 @@ module Google
906
915
  # @return [Array<Google::Apis::EventarcV1::EventType>]
907
916
  attr_accessor :event_types
908
917
 
909
- # Output only. In `projects/`project`/locations/`location`/providers/`provider-
910
- # id`` format.
918
+ # Output only. In `projects/`project`/locations/`location`/providers/`
919
+ # provider_id`` format.
911
920
  # Corresponds to the JSON property `name`
912
921
  # @return [String]
913
922
  attr_accessor :name
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module EventarcV1
18
18
  # Version of the google-apis-eventarc_v1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220124"
25
+ REVISION = "20220205"
26
26
  end
27
27
  end
28
28
  end
@@ -247,6 +247,7 @@ module Google
247
247
  # @private
248
248
  class Representation < Google::Apis::Core::JsonRepresentation
249
249
  property :attribute, as: 'attribute'
250
+ property :operator, as: 'operator'
250
251
  property :value, as: 'value'
251
252
  end
252
253
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-eventarc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.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: 2022-02-07 00:00:00.000000000 Z
11
+ date: 2022-02-14 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-eventarc_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_v1
63
63
  post_install_message:
64
64
  rdoc_options: []