google-apis-eventarc_v1 0.67.0 → 0.69.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: 766758a2307021819e9d8688f6842997c962919c0434d1570f2df0e41e042041
4
- data.tar.gz: 7b0af5bde52738151f4105572d542f08360146de07f7b5556fb872f8f934ff29
3
+ metadata.gz: '081bbbd9beb638bd3c3eef2c867be77a5a9a8741c644819560acc9cc1c75f4cf'
4
+ data.tar.gz: ed40de4471c622a845f17275019681f9c8bbf7c801249b104df752d22774c63a
5
5
  SHA512:
6
- metadata.gz: f3505ee9ddbede648be395232ce73162c87828b8274d61e5fd2d9f4d00b1d0cb2b7074f2f41452b2c049d1e58e90dc8f8797ddae9240673f24839fbddb91e015
7
- data.tar.gz: 221928bb3e6454032a3b4fcb54056c0650a96741db3bd386d28ec214d6fcae6905e3a72586059b885b3110c1b6fc2baab17d60ebb1ccd002f4a6fd6ea61836a6
6
+ metadata.gz: af3fec1f1d6cc70ddd68d45ab4bf885f895d424c48e0285a06299e67eabd9a20b1f4145c6ce4f309d021ec867cce7ec54a0edb661b5bb9f596d5725c068e5bee
7
+ data.tar.gz: 3d24e29100fc6a15953bd21d088f99ced4729306b35df9589c9669d09b7397773dec326ffc5288f2f71e073d79e49e8bbcb03d77a9b332bf9412977f23cbaa16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-eventarc_v1
2
2
 
3
+ ### v0.69.0 (2025-09-21)
4
+
5
+ * Regenerated from discovery document revision 20250912
6
+
7
+ ### v0.68.0 (2025-09-14)
8
+
9
+ * Regenerated from discovery document revision 20250905
10
+
3
11
  ### v0.67.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250815
@@ -830,6 +830,16 @@ module Google
830
830
  # @return [String]
831
831
  attr_accessor :name
832
832
 
833
+ # Config to enabled subscribing to events from other projects in the org.
834
+ # Corresponds to the JSON property `organizationSubscription`
835
+ # @return [Google::Apis::EventarcV1::OrganizationSubscription]
836
+ attr_accessor :organization_subscription
837
+
838
+ # Config to enable subscribing to all events from a list of projects.
839
+ # Corresponds to the JSON property `projectSubscriptions`
840
+ # @return [Google::Apis::EventarcV1::ProjectSubscriptions]
841
+ attr_accessor :project_subscriptions
842
+
833
843
  # Output only. Server assigned unique identifier for the channel. The value is a
834
844
  # UUID4 string and guaranteed to remain unchanged until the resource is deleted.
835
845
  # Corresponds to the JSON property `uid`
@@ -856,6 +866,8 @@ module Google
856
866
  @labels = args[:labels] if args.key?(:labels)
857
867
  @logging_config = args[:logging_config] if args.key?(:logging_config)
858
868
  @name = args[:name] if args.key?(:name)
869
+ @organization_subscription = args[:organization_subscription] if args.key?(:organization_subscription)
870
+ @project_subscriptions = args[:project_subscriptions] if args.key?(:project_subscriptions)
859
871
  @uid = args[:uid] if args.key?(:uid)
860
872
  @update_time = args[:update_time] if args.key?(:update_time)
861
873
  end
@@ -973,9 +985,10 @@ module Google
973
985
  class GoogleCloudEventarcV1PipelineDestinationAuthenticationConfig
974
986
  include Google::Apis::Core::Hashable
975
987
 
976
- # Represents a config used to authenticate with a Google OIDC token using a GCP
977
- # service account. Use this authentication method to invoke your Cloud Run and
978
- # Cloud Functions destinations or HTTP endpoints that support Google OIDC.
988
+ # Represents a config used to authenticate with a Google OIDC token using a
989
+ # Google Cloud service account. Use this authentication method to invoke your
990
+ # Cloud Run and Cloud Functions destinations or HTTP endpoints that support
991
+ # Google OIDC.
979
992
  # Corresponds to the JSON property `googleOidc`
980
993
  # @return [Google::Apis::EventarcV1::GoogleCloudEventarcV1PipelineDestinationAuthenticationConfigOidcToken]
981
994
  attr_accessor :google_oidc
@@ -1032,9 +1045,10 @@ module Google
1032
1045
  end
1033
1046
  end
1034
1047
 
1035
- # Represents a config used to authenticate with a Google OIDC token using a GCP
1036
- # service account. Use this authentication method to invoke your Cloud Run and
1037
- # Cloud Functions destinations or HTTP endpoints that support Google OIDC.
1048
+ # Represents a config used to authenticate with a Google OIDC token using a
1049
+ # Google Cloud service account. Use this authentication method to invoke your
1050
+ # Cloud Run and Cloud Functions destinations or HTTP endpoints that support
1051
+ # Google OIDC.
1038
1052
  class GoogleCloudEventarcV1PipelineDestinationAuthenticationConfigOidcToken
1039
1053
  include Google::Apis::Core::Hashable
1040
1054
 
@@ -2113,6 +2127,26 @@ module Google
2113
2127
  end
2114
2128
  end
2115
2129
 
2130
+ # Config to enabled subscribing to events from other projects in the org.
2131
+ class OrganizationSubscription
2132
+ include Google::Apis::Core::Hashable
2133
+
2134
+ # Required. Enable org level subscription.
2135
+ # Corresponds to the JSON property `enabled`
2136
+ # @return [Boolean]
2137
+ attr_accessor :enabled
2138
+ alias_method :enabled?, :enabled
2139
+
2140
+ def initialize(**args)
2141
+ update!(**args)
2142
+ end
2143
+
2144
+ # Update properties of this object
2145
+ def update!(**args)
2146
+ @enabled = args[:enabled] if args.key?(:enabled)
2147
+ end
2148
+ end
2149
+
2116
2150
  # A representation of the Pipeline resource.
2117
2151
  class Pipeline
2118
2152
  include Google::Apis::Core::Hashable
@@ -2337,6 +2371,28 @@ module Google
2337
2371
  end
2338
2372
  end
2339
2373
 
2374
+ # Config to enable subscribing to all events from a list of projects.
2375
+ class ProjectSubscriptions
2376
+ include Google::Apis::Core::Hashable
2377
+
2378
+ # Required. A list of projects to receive events from. All the projects must be
2379
+ # in the same org. The listed projects should have the format project/`
2380
+ # identifier` where identifier can be either the project id for project number.
2381
+ # A single list may contain both formats. At most 100 projects can be listed.
2382
+ # Corresponds to the JSON property `list`
2383
+ # @return [Array<String>]
2384
+ attr_accessor :list
2385
+
2386
+ def initialize(**args)
2387
+ update!(**args)
2388
+ end
2389
+
2390
+ # Update properties of this object
2391
+ def update!(**args)
2392
+ @list = args[:list] if args.key?(:list)
2393
+ end
2394
+ end
2395
+
2340
2396
  # A representation of the Provider resource.
2341
2397
  class Provider
2342
2398
  include Google::Apis::Core::Hashable
@@ -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.67.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250815"
25
+ REVISION = "20250912"
26
26
  end
27
27
  end
28
28
  end
@@ -316,6 +316,12 @@ module Google
316
316
  include Google::Apis::Core::JsonObjectSupport
317
317
  end
318
318
 
319
+ class OrganizationSubscription
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
319
325
  class Pipeline
320
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
327
 
@@ -328,6 +334,12 @@ module Google
328
334
  include Google::Apis::Core::JsonObjectSupport
329
335
  end
330
336
 
337
+ class ProjectSubscriptions
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
331
343
  class Provider
332
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
345
 
@@ -545,6 +557,10 @@ module Google
545
557
  property :logging_config, as: 'loggingConfig', class: Google::Apis::EventarcV1::LoggingConfig, decorator: Google::Apis::EventarcV1::LoggingConfig::Representation
546
558
 
547
559
  property :name, as: 'name'
560
+ property :organization_subscription, as: 'organizationSubscription', class: Google::Apis::EventarcV1::OrganizationSubscription, decorator: Google::Apis::EventarcV1::OrganizationSubscription::Representation
561
+
562
+ property :project_subscriptions, as: 'projectSubscriptions', class: Google::Apis::EventarcV1::ProjectSubscriptions, decorator: Google::Apis::EventarcV1::ProjectSubscriptions::Representation
563
+
548
564
  property :uid, as: 'uid'
549
565
  property :update_time, as: 'updateTime'
550
566
  end
@@ -870,6 +886,13 @@ module Google
870
886
  end
871
887
  end
872
888
 
889
+ class OrganizationSubscription
890
+ # @private
891
+ class Representation < Google::Apis::Core::JsonRepresentation
892
+ property :enabled, as: 'enabled'
893
+ end
894
+ end
895
+
873
896
  class Pipeline
874
897
  # @private
875
898
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -908,6 +931,13 @@ module Google
908
931
  end
909
932
  end
910
933
 
934
+ class ProjectSubscriptions
935
+ # @private
936
+ class Representation < Google::Apis::Core::JsonRepresentation
937
+ collection :list, as: 'list'
938
+ end
939
+ end
940
+
911
941
  class Provider
912
942
  # @private
913
943
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -116,8 +116,8 @@ module Google
116
116
  # @param [String] name
117
117
  # The resource that owns the locations collection, if applicable.
118
118
  # @param [Array<String>, String] extra_location_types
119
- # Optional. Do not use this field. It is unsupported and is ignored unless
120
- # explicitly documented otherwise. This is primarily for internal usage.
119
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
120
+ # field which is primarily intended for internal usage.
121
121
  # @param [String] filter
122
122
  # A filter to narrow down results to a preferred subset. The filtering language
123
123
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-eventarc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.69.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_v1
62
62
  rdoc_options: []
63
63
  require_paths: