Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157185,6 +157185,8 @@
"/datamigration:v1/ListOperationsResponse/nextPageToken": next_page_token
"/datamigration:v1/ListOperationsResponse/operations": operations
"/datamigration:v1/ListOperationsResponse/operations/operation": operation
"/datamigration:v1/ListOperationsResponse/unreachable": unreachable
"/datamigration:v1/ListOperationsResponse/unreachable/unreachable": unreachable
"/datamigration:v1/ListPrivateConnectionsResponse": list_private_connections_response
"/datamigration:v1/ListPrivateConnectionsResponse/nextPageToken": next_page_token
"/datamigration:v1/ListPrivateConnectionsResponse/privateConnections": private_connections
Expand Down Expand Up @@ -157849,6 +157851,7 @@
"/datamigration:v1/datamigration.projects.locations.operations.list/name": name
"/datamigration:v1/datamigration.projects.locations.operations.list/pageSize": page_size
"/datamigration:v1/datamigration.projects.locations.operations.list/pageToken": page_token
"/datamigration:v1/datamigration.projects.locations.operations.list/returnPartialSuccess": return_partial_success
"/datamigration:v1/datamigration.projects.locations.privateConnections.create": create_project_location_private_connection
"/datamigration:v1/datamigration.projects.locations.privateConnections.create/parent": parent
"/datamigration:v1/datamigration.projects.locations.privateConnections.create/privateConnectionId": private_connection_id
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-datamigration_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-datamigration_v1

### v0.81.0 (2025-11-09)

* Regenerated from discovery document revision 20251029

### v0.80.0 (2025-09-07)

* Regenerated from discovery document revision 20250826
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2658,6 +2658,13 @@ class ListOperationsResponse
# @return [Array<Google::Apis::DatamigrationV1::Operation>]
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<String>]
attr_accessor :unreachable

def initialize(**args)
update!(**args)
end
Expand All @@ -2666,6 +2673,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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DatamigrationV1
# Version of the google-apis-datamigration_v1 gem
GEM_VERSION = "0.80.0"
GEM_VERSION = "0.81.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250826"
REVISION = "20251029"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :next_page_token, as: 'nextPageToken'
collection :operations, as: 'operations', class: Google::Apis::DatamigrationV1::Operation, decorator: Google::Apis::DatamigrationV1::Operation::Representation

collection :unreachable, as: 'unreachable'
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2367,6 +2367,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
Expand All @@ -2384,14 +2391,15 @@ 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::DatamigrationV1::ListOperationsResponse::Representation
command.response_class = Google::Apis::DatamigrationV1::ListOperationsResponse
command.params['name'] = name unless name.nil?
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)
Expand Down