google-apis-eventarc_v1 0.68.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '081bbbd9beb638bd3c3eef2c867be77a5a9a8741c644819560acc9cc1c75f4cf'
|
4
|
+
data.tar.gz: ed40de4471c622a845f17275019681f9c8bbf7c801249b104df752d22774c63a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af3fec1f1d6cc70ddd68d45ab4bf885f895d424c48e0285a06299e67eabd9a20b1f4145c6ce4f309d021ec867cce7ec54a0edb661b5bb9f596d5725c068e5bee
|
7
|
+
data.tar.gz: 3d24e29100fc6a15953bd21d088f99ced4729306b35df9589c9669d09b7397773dec326ffc5288f2f71e073d79e49e8bbcb03d77a9b332bf9412977f23cbaa16
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -2115,6 +2127,26 @@ module Google
|
|
2115
2127
|
end
|
2116
2128
|
end
|
2117
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
|
+
|
2118
2150
|
# A representation of the Pipeline resource.
|
2119
2151
|
class Pipeline
|
2120
2152
|
include Google::Apis::Core::Hashable
|
@@ -2339,6 +2371,28 @@ module Google
|
|
2339
2371
|
end
|
2340
2372
|
end
|
2341
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
|
+
|
2342
2396
|
# A representation of the Provider resource.
|
2343
2397
|
class Provider
|
2344
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.
|
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 = "
|
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
|
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.
|
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.
|
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:
|