google-apis-eventarc_v1 0.71.0 → 0.72.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: '0091395d05875d21e930092e63a15d29b0464b038e754f179414970868977118'
|
|
4
|
+
data.tar.gz: 4a50e62b0b3f914ea2b57af2599c3d41e5f85e7b07b4846ba49307d34c6629b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7def6407965c718f8d69198165cb3e8c24a56e26673acbca7f005388a954c606f86cb3733789400bffea61e15d3f21c1b4bf6304ff1d81403767c618bad083d
|
|
7
|
+
data.tar.gz: ec185ede13b163cb89b5eff1ef4aa17f0685e5876f3f307b6245a19e22301d06e586c247820852d418dc2f21a453ca7d29cb8fed8fd326c5eedd1b0fac86fc8d
|
data/CHANGELOG.md
CHANGED
|
@@ -1448,8 +1448,9 @@ module Google
|
|
|
1448
1448
|
attr_accessor :operations
|
|
1449
1449
|
|
|
1450
1450
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1451
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1452
|
-
# when attempting to list all resources across all supported
|
|
1451
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1452
|
+
# For example, when attempting to list all resources across all supported
|
|
1453
|
+
# locations.
|
|
1453
1454
|
# Corresponds to the JSON property `unreachable`
|
|
1454
1455
|
# @return [Array<String>]
|
|
1455
1456
|
attr_accessor :unreachable
|
|
@@ -2464,6 +2465,27 @@ module Google
|
|
|
2464
2465
|
end
|
|
2465
2466
|
end
|
|
2466
2467
|
|
|
2468
|
+
# The retry policy configuration for the Trigger. Can only be set with Cloud Run
|
|
2469
|
+
# destinations.
|
|
2470
|
+
class RetryPolicy
|
|
2471
|
+
include Google::Apis::Core::Hashable
|
|
2472
|
+
|
|
2473
|
+
# Optional. The maximum number of delivery attempts for any message. The only
|
|
2474
|
+
# valid value is 1.
|
|
2475
|
+
# Corresponds to the JSON property `maxAttempts`
|
|
2476
|
+
# @return [Fixnum]
|
|
2477
|
+
attr_accessor :max_attempts
|
|
2478
|
+
|
|
2479
|
+
def initialize(**args)
|
|
2480
|
+
update!(**args)
|
|
2481
|
+
end
|
|
2482
|
+
|
|
2483
|
+
# Update properties of this object
|
|
2484
|
+
def update!(**args)
|
|
2485
|
+
@max_attempts = args[:max_attempts] if args.key?(:max_attempts)
|
|
2486
|
+
end
|
|
2487
|
+
end
|
|
2488
|
+
|
|
2467
2489
|
# Request message for `SetIamPolicy` method.
|
|
2468
2490
|
class SetIamPolicyRequest
|
|
2469
2491
|
include Google::Apis::Core::Hashable
|
|
@@ -2661,6 +2683,12 @@ module Google
|
|
|
2661
2683
|
# @return [String]
|
|
2662
2684
|
attr_accessor :name
|
|
2663
2685
|
|
|
2686
|
+
# The retry policy configuration for the Trigger. Can only be set with Cloud Run
|
|
2687
|
+
# destinations.
|
|
2688
|
+
# Corresponds to the JSON property `retryPolicy`
|
|
2689
|
+
# @return [Google::Apis::EventarcV1::RetryPolicy]
|
|
2690
|
+
attr_accessor :retry_policy
|
|
2691
|
+
|
|
2664
2692
|
# Output only. Whether or not this Trigger satisfies the requirements of
|
|
2665
2693
|
# physical zone separation
|
|
2666
2694
|
# Corresponds to the JSON property `satisfiesPzs`
|
|
@@ -2710,6 +2738,7 @@ module Google
|
|
|
2710
2738
|
@event_filters = args[:event_filters] if args.key?(:event_filters)
|
|
2711
2739
|
@labels = args[:labels] if args.key?(:labels)
|
|
2712
2740
|
@name = args[:name] if args.key?(:name)
|
|
2741
|
+
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
|
|
2713
2742
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
2714
2743
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
2715
2744
|
@transport = args[:transport] if args.key?(:transport)
|
|
@@ -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.72.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 = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -352,6 +352,12 @@ module Google
|
|
|
352
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
353
353
|
end
|
|
354
354
|
|
|
355
|
+
class RetryPolicy
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
355
361
|
class SetIamPolicyRequest
|
|
356
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
363
|
|
|
@@ -957,6 +963,13 @@ module Google
|
|
|
957
963
|
end
|
|
958
964
|
end
|
|
959
965
|
|
|
966
|
+
class RetryPolicy
|
|
967
|
+
# @private
|
|
968
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
969
|
+
property :max_attempts, as: 'maxAttempts'
|
|
970
|
+
end
|
|
971
|
+
end
|
|
972
|
+
|
|
960
973
|
class SetIamPolicyRequest
|
|
961
974
|
# @private
|
|
962
975
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1011,6 +1024,8 @@ module Google
|
|
|
1011
1024
|
|
|
1012
1025
|
hash :labels, as: 'labels'
|
|
1013
1026
|
property :name, as: 'name'
|
|
1027
|
+
property :retry_policy, as: 'retryPolicy', class: Google::Apis::EventarcV1::RetryPolicy, decorator: Google::Apis::EventarcV1::RetryPolicy::Representation
|
|
1028
|
+
|
|
1014
1029
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1015
1030
|
property :service_account, as: 'serviceAccount'
|
|
1016
1031
|
property :transport, as: 'transport', class: Google::Apis::EventarcV1::Transport, decorator: Google::Apis::EventarcV1::Transport::Representation
|
|
@@ -2038,11 +2038,12 @@ module Google
|
|
|
2038
2038
|
# The standard list page token.
|
|
2039
2039
|
# @param [Boolean] return_partial_success
|
|
2040
2040
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2041
|
-
# those that are unreachable are returned in the
|
|
2042
|
-
# unreachable
|
|
2043
|
-
#
|
|
2044
|
-
# by default
|
|
2045
|
-
# explicitly documented otherwise in service or product specific
|
|
2041
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2042
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
2043
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2044
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2045
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2046
|
+
# documentation.
|
|
2046
2047
|
# @param [String] fields
|
|
2047
2048
|
# Selector specifying which fields to include in a partial response.
|
|
2048
2049
|
# @param [String] quota_user
|
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.72.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.72.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:
|