google-apis-eventarc_v1 0.51.0 → 0.53.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: 2b01a67c6ef60b74651ac007a7ff1ca8e3a25090a081218ed4783f9350206235
4
- data.tar.gz: fded80b3af929200c7e45ef1fb44e8da2a5c4613cc784b8328bd6cb687688964
3
+ metadata.gz: c05c95e2389058ff1c158a16408dafd3f95060cd21fd506b92d3cdd67cd64d08
4
+ data.tar.gz: a4b1ebf0e6b99a8362ccd86e24656e8c528687c5d4e04983d9cba3013e7ad6a0
5
5
  SHA512:
6
- metadata.gz: d0b4bee971637e70eb6bc2450421400a7547804c52169f6142e7efa2076852d9df4f25caf0d2dd155dafa54209eba1f5f23474917f86dcfc3595ae0ecf304c6d
7
- data.tar.gz: 8907d0e4f5a3b2f0557d9a545c875346522d09e2d498b48e6ca5db95dfbca8fa6e57f99630bbc4918e51ae6746419ece30e45669d5bdbd81af082f2af8b353f2
6
+ metadata.gz: 5c432d4cb1711171dd69722bd130dca641d62af7204278a8872a009059679ba0bb0c0f1caedcfb62cd0257ce71a6b3118a694ab910fb029ffc60d1afd2e17970
7
+ data.tar.gz: 124db459c94248ca990be3975c52babacaa254bd1b2b00e9fa8fa558b52dd31d6fe3b25ff0a7e12c03279aaac9abf689a19b992e56f0cccf1f854cd83cf5c0ef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-eventarc_v1
2
2
 
3
+ ### v0.53.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240510
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.52.0 (2024-04-28)
9
+
10
+ * Regenerated from discovery document revision 20240417
11
+
3
12
  ### v0.51.0 (2024-02-24)
4
13
 
5
14
  * Regenerated using generator version 0.14.0
@@ -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)
@@ -394,8 +402,7 @@ module Google
394
402
  # @return [Google::Apis::EventarcV1::HttpEndpoint]
395
403
  attr_accessor :http_endpoint
396
404
 
397
- # Represents a network config to be used for destination resolution and
398
- # connectivity.
405
+ # Network Configuration that can be inherited by other protos.
399
406
  # Corresponds to the JSON property `networkConfig`
400
407
  # @return [Google::Apis::EventarcV1::NetworkConfig]
401
408
  attr_accessor :network_config
@@ -1062,12 +1069,11 @@ module Google
1062
1069
  end
1063
1070
  end
1064
1071
 
1065
- # Represents a network config to be used for destination resolution and
1066
- # connectivity.
1072
+ # Network Configuration that can be inherited by other protos.
1067
1073
  class NetworkConfig
1068
1074
  include Google::Apis::Core::Hashable
1069
1075
 
1070
- # Required. Name of the NetworkAttachment that allows access to the destination
1076
+ # Required. Name of the NetworkAttachment that allows access to the customer's
1071
1077
  # VPC. Format: `projects/`PROJECT_ID`/regions/`REGION`/networkAttachments/`
1072
1078
  # NETWORK_ATTACHMENT_NAME``
1073
1079
  # Corresponds to the JSON property `networkAttachment`
@@ -1498,6 +1504,13 @@ module Google
1498
1504
  # @return [String]
1499
1505
  attr_accessor :name
1500
1506
 
1507
+ # Output only. Whether or not this Trigger satisfies the requirements of
1508
+ # physical zone separation
1509
+ # Corresponds to the JSON property `satisfiesPzs`
1510
+ # @return [Boolean]
1511
+ attr_accessor :satisfies_pzs
1512
+ alias_method :satisfies_pzs?, :satisfies_pzs
1513
+
1501
1514
  # Optional. The IAM service account email associated with the trigger. The
1502
1515
  # service account represents the identity of the trigger. The `iam.
1503
1516
  # serviceAccounts.actAs` permission must be granted on the service account to
@@ -1540,6 +1553,7 @@ module Google
1540
1553
  @event_filters = args[:event_filters] if args.key?(:event_filters)
1541
1554
  @labels = args[:labels] if args.key?(:labels)
1542
1555
  @name = args[:name] if args.key?(:name)
1556
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1543
1557
  @service_account = args[:service_account] if args.key?(:service_account)
1544
1558
  @transport = args[:transport] if args.key?(:transport)
1545
1559
  @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.51.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240119"
25
+ REVISION = "20240510"
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.51.0
4
+ version: 0.53.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-05-19 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.14.0
19
+ version: 0.15.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.14.0
29
+ version: 0.15.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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.53.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: []