diff --git a/api_names_out.yaml b/api_names_out.yaml index 3e72c8b351a..92a4dc6262c 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -308334,6 +308334,8 @@ "/notebooks:v1/ListOperationsResponse/nextPageToken": next_page_token "/notebooks:v1/ListOperationsResponse/operations": operations "/notebooks:v1/ListOperationsResponse/operations/operation": operation +"/notebooks:v1/ListOperationsResponse/unreachable": unreachable +"/notebooks:v1/ListOperationsResponse/unreachable/unreachable": unreachable "/notebooks:v1/ListRuntimesResponse": list_runtimes_response "/notebooks:v1/ListRuntimesResponse/nextPageToken": next_page_token "/notebooks:v1/ListRuntimesResponse/runtimes": runtimes @@ -308705,6 +308707,7 @@ "/notebooks:v1/notebooks.projects.locations.operations.list/name": name "/notebooks:v1/notebooks.projects.locations.operations.list/pageSize": page_size "/notebooks:v1/notebooks.projects.locations.operations.list/pageToken": page_token +"/notebooks:v1/notebooks.projects.locations.operations.list/returnPartialSuccess": return_partial_success "/notebooks:v1/notebooks.projects.locations.runtimes.create": create_project_location_runtime "/notebooks:v1/notebooks.projects.locations.runtimes.create/parent": parent "/notebooks:v1/notebooks.projects.locations.runtimes.create/requestId": request_id diff --git a/generated/google-apis-notebooks_v1/CHANGELOG.md b/generated/google-apis-notebooks_v1/CHANGELOG.md index d6f02ac5eb4..b7998702a3f 100644 --- a/generated/google-apis-notebooks_v1/CHANGELOG.md +++ b/generated/google-apis-notebooks_v1/CHANGELOG.md @@ -1,5 +1,10 @@ # Release history for google-apis-notebooks_v1 +### v0.60.0 (2025-10-19) + +* Regenerated from discovery document revision 20251008 +* Regenerated using generator version 0.18.0 + ### v0.59.0 (2025-05-11) * Regenerated from discovery document revision 20250430 diff --git a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/classes.rb b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/classes.rb index 505733bb0c0..9f95cc57142 100644 --- a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/classes.rb +++ b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/classes.rb @@ -1406,6 +1406,13 @@ class ListOperationsResponse # @return [Array] attr_accessor :operations + # Unordered list. Unreachable resources. Populated when the request sets ` + # ListOperationsRequest.return_partial_success` and reads across collections e.g. + # when attempting to list all resources across all supported locations. + # Corresponds to the JSON property `unreachable` + # @return [Array] + attr_accessor :unreachable + def initialize(**args) update!(**args) end @@ -1414,6 +1421,7 @@ def initialize(**args) def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) + @unreachable = args[:unreachable] if args.key?(:unreachable) end end diff --git a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/gem_version.rb b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/gem_version.rb index b4e6974508b..08c999d1a08 100644 --- a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/gem_version.rb +++ b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module NotebooksV1 # Version of the google-apis-notebooks_v1 gem - GEM_VERSION = "0.59.0" + GEM_VERSION = "0.60.0" # Version of the code generator used to generate this client - GENERATOR_VERSION = "0.17.0" + GENERATOR_VERSION = "0.18.0" # Revision of the discovery document this client was generated from - REVISION = "20250430" + REVISION = "20251008" end end end diff --git a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/representations.rb b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/representations.rb index e482016e8ec..dc086363b3b 100644 --- a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/representations.rb +++ b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/representations.rb @@ -844,6 +844,7 @@ class Representation < Google::Apis::Core::JsonRepresentation property :next_page_token, as: 'nextPageToken' collection :operations, as: 'operations', class: Google::Apis::NotebooksV1::Operation, decorator: Google::Apis::NotebooksV1::Operation::Representation + collection :unreachable, as: 'unreachable' end end diff --git a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/service.rb b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/service.rb index 47a2c91cd60..577633b8c1e 100644 --- a/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/service.rb +++ b/generated/google-apis-notebooks_v1/lib/google/apis/notebooks_v1/service.rb @@ -85,8 +85,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc # @param [String] name # The resource that owns the locations collection, if applicable. # @param [Array, String] extra_location_types - # Optional. A list of extra location types that should be used as conditions for - # controlling the visibility of the locations. + # Optional. Unless explicitly documented otherwise, don't use this unsupported + # field which is primarily intended for internal usage. # @param [String] filter # A filter to narrow down results to a preferred subset. The filtering language # accepts strings like `"displayName=tokyo"`, and is documented in more detail @@ -1434,6 +1434,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options: # The standard list page size. # @param [String] page_token # The standard list page token. + # @param [Boolean] return_partial_success + # When set to `true`, operations that are reachable are returned as normal, and + # those that are unreachable are returned in the [ListOperationsResponse. + # unreachable] field. This can only be `true` when reading across collections e. + # g. when `parent` is set to `"projects/example/locations/-"`. This field is not + # by default supported and will result in an `UNIMPLEMENTED` error if set unless + # explicitly documented otherwise in service or product specific documentation. # @param [String] fields # Selector specifying which fields to include in a partial response. # @param [String] quota_user @@ -1451,7 +1458,7 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options: # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification # @raise [Google::Apis::AuthorizationError] Authorization is required - def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) + 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) command = make_simple_command(:get, 'v1/{+name}/operations', options) command.response_representation = Google::Apis::NotebooksV1::ListOperationsResponse::Representation command.response_class = Google::Apis::NotebooksV1::ListOperationsResponse @@ -1459,6 +1466,7 @@ def list_project_location_operations(name, filter: nil, page_size: nil, page_tok command.query['filter'] = filter unless filter.nil? command.query['pageSize'] = page_size unless page_size.nil? command.query['pageToken'] = page_token unless page_token.nil? + command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block)