Skip to content

Commit c2c7bf8

Browse files
feat: Automated regeneration of vmmigration v1alpha1 client (googleapis#24633)
Auto-created at 2025-10-12 10:53:19 +0000 using the toys pull request generator.
1 parent ca4008e commit c2c7bf8

File tree

6 files changed

+27
-3
lines changed

6 files changed

+27
-3
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385537,6 +385537,8 @@
385537385537
"/vmmigration:v1alpha1/ListOperationsResponse/nextPageToken": next_page_token
385538385538
"/vmmigration:v1alpha1/ListOperationsResponse/operations": operations
385539385539
"/vmmigration:v1alpha1/ListOperationsResponse/operations/operation": operation
385540+
"/vmmigration:v1alpha1/ListOperationsResponse/unreachable": unreachable
385541+
"/vmmigration:v1alpha1/ListOperationsResponse/unreachable/unreachable": unreachable
385540385542
"/vmmigration:v1alpha1/ListReplicationCyclesResponse": list_replication_cycles_response
385541385543
"/vmmigration:v1alpha1/ListReplicationCyclesResponse/nextPageToken": next_page_token
385542385544
"/vmmigration:v1alpha1/ListReplicationCyclesResponse/replicationCycles": replication_cycles
@@ -385939,6 +385941,7 @@
385939385941
"/vmmigration:v1alpha1/vmmigration.projects.locations.operations.list/name": name
385940385942
"/vmmigration:v1alpha1/vmmigration.projects.locations.operations.list/pageSize": page_size
385941385943
"/vmmigration:v1alpha1/vmmigration.projects.locations.operations.list/pageToken": page_token
385944+
"/vmmigration:v1alpha1/vmmigration.projects.locations.operations.list/returnPartialSuccess": return_partial_success
385942385945
"/vmmigration:v1alpha1/vmmigration.projects.locations.sources.create": create_project_location_source
385943385946
"/vmmigration:v1alpha1/vmmigration.projects.locations.sources.create/parent": parent
385944385947
"/vmmigration:v1alpha1/vmmigration.projects.locations.sources.create/requestId": request_id

generated/google-apis-vmmigration_v1alpha1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-vmmigration_v1alpha1
22

3+
### v0.64.0 (2025-10-12)
4+
5+
* Regenerated from discovery document revision 20251002
6+
37
### v0.63.0 (2025-09-21)
48

59
* Regenerated from discovery document revision 20250911

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/classes.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3264,6 +3264,13 @@ class ListOperationsResponse
32643264
# @return [Array<Google::Apis::VmmigrationV1alpha1::Operation>]
32653265
attr_accessor :operations
32663266

3267+
# Unordered list. Unreachable resources. Populated when the request sets `
3268+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
3269+
# when attempting to list all resources across all supported locations.
3270+
# Corresponds to the JSON property `unreachable`
3271+
# @return [Array<String>]
3272+
attr_accessor :unreachable
3273+
32673274
def initialize(**args)
32683275
update!(**args)
32693276
end
@@ -3272,6 +3279,7 @@ def initialize(**args)
32723279
def update!(**args)
32733280
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
32743281
@operations = args[:operations] if args.key?(:operations)
3282+
@unreachable = args[:unreachable] if args.key?(:unreachable)
32753283
end
32763284
end
32773285

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module VmmigrationV1alpha1
1818
# Version of the google-apis-vmmigration_v1alpha1 gem
19-
GEM_VERSION = "0.63.0"
19+
GEM_VERSION = "0.64.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250911"
25+
REVISION = "20251002"
2626
end
2727
end
2828
end

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1737,6 +1737,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
17371737
property :next_page_token, as: 'nextPageToken'
17381738
collection :operations, as: 'operations', class: Google::Apis::VmmigrationV1alpha1::Operation, decorator: Google::Apis::VmmigrationV1alpha1::Operation::Representation
17391739

1740+
collection :unreachable, as: 'unreachable'
17401741
end
17411742
end
17421743

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/service.rb

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
807807
# The standard list page size.
808808
# @param [String] page_token
809809
# The standard list page token.
810+
# @param [Boolean] return_partial_success
811+
# When set to `true`, operations that are reachable are returned as normal, and
812+
# those that are unreachable are returned in the [ListOperationsResponse.
813+
# unreachable] field. This can only be `true` when reading across collections e.
814+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
815+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
816+
# explicitly documented otherwise in service or product specific documentation.
810817
# @param [String] fields
811818
# Selector specifying which fields to include in a partial response.
812819
# @param [String] quota_user
@@ -824,14 +831,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
824831
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
825832
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
826833
# @raise [Google::Apis::AuthorizationError] Authorization is required
827-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
834+
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)
828835
command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
829836
command.response_representation = Google::Apis::VmmigrationV1alpha1::ListOperationsResponse::Representation
830837
command.response_class = Google::Apis::VmmigrationV1alpha1::ListOperationsResponse
831838
command.params['name'] = name unless name.nil?
832839
command.query['filter'] = filter unless filter.nil?
833840
command.query['pageSize'] = page_size unless page_size.nil?
834841
command.query['pageToken'] = page_token unless page_token.nil?
842+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
835843
command.query['fields'] = fields unless fields.nil?
836844
command.query['quotaUser'] = quota_user unless quota_user.nil?
837845
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)