google-apis-eventarc_v1 0.69.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
@@ -1447,6 +1447,13 @@ module Google
|
|
1447
1447
|
# @return [Array<Google::Apis::EventarcV1::GoogleLongrunningOperation>]
|
1448
1448
|
attr_accessor :operations
|
1449
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
|
+
|
1450
1457
|
def initialize(**args)
|
1451
1458
|
update!(**args)
|
1452
1459
|
end
|
@@ -1455,6 +1462,7 @@ module Google
|
|
1455
1462
|
def update!(**args)
|
1456
1463
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1457
1464
|
@operations = args[:operations] if args.key?(:operations)
|
1465
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1458
1466
|
end
|
1459
1467
|
end
|
1460
1468
|
|
@@ -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
|
@@ -702,6 +702,7 @@ module Google
|
|
702
702
|
property :next_page_token, as: 'nextPageToken'
|
703
703
|
collection :operations, as: 'operations', class: Google::Apis::EventarcV1::GoogleLongrunningOperation, decorator: Google::Apis::EventarcV1::GoogleLongrunningOperation::Representation
|
704
704
|
|
705
|
+
collection :unreachable, as: 'unreachable'
|
705
706
|
end
|
706
707
|
end
|
707
708
|
|
@@ -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:
|