google-apis-clouddeploy_v1 0.61.0 → 0.63.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: c6d440ba01ac98d74795531a9826f78888d0fd7ea8e949935f95fd6eb4a790c8
4
- data.tar.gz: eac8c93e7dbe2a83146e0130c02ddfffe6851d010813243cb975f2c997801a8d
3
+ metadata.gz: 94b8daad2210c7b00c098166899a742d27f4ba96fd4e883528ac343271f5d8fc
4
+ data.tar.gz: 4e71e5c51e7beb7db9fef0084eebebf470712d21c542bdb6c5a06c243c2be353
5
5
  SHA512:
6
- metadata.gz: 0fc7e95f933251133b7ce9c03a4576b99cd010537968eb1d240a2dd5a2bdf80138692d47cec5610cc83ea1a942c4ae956a2f962983221d9a12f9b71553313da0
7
- data.tar.gz: 0fe93035f70c27a900d9c1233b97c7364396ef67e6943a3269a3bd891a2331100f2cd55f3a13f8ce00dea06ecbc74406dff4f12aea99d9a3efb9affe4eca9dd1
6
+ metadata.gz: cac126c037844a43e6dddf6e666515adcddf0c655b50d665fa41a782fd68c1e919270a3ae2619fcf6daf3ab9959f4d555af95d99d900f4009e6c67a309737c94
7
+ data.tar.gz: d63e6e1f32b7591d658b4ec97436c4e15ef3feacf4b001cef2b1e2ac9819a370216dc6fe4f3bce6cbd905a23978219d37e1a53f8c442547871c536279f077f51
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.63.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
7
+ ### v0.62.0 (2025-09-21)
8
+
9
+ * Regenerated from discovery document revision 20250910
10
+
3
11
  ### v0.61.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250813
@@ -3064,6 +3064,13 @@ module Google
3064
3064
  # @return [Array<Google::Apis::ClouddeployV1::Operation>]
3065
3065
  attr_accessor :operations
3066
3066
 
3067
+ # Unordered list. Unreachable resources. Populated when the request sets `
3068
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3069
+ # when attempting to list all resources across all supported locations.
3070
+ # Corresponds to the JSON property `unreachable`
3071
+ # @return [Array<String>]
3072
+ attr_accessor :unreachable
3073
+
3067
3074
  def initialize(**args)
3068
3075
  update!(**args)
3069
3076
  end
@@ -3072,6 +3079,7 @@ module Google
3072
3079
  def update!(**args)
3073
3080
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3074
3081
  @operations = args[:operations] if args.key?(:operations)
3082
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3075
3083
  end
3076
3084
  end
3077
3085
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ClouddeployV1
18
18
  # Version of the google-apis-clouddeploy_v1 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.63.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 = "20250813"
25
+ REVISION = "20250924"
26
26
  end
27
27
  end
28
28
  end
@@ -1841,6 +1841,7 @@ module Google
1841
1841
  property :next_page_token, as: 'nextPageToken'
1842
1842
  collection :operations, as: 'operations', class: Google::Apis::ClouddeployV1::Operation, decorator: Google::Apis::ClouddeployV1::Operation::Representation
1843
1843
 
1844
+ collection :unreachable, as: 'unreachable'
1844
1845
  end
1845
1846
  end
1846
1847
 
@@ -115,8 +115,8 @@ module Google
115
115
  # @param [String] name
116
116
  # The resource that owns the locations collection, if applicable.
117
117
  # @param [Array<String>, String] extra_location_types
118
- # Optional. Do not use this field. It is unsupported and is ignored unless
119
- # explicitly documented otherwise. This is primarily for internal usage.
118
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
119
+ # field which is primarily intended for internal usage.
120
120
  # @param [String] filter
121
121
  # A filter to narrow down results to a preferred subset. The filtering language
122
122
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -2328,6 +2328,13 @@ module Google
2328
2328
  # The standard list page size.
2329
2329
  # @param [String] page_token
2330
2330
  # The standard list page token.
2331
+ # @param [Boolean] return_partial_success
2332
+ # When set to `true`, operations that are reachable are returned as normal, and
2333
+ # those that are unreachable are returned in the [ListOperationsResponse.
2334
+ # unreachable] field. This can only be `true` when reading across collections e.
2335
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2336
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2337
+ # explicitly documented otherwise in service or product specific documentation.
2331
2338
  # @param [String] fields
2332
2339
  # Selector specifying which fields to include in a partial response.
2333
2340
  # @param [String] quota_user
@@ -2345,7 +2352,7 @@ module Google
2345
2352
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2346
2353
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2347
2354
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2348
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2355
+ 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)
2349
2356
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
2350
2357
  command.response_representation = Google::Apis::ClouddeployV1::ListOperationsResponse::Representation
2351
2358
  command.response_class = Google::Apis::ClouddeployV1::ListOperationsResponse
@@ -2353,6 +2360,7 @@ module Google
2353
2360
  command.query['filter'] = filter unless filter.nil?
2354
2361
  command.query['pageSize'] = page_size unless page_size.nil?
2355
2362
  command.query['pageToken'] = page_token unless page_token.nil?
2363
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2356
2364
  command.query['fields'] = fields unless fields.nil?
2357
2365
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2358
2366
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-clouddeploy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.63.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-clouddeploy_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.63.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
62
62
  rdoc_options: []
63
63
  require_paths: