google-apis-eventarc_v1 0.51.0 → 0.52.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:
|
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
@@ -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
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
|
@@ -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: []
|