google-apis-eventarc_v1 0.50.0 → 0.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/eventarc_v1/classes.rb +16 -0
- data/lib/google/apis/eventarc_v1/gem_version.rb +3 -3
- data/lib/google/apis/eventarc_v1/representations.rb +2 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a22c680f6023d285c474cc2051d163b652166f0150fd817e777ae6aa43fcdcab
|
4
|
+
data.tar.gz: 41fcf5d1e57db440f8a020edc00887d1fd027c6eba799bb3e929d3ca3f0abc42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91757731083ce5681141f3c9b6624f828f82b8da2b54ac15d313e332a9a35c60ef2923505f61cc53802d7760ff424e6be420ec0599d76192256372fea8944dac
|
7
|
+
data.tar.gz: 17da8f6b765d7d2f45aed8e0b94842dfffc9dcf178a8495c529e7533ceb9e9c40a9a1bf7d31878e12b10e4ac7cd8a9c84178041d3755217a2c2a46d58dbf3f70
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-eventarc_v1
|
2
2
|
|
3
|
+
### v0.52.0 (2024-04-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240417
|
6
|
+
|
7
|
+
### v0.51.0 (2024-02-24)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.14.0
|
10
|
+
|
3
11
|
### v0.50.0 (2024-01-28)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240119
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/eventarc) may provide guida
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -241,6 +241,13 @@ module Google
|
|
241
241
|
# @return [String]
|
242
242
|
attr_accessor :pubsub_topic
|
243
243
|
|
244
|
+
# Output only. Whether or not this Channel satisfies the requirements of
|
245
|
+
# physical zone separation
|
246
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
247
|
+
# @return [Boolean]
|
248
|
+
attr_accessor :satisfies_pzs
|
249
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
250
|
+
|
244
251
|
# Output only. The state of a Channel.
|
245
252
|
# Corresponds to the JSON property `state`
|
246
253
|
# @return [String]
|
@@ -269,6 +276,7 @@ module Google
|
|
269
276
|
@name = args[:name] if args.key?(:name)
|
270
277
|
@provider = args[:provider] if args.key?(:provider)
|
271
278
|
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
279
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
272
280
|
@state = args[:state] if args.key?(:state)
|
273
281
|
@uid = args[:uid] if args.key?(:uid)
|
274
282
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1498,6 +1506,13 @@ module Google
|
|
1498
1506
|
# @return [String]
|
1499
1507
|
attr_accessor :name
|
1500
1508
|
|
1509
|
+
# Output only. Whether or not this Trigger satisfies the requirements of
|
1510
|
+
# physical zone separation
|
1511
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1512
|
+
# @return [Boolean]
|
1513
|
+
attr_accessor :satisfies_pzs
|
1514
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1515
|
+
|
1501
1516
|
# Optional. The IAM service account email associated with the trigger. The
|
1502
1517
|
# service account represents the identity of the trigger. The `iam.
|
1503
1518
|
# serviceAccounts.actAs` permission must be granted on the service account to
|
@@ -1540,6 +1555,7 @@ module Google
|
|
1540
1555
|
@event_filters = args[:event_filters] if args.key?(:event_filters)
|
1541
1556
|
@labels = args[:labels] if args.key?(:labels)
|
1542
1557
|
@name = args[:name] if args.key?(:name)
|
1558
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1543
1559
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1544
1560
|
@transport = args[:transport] if args.key?(:transport)
|
1545
1561
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240417"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,6 +274,7 @@ module Google
|
|
274
274
|
property :name, as: 'name'
|
275
275
|
property :provider, as: 'provider'
|
276
276
|
property :pubsub_topic, as: 'pubsubTopic'
|
277
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
277
278
|
property :state, as: 'state'
|
278
279
|
property :uid, as: 'uid'
|
279
280
|
property :update_time, as: 'updateTime'
|
@@ -590,6 +591,7 @@ module Google
|
|
590
591
|
|
591
592
|
hash :labels, as: 'labels'
|
592
593
|
property :name, as: 'name'
|
594
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
593
595
|
property :service_account, as: 'serviceAccount'
|
594
596
|
property :transport, as: 'transport', class: Google::Apis::EventarcV1::Transport, decorator: Google::Apis::EventarcV1::Transport::Representation
|
595
597
|
|
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.
|
4
|
+
version: 0.52.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: 2024-
|
11
|
+
date: 2024-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.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.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.52.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: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Eventarc API V1
|