google-apis-cloudfunctions_v2alpha 0.1.0 → 0.2.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: f4695037ca1a896897e2add6fa08748c1e7c18604e15fcefdd57579a47e90f0c
4
- data.tar.gz: '08f15656488774ca267a3e66730d3e321c875174fd6ea1b81707f6879f778ffd'
3
+ metadata.gz: df3b43ac023bacbfca2ec5887d3e5191b89e2527f39da92815613739816364c4
4
+ data.tar.gz: c7348bd4d4e19d2dcd23e4baab170d30de1d539396f234ef8ce816537a52fbe6
5
5
  SHA512:
6
- metadata.gz: 1e6a13d4239dc68984f4925d9220eba6f4478154d28d81e84a66c6da1443f845c92554d1d9f1cc66925537e58676653b9375c63912c8947d8d79c2c704081c94
7
- data.tar.gz: a4b5e946a018a34e4c7a06dff9e0a11532310111e68787eb4192d8e018ee8493e0f2daf8b77a8aea9280b68b6f17bf67009d83c14f9b8e2f30799c17efb017ea
6
+ metadata.gz: 37abba3148d01d0cc424fd514e336b6612d145b978259429755d3707e592f6b87bda7c4a21ee2738d5f8aa47f231b47c5deebe51afd320b664950429adcf731b
7
+ data.tar.gz: 59e06403bf6013f67898ee610ffc8afb9ccfeb46392599b5df82a538691f70cad5b3be7a308129fd884616cca143699982fb9e68da07c21466f3bf3ad14b82c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v2alpha
2
2
 
3
+ ### v0.2.0 (2022-03-25)
4
+
5
+ * Regenerated from discovery document revision 20220317
6
+
3
7
  ### v0.1.0 (2022-02-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20220203
@@ -258,6 +258,14 @@ module Google
258
258
  # @return [String]
259
259
  attr_accessor :attribute
260
260
 
261
+ # Optional. The operator used for matching the events with the value of the
262
+ # filter. If not specified, only events that have an exact key-value pair
263
+ # specified in the filter are matched. The only allowed value is `match-path-
264
+ # pattern`.
265
+ # Corresponds to the JSON property `operator`
266
+ # @return [String]
267
+ attr_accessor :operator
268
+
261
269
  # Required. The value for the attribute.
262
270
  # Corresponds to the JSON property `value`
263
271
  # @return [String]
@@ -270,6 +278,7 @@ module Google
270
278
  # Update properties of this object
271
279
  def update!(**args)
272
280
  @attribute = args[:attribute] if args.key?(:attribute)
281
+ @operator = args[:operator] if args.key?(:operator)
273
282
  @value = args[:value] if args.key?(:value)
274
283
  end
275
284
  end
@@ -1380,6 +1389,11 @@ module Google
1380
1389
  # @return [Fixnum]
1381
1390
  attr_accessor :min_instance_count
1382
1391
 
1392
+ # Output only. The name of service revision.
1393
+ # Corresponds to the JSON property `revision`
1394
+ # @return [String]
1395
+ attr_accessor :revision
1396
+
1383
1397
  # Output only. Name of the service associated with a Function. The format of
1384
1398
  # this field is `projects/`project`/locations/`region`/services/`service``
1385
1399
  # Corresponds to the JSON property `service`
@@ -1428,6 +1442,7 @@ module Google
1428
1442
  @ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
1429
1443
  @max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
1430
1444
  @min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
1445
+ @revision = args[:revision] if args.key?(:revision)
1431
1446
  @service = args[:service] if args.key?(:service)
1432
1447
  @service_account_email = args[:service_account_email] if args.key?(:service_account_email)
1433
1448
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudfunctionsV2alpha
18
18
  # Version of the google-apis-cloudfunctions_v2alpha gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.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 = "20220203"
25
+ REVISION = "20220317"
26
26
  end
27
27
  end
28
28
  end
@@ -285,6 +285,7 @@ module Google
285
285
  # @private
286
286
  class Representation < Google::Apis::Core::JsonRepresentation
287
287
  property :attribute, as: 'attribute'
288
+ property :operator, as: 'operator'
288
289
  property :value, as: 'value'
289
290
  end
290
291
  end
@@ -555,6 +556,7 @@ module Google
555
556
  property :ingress_settings, as: 'ingressSettings'
556
557
  property :max_instance_count, as: 'maxInstanceCount'
557
558
  property :min_instance_count, as: 'minInstanceCount'
559
+ property :revision, as: 'revision'
558
560
  property :service, as: 'service'
559
561
  property :service_account_email, as: 'serviceAccountEmail'
560
562
  property :timeout_seconds, as: 'timeoutSeconds'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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-21 00:00:00.000000000 Z
11
+ date: 2022-03-28 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-cloudfunctions_v2alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2alpha
63
63
  post_install_message:
64
64
  rdoc_options: []