@@ -1401,6 +1401,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
14011401 # The standard list page size.
14021402 # @param [String] page_token
14031403 # The standard list page token.
1404+ # @param [Boolean] return_partial_success
1405+ # When set to `true`, operations that are reachable are returned as normal, and
1406+ # those that are unreachable are returned in the [ListOperationsResponse.
1407+ # unreachable] field. This can only be `true` when reading across collections e.
1408+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1409+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1410+ # explicitly documented otherwise in service or product specific documentation.
14041411 # @param [String] fields
14051412 # Selector specifying which fields to include in a partial response.
14061413 # @param [String] quota_user
@@ -1418,14 +1425,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
14181425 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
14191426 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
14201427 # @raise [Google::Apis::AuthorizationError] Authorization is required
1421- def list_project_location_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
1428+ 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 )
14221429 command = make_simple_command ( :get , 'v1/{+name}/operations' , options )
14231430 command . response_representation = Google ::Apis ::VmwareengineV1 ::ListOperationsResponse ::Representation
14241431 command . response_class = Google ::Apis ::VmwareengineV1 ::ListOperationsResponse
14251432 command . params [ 'name' ] = name unless name . nil?
14261433 command . query [ 'filter' ] = filter unless filter . nil?
14271434 command . query [ 'pageSize' ] = page_size unless page_size . nil?
14281435 command . query [ 'pageToken' ] = page_token unless page_token . nil?
1436+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
14291437 command . query [ 'fields' ] = fields unless fields . nil?
14301438 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
14311439 execute_or_queue_command ( command , &block )
0 commit comments