def test_list_data_bundles_with_pagination(client: Client, max_results,
                                           next_token):
    response = client.list_data_bundles(service.create_model_id(),
                                        max_results=max_results,
                                        next_token=next_token)
    assert 'dataBundles' in response, 'Missing dataBundles in response'
    assert 'nextToken' in response, 'Missing nextToken in response'
def test_list_data_bundles(client: Client):
    response = client.list_data_bundles(service.create_model_id())
    logging.info(response)
    assert 'dataBundles' in response, 'Missing dataBundles in response'