google-apis-connectors_v1 0.79.0 → 0.80.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: 9bbe68b7a6530da06d1aeb854468a9b9c8d43a32f1b48f1e401f9e232db3adf9
4
- data.tar.gz: ec28899dc0d835ecb1f48a22c674d843375e3b26582391898e6b707105fda296
3
+ metadata.gz: b68ca6c3a0aabdca86d539553733e8c2e81fdb44d447820bd8f5a3770ff7b3b0
4
+ data.tar.gz: efbd3d2eed68aa33670089fea132b09c86dd2d66cf1323725ff4d37429e155de
5
5
  SHA512:
6
- metadata.gz: 24fbdce198185c1c107d2cf2bc93dab3e0ee967300f2d6a506d49070af08c9a4f354d33d26de4dd7d3d4e92bebe74eb650cec0ff7216341ca8a04d619f49f508
7
- data.tar.gz: 072afef1f59888a0ed5f28b33125a1d6c0e34c6b6f0959ca8a4c91a2d1d082b922625466042b0a6a7fc185068c91d52485e0bdbb6960ebaee04cd24dbf56401c
6
+ metadata.gz: f60f850cbf0fe6321c5f6f515fcc98b1a88ecb095d3573ef24183ad196339ddf0724bf8eaea3b3672b81a825a40d40d95980328dcdee3a16752cc7d89c5884bd
7
+ data.tar.gz: 999a502e903877bb8b021c06f7b3608b823b4757f0279cc47fc1b14a8d871359b4a5d7b099f5e5e2294fee6d68e0c8ec27b70b42dbcf16621d610199ff20208f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.80.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20250930
6
+
3
7
  ### v0.79.0 (2025-09-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20250917
@@ -4527,6 +4527,13 @@ module Google
4527
4527
  # @return [Array<Google::Apis::ConnectorsV1::Operation>]
4528
4528
  attr_accessor :operations
4529
4529
 
4530
+ # Unordered list. Unreachable resources. Populated when the request sets `
4531
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
4532
+ # when attempting to list all resources across all supported locations.
4533
+ # Corresponds to the JSON property `unreachable`
4534
+ # @return [Array<String>]
4535
+ attr_accessor :unreachable
4536
+
4530
4537
  def initialize(**args)
4531
4538
  update!(**args)
4532
4539
  end
@@ -4535,6 +4542,7 @@ module Google
4535
4542
  def update!(**args)
4536
4543
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4537
4544
  @operations = args[:operations] if args.key?(:operations)
4545
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
4538
4546
  end
4539
4547
  end
4540
4548
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV1
18
18
  # Version of the google-apis-connectors_v1 gem
19
- GEM_VERSION = "0.79.0"
19
+ GEM_VERSION = "0.80.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 = "20250917"
25
+ REVISION = "20250930"
26
26
  end
27
27
  end
28
28
  end
@@ -2225,6 +2225,7 @@ module Google
2225
2225
  property :next_page_token, as: 'nextPageToken'
2226
2226
  collection :operations, as: 'operations', class: Google::Apis::ConnectorsV1::Operation, decorator: Google::Apis::ConnectorsV1::Operation::Representation
2227
2227
 
2228
+ collection :unreachable, as: 'unreachable'
2228
2229
  end
2229
2230
  end
2230
2231
 
@@ -2390,6 +2390,13 @@ module Google
2390
2390
  # The standard list page size.
2391
2391
  # @param [String] page_token
2392
2392
  # The standard list page token.
2393
+ # @param [Boolean] return_partial_success
2394
+ # When set to `true`, operations that are reachable are returned as normal, and
2395
+ # those that are unreachable are returned in the [ListOperationsResponse.
2396
+ # unreachable] field. This can only be `true` when reading across collections e.
2397
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2398
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2399
+ # explicitly documented otherwise in service or product specific documentation.
2393
2400
  # @param [String] fields
2394
2401
  # Selector specifying which fields to include in a partial response.
2395
2402
  # @param [String] quota_user
@@ -2407,7 +2414,7 @@ module Google
2407
2414
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2408
2415
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2409
2416
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2410
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2417
+ 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)
2411
2418
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
2412
2419
  command.response_representation = Google::Apis::ConnectorsV1::ListOperationsResponse::Representation
2413
2420
  command.response_class = Google::Apis::ConnectorsV1::ListOperationsResponse
@@ -2415,6 +2422,7 @@ module Google
2415
2422
  command.query['filter'] = filter unless filter.nil?
2416
2423
  command.query['pageSize'] = page_size unless page_size.nil?
2417
2424
  command.query['pageToken'] = page_token unless page_token.nil?
2425
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2418
2426
  command.query['fields'] = fields unless fields.nil?
2419
2427
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2420
2428
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.79.0
4
+ version: 0.80.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-connectors_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.79.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.80.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
62
62
  rdoc_options: []
63
63
  require_paths: