polarion_rest_api_client.open_api_client.api.test_runs package

Contains endpoint functions for accessing the API.

Submodules

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run module

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Run.

Args:

project_id (str): test_run_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Run.

Args:

project_id (str): test_run_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Run.

Args:

project_id (str): test_run_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Run.

Args:

project_id (str): test_run_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter module

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter.asyncio(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter.asyncio_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter.sync(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter.sync_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter_definition module

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter_definition.asyncio(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter_definition.asyncio_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter_definition.sync(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameter_definition.sync_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameters module

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameters.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListDeleteRequest) Any | Errors | None

Deletes a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameters.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListDeleteRequest) Response[Any | Errors]

Deletes a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameters.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListDeleteRequest) Any | Errors | None

Deletes a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_run_test_parameters.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListDeleteRequest) Response[Any | Errors]

Deletes a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_runs module

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_runs.asyncio(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListDeleteRequest) Any | Errors | None

Deletes a list of Test Runs.

Args:

project_id (str): body (TestrunsListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.delete_test_runs.asyncio_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListDeleteRequest) Response[Any | Errors]

Deletes a list of Test Runs.

Args:

project_id (str): body (TestrunsListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_runs.sync(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListDeleteRequest) Any | Errors | None

Deletes a list of Test Runs.

Args:

project_id (str): body (TestrunsListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.delete_test_runs.sync_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListDeleteRequest) Response[Any | Errors]

Deletes a list of Test Runs.

Args:

project_id (str): body (TestrunsListDeleteRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.get_export_excel_tests module

async polarion_rest_api_client.open_api_client.api.test_runs.get_export_excel_tests.asyncio(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort_by: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, template: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | JobsSinglePostResponse | None

Exports tests to Excel.

Args:

project_id (str): test_run_id (str): query (Union[Unset, str]): sort_by (Union[Unset, str]): template (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_export_excel_tests.asyncio_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort_by: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, template: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | JobsSinglePostResponse]

Exports tests to Excel.

Args:

project_id (str): test_run_id (str): query (Union[Unset, str]): sort_by (Union[Unset, str]): template (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_export_excel_tests.sync(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort_by: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, template: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | JobsSinglePostResponse | None

Exports tests to Excel.

Args:

project_id (str): test_run_id (str): query (Union[Unset, str]): sort_by (Union[Unset, str]): template (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_export_excel_tests.sync_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort_by: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, template: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | JobsSinglePostResponse]

Exports tests to Excel.

Args:

project_id (str): test_run_id (str): query (Union[Unset, str]): sort_by (Union[Unset, str]): template (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run.asyncio(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrunsSingleGetResponse | None

Returns the specified Test Run.

Args:

project_id (str): test_run_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsSingleGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run.asyncio_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrunsSingleGetResponse]

Returns the specified Test Run.

Args:

project_id (str): test_run_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run.sync(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrunsSingleGetResponse | None

Returns the specified Test Run.

Args:

project_id (str): test_run_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run.sync_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrunsSingleGetResponse]

Returns the specified Test Run.

Args:

project_id (str): test_run_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter.asyncio(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersSingleGetResponse | None

Returns the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersSingleGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter.asyncio_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersSingleGetResponse]

Returns the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter.sync(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersSingleGetResponse | None

Returns the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter.sync_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersSingleGetResponse]

Returns the specified Test Parameter for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definition module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definition.asyncio(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparameterDefinitionsSingleGetResponse | None

Returns the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsSingleGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definition.asyncio_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparameterDefinitionsSingleGetResponse]

Returns the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definition.sync(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparameterDefinitionsSingleGetResponse | None

Returns the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definition.sync_detailed(project_id: str, test_run_id: str, test_param_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparameterDefinitionsSingleGetResponse]

Returns the specified Test Parameter Definition for the specified Test Run.

Args:

project_id (str): test_run_id (str): test_param_id (str): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsSingleGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definitions module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definitions.asyncio(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparameterDefinitionsListGetResponse | None

Returns a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsListGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definitions.asyncio_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparameterDefinitionsListGetResponse]

Returns a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definitions.sync(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparameterDefinitionsListGetResponse | None

Returns a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsListGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameter_definitions.sync_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparameterDefinitionsListGetResponse]

Returns a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameters module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameters.asyncio(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersListGetResponse | None

Returns a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersListGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameters.asyncio_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersListGetResponse]

Returns a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameters.sync(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersListGetResponse | None

Returns a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersListGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_run_test_parameters.sync_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersListGetResponse]

Returns a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_runs module

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_runs.asyncio(project_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, templates: ~polarion_rest_api_client.open_api_client.types.Unset | bool = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrunsListGetResponse | None

Returns a list of Test Runs.

Args:

project_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): query (Union[Unset, str]): sort (Union[Unset, str]): revision (Union[Unset, str]): templates (Union[Unset, bool]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsListGetResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.get_test_runs.asyncio_detailed(project_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, templates: ~polarion_rest_api_client.open_api_client.types.Unset | bool = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrunsListGetResponse]

Returns a list of Test Runs.

Args:

project_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): query (Union[Unset, str]): sort (Union[Unset, str]): revision (Union[Unset, str]): templates (Union[Unset, bool]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_runs.sync(project_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, templates: ~polarion_rest_api_client.open_api_client.types.Unset | bool = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrunsListGetResponse | None

Returns a list of Test Runs.

Args:

project_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): query (Union[Unset, str]): sort (Union[Unset, str]): revision (Union[Unset, str]): templates (Union[Unset, bool]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsListGetResponse]

polarion_rest_api_client.open_api_client.api.test_runs.get_test_runs.sync_detailed(project_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: ~polarion_rest_api_client.open_api_client.types.Unset | ~polarion_rest_api_client.open_api_client.models.sparse_fields.SparseFields = <polarion_rest_api_client.open_api_client.types.Unset object>, include: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, query: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, sort: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>, templates: ~polarion_rest_api_client.open_api_client.types.Unset | bool = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrunsListGetResponse]

Returns a list of Test Runs.

Args:

project_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): fields (Union[Unset, SparseFields]): include (Union[Unset, str]): query (Union[Unset, str]): sort (Union[Unset, str]): revision (Union[Unset, str]): templates (Union[Unset, bool]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsListGetResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.get_workflow_actions_for_test_run module

async polarion_rest_api_client.open_api_client.api.test_runs.get_workflow_actions_for_test_run.asyncio(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | WorkflowActionsActionResponseBody | None

Returns a list of Workflow Actions.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, WorkflowActionsActionResponseBody]

async polarion_rest_api_client.open_api_client.api.test_runs.get_workflow_actions_for_test_run.asyncio_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | WorkflowActionsActionResponseBody]

Returns a list of Workflow Actions.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, WorkflowActionsActionResponseBody]]

polarion_rest_api_client.open_api_client.api.test_runs.get_workflow_actions_for_test_run.sync(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | WorkflowActionsActionResponseBody | None

Returns a list of Workflow Actions.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, WorkflowActionsActionResponseBody]

polarion_rest_api_client.open_api_client.api.test_runs.get_workflow_actions_for_test_run.sync_detailed(project_id: str, test_run_id: str, *, client: ~polarion_rest_api_client.open_api_client.client.AuthenticatedClient | ~polarion_rest_api_client.open_api_client.client.Client, pagesize: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: ~polarion_rest_api_client.open_api_client.types.Unset | int = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: ~polarion_rest_api_client.open_api_client.types.Unset | str = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | WorkflowActionsActionResponseBody]

Returns a list of Workflow Actions.

Args:

project_id (str): test_run_id (str): pagesize (Union[Unset, int]): pagenumber (Union[Unset, int]): revision (Union[Unset, str]):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, WorkflowActionsActionResponseBody]]

polarion_rest_api_client.open_api_client.api.test_runs.import_excel_test_results module

async polarion_rest_api_client.open_api_client.api.test_runs.import_excel_test_results.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: PostImportActionRequestBody) Errors | JobsSinglePostResponse | None

Imports Excel test results.

Args:

project_id (str): test_run_id (str): body (PostImportActionRequestBody):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.import_excel_test_results.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: PostImportActionRequestBody) Response[Errors | JobsSinglePostResponse]

Imports Excel test results.

Args:

project_id (str): test_run_id (str): body (PostImportActionRequestBody):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.import_excel_test_results.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: PostImportActionRequestBody) Errors | JobsSinglePostResponse | None

Imports Excel test results.

Args:

project_id (str): test_run_id (str): body (PostImportActionRequestBody):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.import_excel_test_results.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: PostImportActionRequestBody) Response[Errors | JobsSinglePostResponse]

Imports Excel test results.

Args:

project_id (str): test_run_id (str): body (PostImportActionRequestBody):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.import_x_unit_test_results module

async polarion_rest_api_client.open_api_client.api.test_runs.import_x_unit_test_results.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: File) Errors | JobsSinglePostResponse | None

Imports XUnit test results.

Args:

project_id (str): test_run_id (str): body (File):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.import_x_unit_test_results.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: File) Response[Errors | JobsSinglePostResponse]

Imports XUnit test results.

Args:

project_id (str): test_run_id (str): body (File):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.import_x_unit_test_results.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: File) Errors | JobsSinglePostResponse | None

Imports XUnit test results.

Args:

project_id (str): test_run_id (str): body (File):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, JobsSinglePostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.import_x_unit_test_results.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: File) Response[Errors | JobsSinglePostResponse]

Imports XUnit test results.

Args:

project_id (str): test_run_id (str): body (File):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, JobsSinglePostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_run module

async polarion_rest_api_client.open_api_client.api.test_runs.patch_test_run.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrunsSinglePatchRequest) Any | Errors | None

Updates the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestrunsSinglePatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.patch_test_run.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrunsSinglePatchRequest) Response[Any | Errors]

Updates the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestrunsSinglePatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_run.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrunsSinglePatchRequest) Any | Errors | None

Updates the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestrunsSinglePatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_run.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrunsSinglePatchRequest) Response[Any | Errors]

Updates the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestrunsSinglePatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_runs module

async polarion_rest_api_client.open_api_client.api.test_runs.patch_test_runs.asyncio(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPatchRequest) Any | Errors | None

Updates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

async polarion_rest_api_client.open_api_client.api.test_runs.patch_test_runs.asyncio_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPatchRequest) Response[Any | Errors]

Updates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_runs.sync(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPatchRequest) Any | Errors | None

Updates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Any, Errors]

polarion_rest_api_client.open_api_client.api.test_runs.patch_test_runs.sync_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPatchRequest) Response[Any | Errors]

Updates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPatchRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Any, Errors]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_parameter_definitions module

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_parameter_definitions.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparameterDefinitionsListPostRequest) Errors | TestparameterDefinitionsListPostResponse | None

Creates a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparameterDefinitionsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsListPostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_parameter_definitions.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparameterDefinitionsListPostRequest) Response[Errors | TestparameterDefinitionsListPostResponse]

Creates a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparameterDefinitionsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsListPostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_parameter_definitions.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparameterDefinitionsListPostRequest) Errors | TestparameterDefinitionsListPostResponse | None

Creates a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparameterDefinitionsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparameterDefinitionsListPostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_parameter_definitions.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparameterDefinitionsListPostRequest) Response[Errors | TestparameterDefinitionsListPostResponse]

Creates a list of Test Parameter Definitions for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparameterDefinitionsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparameterDefinitionsListPostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_test_parameters module

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_test_parameters.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Errors | TestparametersListPostResponse | None

Creates a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersListPostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_test_parameters.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Response[Errors | TestparametersListPostResponse]

Creates a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersListPostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_test_parameters.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Errors | TestparametersListPostResponse | None

Creates a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestparametersListPostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_run_test_parameters.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Response[Errors | TestparametersListPostResponse]

Creates a list of Test Parameters for the specified Test Run.

Args:

project_id (str): test_run_id (str): body (TestparametersListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestparametersListPostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_runs module

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_runs.asyncio(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPostRequest) Errors | TestrunsListPostResponse | None

Creates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsListPostResponse]

async polarion_rest_api_client.open_api_client.api.test_runs.post_test_runs.asyncio_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPostRequest) Response[Errors | TestrunsListPostResponse]

Creates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsListPostResponse]]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_runs.sync(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPostRequest) Errors | TestrunsListPostResponse | None

Creates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Union[Errors, TestrunsListPostResponse]

polarion_rest_api_client.open_api_client.api.test_runs.post_test_runs.sync_detailed(project_id: str, *, client: AuthenticatedClient | Client, body: TestrunsListPostRequest) Response[Errors | TestrunsListPostResponse]

Creates a list of Test Runs.

Args:

project_id (str): body (TestrunsListPostRequest):

Raises:

errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:

Response[Union[Errors, TestrunsListPostResponse]]