polarion_rest_api_client.open_api_client.api.test_records package

Contains endpoint functions for accessing the API

Submodules

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record module

async polarion_rest_api_client.open_api_client.api.test_records.delete_test_record.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.test_records.delete_test_record.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Any | Errors

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record_test_parameter module

async polarion_rest_api_client.open_api_client.api.test_records.delete_test_record_test_parameter.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.test_records.delete_test_record_test_parameter.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record_test_parameter.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Any | Errors

polarion_rest_api_client.open_api_client.api.test_records.delete_test_record_test_parameter.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.get_fields_metadata_for_test_record module

async polarion_rest_api_client.open_api_client.api.test_records.get_fields_metadata_for_test_record.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Errors | FieldsMetadataActionResponseBody | None

Returns fields for the specified resource.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Errors | FieldsMetadataActionResponseBody

async polarion_rest_api_client.open_api_client.api.test_records.get_fields_metadata_for_test_record.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Response[Errors | FieldsMetadataActionResponseBody]

Returns fields for the specified resource.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Errors | FieldsMetadataActionResponseBody]

polarion_rest_api_client.open_api_client.api.test_records.get_fields_metadata_for_test_record.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Errors | FieldsMetadataActionResponseBody | None

Returns fields for the specified resource.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Errors | FieldsMetadataActionResponseBody

polarion_rest_api_client.open_api_client.api.test_records.get_fields_metadata_for_test_record.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client) Response[Errors | FieldsMetadataActionResponseBody]

Returns fields for the specified resource.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Errors | FieldsMetadataActionResponseBody]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record module

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrecordsSingleGetResponse | None

Returns the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestrecordsSingleGetResponse

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrecordsSingleGetResponse]

Returns the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestrecordsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrecordsSingleGetResponse | None

Returns the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestrecordsSingleGetResponse

polarion_rest_api_client.open_api_client.api.test_records.get_test_record.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrecordsSingleGetResponse]

Returns the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestrecordsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameter module

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameter.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersSingleGetResponse | None

Returns the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): test_param_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestparametersSingleGetResponse

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameter.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersSingleGetResponse]

Returns the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): test_param_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestparametersSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameter.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersSingleGetResponse | None

Returns the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): test_param_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestparametersSingleGetResponse

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameter.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, test_param_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersSingleGetResponse]

Returns the specified Test Parameter for the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): test_param_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestparametersSingleGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameters module

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameters.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersListGetResponse | None

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestparametersListGetResponse

async polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameters.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersListGetResponse]

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestparametersListGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameters.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestparametersListGetResponse | None

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | TestparametersListGetResponse

polarion_rest_api_client.open_api_client.api.test_records.get_test_record_test_parameters.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestparametersListGetResponse]

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | TestparametersListGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_records module

async polarion_rest_api_client.open_api_client.api.test_records.get_test_records.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_project_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_result_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrecordsListGetResponse | None

Returns a list of Test Records.

Args:

project_id (str): test_run_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset): test_case_project_id (str | Unset): test_case_id (str | Unset): test_result_id (str | Unset):

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:

Errors | TestrecordsListGetResponse

async polarion_rest_api_client.open_api_client.api.test_records.get_test_records.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_project_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_result_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrecordsListGetResponse]

Returns a list of Test Records.

Args:

project_id (str): test_run_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset): test_case_project_id (str | Unset): test_case_id (str | Unset): test_result_id (str | Unset):

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[Errors | TestrecordsListGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.get_test_records.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_project_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_result_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | TestrecordsListGetResponse | None

Returns a list of Test Records.

Args:

project_id (str): test_run_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset): test_case_project_id (str | Unset): test_case_id (str | Unset): test_result_id (str | Unset):

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:

Errors | TestrecordsListGetResponse

polarion_rest_api_client.open_api_client.api.test_records.get_test_records.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_project_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_case_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, test_result_id: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | TestrecordsListGetResponse]

Returns a list of Test Records.

Args:

project_id (str): test_run_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset): test_case_project_id (str | Unset): test_case_id (str | Unset): test_result_id (str | Unset):

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[Errors | TestrecordsListGetResponse]

polarion_rest_api_client.open_api_client.api.test_records.patch_test_record module

async polarion_rest_api_client.open_api_client.api.test_records.patch_test_record.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestrecordsSinglePatchRequest) Any | Errors | None

Updates the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): body (TestrecordsSinglePatchRequest):

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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.test_records.patch_test_record.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestrecordsSinglePatchRequest) Response[Any | Errors]

Updates the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): body (TestrecordsSinglePatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.patch_test_record.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestrecordsSinglePatchRequest) Any | Errors | None

Updates the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): body (TestrecordsSinglePatchRequest):

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:

Any | Errors

polarion_rest_api_client.open_api_client.api.test_records.patch_test_record.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestrecordsSinglePatchRequest) Response[Any | Errors]

Updates the specified Test Record.

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (str): body (TestrecordsSinglePatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.patch_test_records module

async polarion_rest_api_client.open_api_client.api.test_records.patch_test_records.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPatchRequest) Any | Errors | None

Updates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPatchRequest):

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:

Any | Errors

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

Updates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.patch_test_records.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPatchRequest) Any | Errors | None

Updates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPatchRequest):

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:

Any | Errors

polarion_rest_api_client.open_api_client.api.test_records.patch_test_records.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPatchRequest) Response[Any | Errors]

Updates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.test_records.post_test_record_test_parameters module

async polarion_rest_api_client.open_api_client.api.test_records.post_test_record_test_parameters.asyncio(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Errors | TestparametersListPostResponse | None

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Errors | TestparametersListPostResponse

async polarion_rest_api_client.open_api_client.api.test_records.post_test_record_test_parameters.asyncio_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Response[Errors | TestparametersListPostResponse]

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Errors | TestparametersListPostResponse]

polarion_rest_api_client.open_api_client.api.test_records.post_test_record_test_parameters.sync(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Errors | TestparametersListPostResponse | None

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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:

Errors | TestparametersListPostResponse

polarion_rest_api_client.open_api_client.api.test_records.post_test_record_test_parameters.sync_detailed(project_id: str, test_run_id: str, test_case_project_id: str, test_case_id: str, iteration: str, *, client: AuthenticatedClient | Client, body: TestparametersListPostRequest) Response[Errors | TestparametersListPostResponse]

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

Args:

project_id (str): test_run_id (str): test_case_project_id (str): test_case_id (str): iteration (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[Errors | TestparametersListPostResponse]

polarion_rest_api_client.open_api_client.api.test_records.post_test_records module

async polarion_rest_api_client.open_api_client.api.test_records.post_test_records.asyncio(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPostRequest) Errors | TestrecordsListPostResponse | None

Creates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPostRequest):

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:

Errors | TestrecordsListPostResponse

async polarion_rest_api_client.open_api_client.api.test_records.post_test_records.asyncio_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPostRequest) Response[Errors | TestrecordsListPostResponse]

Creates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPostRequest):

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[Errors | TestrecordsListPostResponse]

polarion_rest_api_client.open_api_client.api.test_records.post_test_records.sync(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPostRequest) Errors | TestrecordsListPostResponse | None

Creates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPostRequest):

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:

Errors | TestrecordsListPostResponse

polarion_rest_api_client.open_api_client.api.test_records.post_test_records.sync_detailed(project_id: str, test_run_id: str, *, client: AuthenticatedClient | Client, body: TestrecordsListPostRequest) Response[Errors | TestrecordsListPostResponse]

Creates a list of Test Records.

Args:

project_id (str): test_run_id (str): body (TestrecordsListPostRequest):

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[Errors | TestrecordsListPostResponse]