google-apis-eventarc_v1 0.68.0 → 0.70.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: 00ce58c6ef3f844bed579fceaa2398f180b0e21f262172d1ab68bf9b5cc9f376
|
4
|
+
data.tar.gz: a50be82efc47392408ba33bf381f08a03ee7a107249f8ef96b3b447039bb1fa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6bf67741135742628e83538c74668de8df4a44852b7716c79f6875ea2ee61cab629316edfde54544b60d24b43173c398526e95aec2e11f6e10b896c376cf0e5
|
7
|
+
data.tar.gz: cfd597ce9f3ab34aac04461df3ec13714fc75ac694b0b526e6973ce67620da45f5f33579f4eb7c89972a2577a9619cc2a28abf02d294ef3526bc9956b9ddb782
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-eventarc_v1
|
2
2
|
|
3
|
+
### v0.70.0 (2025-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20251007
|
6
|
+
|
7
|
+
### v0.69.0 (2025-09-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250912
|
10
|
+
|
3
11
|
### v0.68.0 (2025-09-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250905
|
@@ -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
|
@@ -1435,6 +1447,13 @@ module Google
|
|
1435
1447
|
# @return [Array<Google::Apis::EventarcV1::GoogleLongrunningOperation>]
|
1436
1448
|
attr_accessor :operations
|
1437
1449
|
|
1450
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
1451
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
1452
|
+
# when attempting to list all resources across all supported locations.
|
1453
|
+
# Corresponds to the JSON property `unreachable`
|
1454
|
+
# @return [Array<String>]
|
1455
|
+
attr_accessor :unreachable
|
1456
|
+
|
1438
1457
|
def initialize(**args)
|
1439
1458
|
update!(**args)
|
1440
1459
|
end
|
@@ -1443,6 +1462,7 @@ module Google
|
|
1443
1462
|
def update!(**args)
|
1444
1463
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1445
1464
|
@operations = args[:operations] if args.key?(:operations)
|
1465
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1446
1466
|
end
|
1447
1467
|
end
|
1448
1468
|
|
@@ -2115,6 +2135,26 @@ module Google
|
|
2115
2135
|
end
|
2116
2136
|
end
|
2117
2137
|
|
2138
|
+
# Config to enabled subscribing to events from other projects in the org.
|
2139
|
+
class OrganizationSubscription
|
2140
|
+
include Google::Apis::Core::Hashable
|
2141
|
+
|
2142
|
+
# Required. Enable org level subscription.
|
2143
|
+
# Corresponds to the JSON property `enabled`
|
2144
|
+
# @return [Boolean]
|
2145
|
+
attr_accessor :enabled
|
2146
|
+
alias_method :enabled?, :enabled
|
2147
|
+
|
2148
|
+
def initialize(**args)
|
2149
|
+
update!(**args)
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
# Update properties of this object
|
2153
|
+
def update!(**args)
|
2154
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
2155
|
+
end
|
2156
|
+
end
|
2157
|
+
|
2118
2158
|
# A representation of the Pipeline resource.
|
2119
2159
|
class Pipeline
|
2120
2160
|
include Google::Apis::Core::Hashable
|
@@ -2339,6 +2379,28 @@ module Google
|
|
2339
2379
|
end
|
2340
2380
|
end
|
2341
2381
|
|
2382
|
+
# Config to enable subscribing to all events from a list of projects.
|
2383
|
+
class ProjectSubscriptions
|
2384
|
+
include Google::Apis::Core::Hashable
|
2385
|
+
|
2386
|
+
# Required. A list of projects to receive events from. All the projects must be
|
2387
|
+
# in the same org. The listed projects should have the format project/`
|
2388
|
+
# identifier` where identifier can be either the project id for project number.
|
2389
|
+
# A single list may contain both formats. At most 100 projects can be listed.
|
2390
|
+
# Corresponds to the JSON property `list`
|
2391
|
+
# @return [Array<String>]
|
2392
|
+
attr_accessor :list
|
2393
|
+
|
2394
|
+
def initialize(**args)
|
2395
|
+
update!(**args)
|
2396
|
+
end
|
2397
|
+
|
2398
|
+
# Update properties of this object
|
2399
|
+
def update!(**args)
|
2400
|
+
@list = args[:list] if args.key?(:list)
|
2401
|
+
end
|
2402
|
+
end
|
2403
|
+
|
2342
2404
|
# A representation of the Provider resource.
|
2343
2405
|
class Provider
|
2344
2406
|
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.70.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 = "20251007"
|
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
|
@@ -686,6 +702,7 @@ module Google
|
|
686
702
|
property :next_page_token, as: 'nextPageToken'
|
687
703
|
collection :operations, as: 'operations', class: Google::Apis::EventarcV1::GoogleLongrunningOperation, decorator: Google::Apis::EventarcV1::GoogleLongrunningOperation::Representation
|
688
704
|
|
705
|
+
collection :unreachable, as: 'unreachable'
|
689
706
|
end
|
690
707
|
end
|
691
708
|
|
@@ -870,6 +887,13 @@ module Google
|
|
870
887
|
end
|
871
888
|
end
|
872
889
|
|
890
|
+
class OrganizationSubscription
|
891
|
+
# @private
|
892
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
893
|
+
property :enabled, as: 'enabled'
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
873
897
|
class Pipeline
|
874
898
|
# @private
|
875
899
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -908,6 +932,13 @@ module Google
|
|
908
932
|
end
|
909
933
|
end
|
910
934
|
|
935
|
+
class ProjectSubscriptions
|
936
|
+
# @private
|
937
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
938
|
+
collection :list, as: 'list'
|
939
|
+
end
|
940
|
+
end
|
941
|
+
|
911
942
|
class Provider
|
912
943
|
# @private
|
913
944
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2036,6 +2036,13 @@ module Google
|
|
2036
2036
|
# The standard list page size.
|
2037
2037
|
# @param [String] page_token
|
2038
2038
|
# The standard list page token.
|
2039
|
+
# @param [Boolean] return_partial_success
|
2040
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2041
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2042
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2043
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2044
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2045
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2039
2046
|
# @param [String] fields
|
2040
2047
|
# Selector specifying which fields to include in a partial response.
|
2041
2048
|
# @param [String] quota_user
|
@@ -2053,7 +2060,7 @@ module Google
|
|
2053
2060
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2054
2061
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2055
2062
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2056
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2063
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2057
2064
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
2058
2065
|
command.response_representation = Google::Apis::EventarcV1::GoogleLongrunningListOperationsResponse::Representation
|
2059
2066
|
command.response_class = Google::Apis::EventarcV1::GoogleLongrunningListOperationsResponse
|
@@ -2061,6 +2068,7 @@ module Google
|
|
2061
2068
|
command.query['filter'] = filter unless filter.nil?
|
2062
2069
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2063
2070
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2071
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2064
2072
|
command.query['fields'] = fields unless fields.nil?
|
2065
2073
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2066
2074
|
execute_or_queue_command(command, &block)
|
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.70.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.70.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:
|