google-apis-developerconnect_v1 0.11.0 → 0.13.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: c9e49e70c1b88e5d02106ee49e9d9d225ac1cbb42280f8cb19a1dd13f8cab1c5
4
- data.tar.gz: b82a03d112b384e9b466c31479d23203d8c1d73e19db1d9ea3eb67e5cc88ac6e
3
+ metadata.gz: a5356c007a9b276c05949d8f1575315cbc28d6de60485f2b9ac28c2575664c89
4
+ data.tar.gz: fcaf337423b9bb10966057ccd0cdf87654db6c0069c85ac879091920402a182d
5
5
  SHA512:
6
- metadata.gz: e9774047673a401329c72efc6e896e5c20b78b26db98b26ae76c6f89d98e4930098c61245023cdd1dd399e983fa7f9f75368bc6a4b3cbfcd231d5ade4b7d4779
7
- data.tar.gz: 9987864767dfb3aa00183ee9180f429bc3aaa7021874cef05802e019b01d8c6e6e497ab5079b0f170bcdadfba6dd2ad761e9379a4f61dcc88dfde6fdedd3b990
6
+ metadata.gz: cc985ea586a013fe0ef1460c705e4ecd4ecc7bd7e949076a2da49e0e7c3a5f175b227c6c0cf9a2125c2414c45941258b73a40b08f3bf203505f415c83c79c94f
7
+ data.tar.gz: 28a51a394c8c25b31dd1529faec79decde931ab092445ba2201dde4889c72518d5d5a4bb3e05f955a9acde975910a1eebb9d470e9610a1d3aa4bf5d36b3aa435
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-developerconnect_v1
2
2
 
3
+ ### v0.13.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
7
+ ### v0.12.0 (2025-09-14)
8
+
9
+ * Regenerated from discovery document revision 20250904
10
+
3
11
  ### v0.11.0 (2025-08-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20250821
@@ -1468,6 +1468,13 @@ module Google
1468
1468
  # @return [Array<Google::Apis::DeveloperconnectV1::Operation>]
1469
1469
  attr_accessor :operations
1470
1470
 
1471
+ # Unordered list. Unreachable resources. Populated when the request sets `
1472
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1473
+ # when attempting to list all resources across all supported locations.
1474
+ # Corresponds to the JSON property `unreachable`
1475
+ # @return [Array<String>]
1476
+ attr_accessor :unreachable
1477
+
1471
1478
  def initialize(**args)
1472
1479
  update!(**args)
1473
1480
  end
@@ -1476,6 +1483,7 @@ module Google
1476
1483
  def update!(**args)
1477
1484
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1478
1485
  @operations = args[:operations] if args.key?(:operations)
1486
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1479
1487
  end
1480
1488
  end
1481
1489
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeveloperconnectV1
18
18
  # Version of the google-apis-developerconnect_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.13.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 = "20250821"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -760,6 +760,7 @@ module Google
760
760
  property :next_page_token, as: 'nextPageToken'
761
761
  collection :operations, as: 'operations', class: Google::Apis::DeveloperconnectV1::Operation, decorator: Google::Apis::DeveloperconnectV1::Operation::Representation
762
762
 
763
+ collection :unreachable, as: 'unreachable'
763
764
  end
764
765
  end
765
766
 
@@ -85,8 +85,8 @@ module Google
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
87
  # @param [Array<String>, String] extra_location_types
88
- # Optional. Do not use this field. It is unsupported and is ignored unless
89
- # explicitly documented otherwise. This is primarily for internal usage.
88
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
89
+ # field which is primarily intended for internal usage.
90
90
  # @param [String] filter
91
91
  # A filter to narrow down results to a preferred subset. The filtering language
92
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -1661,6 +1661,13 @@ module Google
1661
1661
  # The standard list page size.
1662
1662
  # @param [String] page_token
1663
1663
  # The standard list page token.
1664
+ # @param [Boolean] return_partial_success
1665
+ # When set to `true`, operations that are reachable are returned as normal, and
1666
+ # those that are unreachable are returned in the [ListOperationsResponse.
1667
+ # unreachable] field. This can only be `true` when reading across collections e.
1668
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1669
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1670
+ # explicitly documented otherwise in service or product specific documentation.
1664
1671
  # @param [String] fields
1665
1672
  # Selector specifying which fields to include in a partial response.
1666
1673
  # @param [String] quota_user
@@ -1678,7 +1685,7 @@ module Google
1678
1685
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1679
1686
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1680
1687
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1681
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1688
+ 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)
1682
1689
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1683
1690
  command.response_representation = Google::Apis::DeveloperconnectV1::ListOperationsResponse::Representation
1684
1691
  command.response_class = Google::Apis::DeveloperconnectV1::ListOperationsResponse
@@ -1686,6 +1693,7 @@ module Google
1686
1693
  command.query['filter'] = filter unless filter.nil?
1687
1694
  command.query['pageSize'] = page_size unless page_size.nil?
1688
1695
  command.query['pageToken'] = page_token unless page_token.nil?
1696
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1689
1697
  command.query['fields'] = fields unless fields.nil?
1690
1698
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1691
1699
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-developerconnect_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.13.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-developerconnect_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.11.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.13.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1
62
62
  rdoc_options: []
63
63
  require_paths: